/* RESET BÁSICO */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #26c6da, #3f51b5);
    color: #333;
    min-height: 100vh;
  }
  
  main {
    padding: 2rem 1rem;
  }
  
  .main-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  
  /* HERO SECTION */
  .hero-section {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-section h1,
  .hero-section h2 {
    color: #004aad;
    margin-bottom: 1rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
  }
  
  .hero-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-section li {
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
  }
  
  .hero-section li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1db954;
    font-weight: bold;
  }
  
  /* IMAGEN DESTACADA */
  .picture-escape__figure {
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
  }
  
  .picture-escape__figure img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .picture-escape__figure figcaption {
    font-size: 1rem;
    color: #555;
    margin-top: 0.8rem;
  }
  
  /* CAJA DE TESTIMONIO */
  .respuesta-box {
    background-color: #f1f8e9;
    padding: 1.5rem;
    border-left: 6px solid #7cb342;
    border-radius: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 2rem;
    color: #333;
  }
  
  /* SECCIÓN CTA */
  #reserva-experiencia-familiar {
    background-color: #ffffff;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .cta-button {
    background-color: #ffffff;
    color: #1db954;
    padding: 14px 30px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: 1rem;
  }
  
  .cta-button:hover {
    background-color: #e6ffe0;
    color: #128c41;
    transform: scale(1.05);
  }
  
  /* FAQ */
  .faq-section {
    background-color: #ffffff;
    margin: 3rem auto;
    max-width: 800px;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }
  
  .faq-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #004aad;
    text-align: left;
  }
  
  .faq-content details {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .faq-content summary {
    font-weight: 600;
    font-size: 1.05rem;
    color: #000;
    outline: none;
  }
  
  .faq-content details[open] summary {
    color: #004aad;
  }
  
  .faq-content p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }
  
  /* MARCADO DESTACADO */
  mark {
    background-color: #fff9c4;
    padding: 0 4px;
    border-radius: 4px;
  }
  
  /* WHATSAPP FLOAT */
  .whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 20px;
    z-index: 1000;
  }
  
  .whatsapp-float img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    animation: heartbeat 1.5s infinite ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  @keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  /* RESPONSIVE */
  @media screen and (max-width: 768px) {
    .main-wrapper {
      padding: 1rem;
      margin: 1rem;
    }
  
    .hero-section h1 {
      font-size: 1.6rem;
    }
  
    .hero-section p,
    .faq-content p {
      font-size: 1rem;
    }
  }
/* COMPARATIVA EXPERIENCIAS */
.grid-comparativa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .card-comparativa {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
  
  .card-comparativa h3 {
    color: #004aad;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
  }
  
  .card-comparativa ul {
    list-style: none;
    padding-left: 0;
  }
  
  .card-comparativa li {
    margin-bottom: 0.8rem;
    padding-left: 1.4rem;
    position: relative;
  }
  
  .card-comparativa li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1db954;
    font-weight: bold;
  }
  
  @media screen and (max-width: 768px) {
    .grid-comparativa {
      grid-template-columns: 1fr;
    }
  }
  
  /* INFORMACIÓN DE CONTACTO */
  .informacion-empresa-seccion {
    background-color: #ffffff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .informacion-empresa header h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #004aad;
    text-align: center;
  }
  
  .info-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .info-contact li {
    margin-bottom: 1rem;
  }
  
  .info-contact a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    display: inline-block;
  }
  
  .info-contact a:hover {
    color: #ff5722;
  }
 
  footer {
    background-color: #003366;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .copy-right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-box {
    background-color: #002244;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    max-width: 800px;
    width: 100%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .footer-box a {
    color: #ffcc80;
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
    display: inline-block;
  }
  
  .footer-box a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  
  .footer-inicio-boton {
    text-align: center;
    margin-top: 1rem;
  }
  
  .btn-inicio-footer {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    background-color: #ffb300;
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .btn-inicio-footer:hover {
    background-color: #ffe082;
    transform: scale(1.05);
  }

  
  /* === RESEÑAS DE CLIENTES === */
.customer-reviews {
    background-color: #ffffff;
    margin: 3rem auto;
    max-width: 800px;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }
  
  .customer-reviews h2 {
    font-size: 1.5rem;
    color: #004aad;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .review-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
  }
  
  .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .review-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  .review-author h5 {
    font-size: 1.1rem;
    color: #1a237e;
    margin: 0;
  }
  
  .review-date {
    font-size: 0.9rem;
    color: #757575;
    margin-bottom: 1rem;
  }
  
  .review-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .review-rating {
    font-size: 1rem;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 1rem;
  }
  
  .review img[itemprop="image"] {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .review-link {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a0dab;
  }
  
  .review-link:hover {
    text-decoration: underline;
  }
  
  /* Google colors */
  .g-blue { color: #4285F4; font-weight: bold; }
  .g-red { color: #EA4335; font-weight: bold; }
  .g-yellow { color: #FBBC05; font-weight: bold; }
  .g-green { color: #34A853; font-weight: bold; }
  
  @media screen and (max-width: 768px) {
    .review-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .review-author img {
      margin: 0 auto 0.5rem auto;
    }
  }

  #experiencia-ninos {
    margin-bottom: 3rem;
  }
  
  /* Botón más contrastante y separado */
  #experiencia-ninos button[popovertarget] {
    margin-top: 1rem;
    background-color: #ffd54f;
    color: #222;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  #experiencia-ninos button[popovertarget]:hover {
    background-color: #ffca28;
    transform: translateY(-2px);
  }
 /* Sección completa */
section[itemtype="https://schema.org/HowTo"] {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 3rem auto;
    max-width: 800px;
  }
  
  /* Título principal */
  section[itemtype="https://schema.org/HowTo"] h2 {
    font-size: 1.5rem;
    color: #004aad;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  
  /* Lista ordenada */
  section[itemtype="https://schema.org/HowTo"] ol {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
    margin-top: 1.5rem;
  }
  
  /* Cada paso */
  section[itemtype="https://schema.org/HowTo"] li[itemtype="https://schema.org/HowToStep"] {
    background-color: #f9f9f9;
    border-left: 6px solid #26c6da;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    counter-increment: step-counter;
    box-shadow: 0 3px 6px rgba(0,0,0,0.04);
  }
  
  /* Número del paso */
  section[itemtype="https://schema.org/HowTo"] li[itemtype="https://schema.org/HowToStep"]::before {
    content: counter(step-counter);
    position: absolute;
    top: -14px;
    left: -14px;
    background-color: #004aad;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  /* Nombre del paso */
  section[itemtype="https://schema.org/HowTo"] div[itemprop="name"] {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a237e;
    margin-bottom: 0.3rem;
  }
  
  /* Texto explicativo */
  section[itemtype="https://schema.org/HowTo"] div[itemprop="text"] {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
  }

  #video-familia {
    text-align: center;
    margin: 3rem auto;
    padding: 1rem;
  }
  
  #video-familia h2 {
    font-size: 1.5rem;
    color: #004aad;
    margin-bottom: 1rem;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    overflow: hidden;
  }
  
  .video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
  }
  