/* ======================= CSS GLOBAL ======================= */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #d9f6f6;
    color: #06425c;
    box-sizing: border-box;
    min-height: 100vh; /* fuerza que el body ocupe toda la ventana */
    position: relative; /* necesario para el footer absoluto */
    padding-bottom: 80px; /* espacio para que el footer no tape contenido */
}

.header {
    width: 100%;
    background-color: #ffffff;
    padding: 9px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 6px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    text-transform: uppercase;
    font-weight: bold;
    color: #06425c;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-right: 30px;
}

.main-nav a:last-child {
    margin-right: 0;
}

.main-nav a.active {
    background-color: #25D366;
    color: white !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.main-nav a.active:hover {
    transform: scale(1.1) rotate(-2deg);
}

.main-nav a:not(.active):hover {
    transform: scale(1.05) rotate(-1deg);
    color: #0288a7;
}

.main-nav .logo-link img.logo {
    height: 75px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.header.scrolled .main-nav .logo-link img.logo {
    height: 60px;
}

/* ===== Estilos generales para página de eventos ===== */
body.eventos {
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px; /* espacio para footer */
  font-family: 'Arial', sans-serif;
}


/* Hero opcional vacío (para evitar imagen gigante) */
body.eventos .hero {
  display: none;
}

/* =================== MENÚ HAMBURGUESA MÓVIL =================== */
@media (max-width: 768px) {
    body.eventos .main-nav {
        display: block;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 0px;
        left: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        padding-top: 70px; /* espacio para el header */
        text-align: center;
        z-index: 998;
        max-height: 100vh;
        overflow-y: auto;
    }

    body.eventos .main-nav a {
        margin: 10px 0;
        display: none;
        font-size: 1rem;
        text-align: center;
    }

    body.eventos .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: #06425c;
        z-index: 999;
    }

    body.eventos .main-nav.open a {
        display: block;
    }
}

@media (min-width: 769px) {
    body.eventos .hamburger {
        display: none !important;
    }

    body.eventos .main-nav {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        gap: 25px;
        position: static;
        background: none;
        padding: 0;
        box-shadow: none;
    }

    body.eventos .main-nav a {
        margin: 0 15px;
        display: inline-block !important;
    }
}



/* ======================= HERO ======================= */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 100px 20px 30px;
    text-align: center;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2.2rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* ======================= ESPACIO SUPERIOR ======================= */
.index main,
.index .quienes-somos {
    padding-top: 500px;
}

.personajes-row,
.index .hero {
    padding-top: 50px;
}

.index .hero,
.index .quienes-somos,
.index .personajes-row,
.index .section-row {
    padding-top: 50px;
}

body.index main,
body.index .quienes-somos,
body.index .hero,
body.index .personajes-row,
body.index .section-row,
body.index .contact-box {
    padding-top: 40px;
}

/* ======================= MÁS ESPACIO ARRIBA EN PERSONAJES ======================= */
body.index .personajes-row {
    padding-top: 65px; /* aumenta el espacio sobre las cajas */
}

/* ======================= MÁS ESPACIO ARRIBA EN SUPERHÉROES ======================= */
body.index #superheroes .super-row {
    padding-top: 65px; /* aumentado para más espacio arriba */
}

/* MÁS ESPACIO ARRIBA EN TALLERES */
body.index #talleres-disponibles .service-row {
    padding-top: 60px; /* mismo espacio que Superhéroes */
}

/* MÁS ESPACIO ARRIBA EN PRINCESAS */
body.index #princesas .section-row {
    padding-top: 100px; /* mismo espacio que Superhéroes */
}

/* MÁS ESPACIO ARRIBA EN K-POP */
body.index #kpop .kpop-row {
    padding-top: 65px; /* mismo espacio que Superhéroes y Princesas */
}

/* MÁS ESPACIO ARRIBA EN EVENTOS */
body.index #eventos-disponibles .service-row {
    padding-top: 30px; /* mismo espacio que Superhéroes, Princesas y K-Pop */
}






/* ======================= SERVICIOS ======================= */
body.index main {
    padding-bottom: 40px;
}

.servicios .service-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.servicios .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    padding: 20px;
    max-width: 480px;
    text-align: center;
    transition: transform 0.3s ease;
}

.servicios .service:hover {
    transform: translateY(-5px);
}

.servicios .service .service-img img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

.servicios .service .service-text h3 {
    margin-top: 0;
    color: #1abc9c;
    font-size: 1.3rem;
}

.servicios .service .service-text p {
    margin-bottom: 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ======================= SUPERHÉROES, PRINCESAS Y KPOP ======================= */
#superheroes .super-row,
#princesas .section-row,
#kpop .kpop-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: fit-content;
    margin: 0 auto 60px;
}

#superheroes .service-left,
#princesas .section-left,
#kpop .service-left {
    flex: 0 0 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

#superheroes .service-left:hover,
#princesas .section-left:hover,
#kpop .service-left:hover {
    transform: translateY(-5px);
}

#superheroes .service-left img,
#princesas .section-left img,
#kpop .service-left img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

#superheroes .service-left h3,
#princesas .section-left h3,
#kpop .service-left h3 {
    color: #1abc9c;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

#superheroes .service-left p,
#princesas .section-left p,
#kpop .service-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

#superheroes .service-right,
#princesas .section-right,
#kpop .service-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* contenido pegado arriba */
    gap: 12px;                   /* espacio entre texto y botones */
    padding: 40px 25px 30px 25px; /* arriba | derecha | abajo | izquierda */
    position: relative;
}

/* Efecto cómic sutil */
#superheroes .service-right::before,
#princesas .service-right::before,
#kpop .service-right::before

{
    content: "";
    position: absolute;
    width: 100%;
    max-width: 520px;            /* ancho del cuadrado un poco más grande */
    min-height: 300px;           /* alto mínimo mayor para que quede grande */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #d0f0ff 0%, #a0e0ff 100%);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    padding: 30px 25px 45px 25px;  /* espacio interno del cuadrado */
    box-sizing: border-box;

}
/* Destellos animados */
#superheroes .service-right::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 20%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: sparkle 6s linear infinite;
    mix-blend-mode: screen;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}
* Texto principal */
#superheroes .service-right .emphasis,
#princesas .service-right .emphasis,
#kpop .service-right .emphasis

{
     font-size: 1.3rem;           /* un tamaño más pequeño */
    font-weight: bold;
    color: #06425c;
    text-align: center;
}

/* Palabra destacada */
#superheroes .service-right .emphasis  {
  font-family: 'Comic Sans MS', cursive;
    font-size: 1.6rem;
    font-weight: 900;
    color: #06425c;
    text-align: center;
    line-height: 1.3;
}

/* Palabra destacada */
#superheroes .service-right .emphasis .highlight {
    font-size: 2.3rem; /* más grande que el resto */
    font-weight: 900;
    color: #1abc9c;
    background: none; /* sin fondo */
    display: inline-block;
}

/* ======================= PRINCESAS: CAJA DERECHA ======================= */
#princesas .section-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* contenido pegado arriba */
    gap: 12px;                   /* espacio entre texto y botones */
    padding: 40px 25px 30px 25px; /* arriba | derecha | abajo | izquierda */
    position: relative;
}

/* Fondo estilo cómic sutil */
#princesas .section-right::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 520px;
    min-height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #d0f0ff 0%, #a0e0ff 100%);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    padding: 30px 25px 45px 25px;
    box-sizing: border-box;
}

/* Destellos animados */
#princesas .section-right::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 20%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: sparkle 6s linear infinite;
    mix-blend-mode: screen;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* Texto principal */
#princesas .section-right .emphasis {
     font-family: 'Comic Sans MS', cursive;
    font-size: 1.6rem;      /* mismo tamaño que Superhéroes */
    font-weight: 900;
    color: #06425c;
    text-align: center;
    line-height: 1.3;
}

#princesas .section-right .emphasis .highlight {
    font-size: 2.3rem;
    font-weight: 900;
    color: #1abc9c;
    display: inline-block;
    background: none;
}

/* Botones estilo Superhéroes */
#princesas .app-buttons {
    margin-top: 0px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#princesas .button-link {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    width: auto;
    text-decoration: none;
    color: white;
}

#princesas .button-link.whatsapp {
    background-color: #25D366;
}

#princesas .button-link.instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

#princesas .button-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 1024px)
 /* Ajusta todo el contenido principal */
 {
   body.index main,
  #princesas .section-row,
  .section-left,
  .section-right {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    max-width: 100%;
  }

  /* Contenedor de sección */
  #princesas .section-row {
    display: flex;
    flex-direction: column; /* imagen arriba, texto abajo */
    align-items: center;
    gap: 20px;
  }

  #princesas .section-left,
  #princesas .section-right {
    width: 100%;
    max-width: 480px; /* opcional: limitar ancho */
    margin: 0 auto;
  }

  /* Caja de reserva */
  #princesas .section-right {
    padding: 20px; /* espacio interno */
    box-sizing: border-box;
    width: 100%;
    max-width: 480px;
    margin-top: 30px; /* separación de la caja de arriba */
  }

  /* Texto y botones dentro de la caja */
  #princesas .section-right .emphasis {
    font-family: 'Comic Sans MS', cursive; /* misma fuente que Superhéroes */
    font-size: 1.2rem;
  }

  #princesas .section-right .highlight {
    font-size: 1.5rem;
    font-family: 'Comic Sans MS', cursive;
  }

  #princesas .button-link {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.1rem;
    padding: 14px 26px;
  }

  #princesas .app-buttons {
    gap: 8px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

}


    #princesas .section-right {
        max-width: 90%;
    }
}
#princesas .section-right .highlight {
    font-family: 'Comic Sans MS';
}

@media (max-width: 768px) {
    #princesas .section-right::before {
        width: 95%;
        min-height: 250px;
        padding: 20px 15px 35px 15px;
    }

    #princesas .section-right .emphasis {
        font-size: 1.2rem;
      font-family: 'Comic Sans MS';
    }

  #princesas .section-right .emphasis .highlight {
        font-size: 1.6rem;
        font-family: 'Comic Sans MS'; /* asegura que la palabra princesa use la misma fuente */
    }
}
  
    #princesas .button-link {
        padding: 14px 26px;
        font-size: 1.1rem;
      font-family: 'Comic Sans MS';
    }

    #princesas .app-buttons {
        gap: 8px;
    }
}


 

/* ======================= K-POP: CAJA DERECHA ======================= */

/* Contenedor derecho con efecto cómic y fondo */
#kpop .service-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* contenido pegado arriba */
    gap: 12px;                   /* espacio entre texto y botones */
    padding: 40px 25px 30px 25px; /* arriba | derecha | abajo | izquierda */
    position: relative;
}

/* Fondo cómic detrás de la caja */
#kpop .service-right::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 520px;
    min-height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #d0f0ff 0%, #a0e0ff 100%);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    padding: 30px 25px 45px 25px;
    box-sizing: border-box;
}

/* Destellos animados como Superhéroes */
#kpop .service-right::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 20%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: sparkle 6s linear infinite;
    mix-blend-mode: screen;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* Texto principal igual que Superhéroes */
#kpop .service-right .emphasis {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.6rem;
    font-weight: 900;
    color: #06425c;
    text-align: center;
    line-height: 1.3;
}

/* Palabra destacada opcional */
#kpop .service-right .emphasis .highlight {
    font-size: 2.3rem;
    font-weight: 900;
    color: #1abc9c;
    display: inline-block;
    background: none;
}

/* Botones estilo Superhéroes */
#kpop .app-buttons {
    margin-top: 0px;
    gap: 12px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#kpop .button-link {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    width: auto;
}

#kpop .button-link.whatsapp {
    background-color: #25D366;
}

#kpop .button-link.instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

#kpop .button-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* Pulsación sutil botones */
@keyframes pulseBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 1024px) {
    #kpop .kpop-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #kpop .service-left,
    #kpop .service-right {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    #kpop .service-left img {
        max-height: 250px;
    }

    #kpop .service-left,
    #kpop .service-right {
        padding: 15px;
    }

    #kpop .service-right::before {
        width: 90%;
        min-height: 200px;
        padding: 20px 15px 35px 15px;
    }

    #kpop .service-right .emphasis {
        font-size: 1.2rem;
     font-family: 'Comic Sans MS';
}
    }

    #kpop .service-right .emphasis .highlight {
        font-size: 1.5rem;
      font-family: 'Comic Sans MS';
    }

    #kpop .button-link {
        padding: 14px 26px;
        font-size: 1.1rem;
      font-family: 'Comic Sans MS';
    }

    #kpop .app-buttons {
        gap: 8px;
    }
}



/* ======================= RESPONSIVE ======================= */
@media (max-width: 1024px) {
    #superheroes .super-row,
    #princesas .section-row,
    #kpop .kpop-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #superheroes .service-left,
    #princesas .section-left,
    #kpop .service-left,
    #superheroes .service-right,
    #princesas .section-right,
    #kpop .service-right {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    #superheroes .service-left img,
    #princesas .section-left img,
    #kpop .service-left img {
        max-height: 250px;
    }

    #superheroes .service-left,
    #princesas .section-left,
    #kpop .service-left,
    #superheroes .service-right,
    #princesas .section-right,
    #kpop .service-right {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    #superheroes .service-right::before {
        width: 320px;
        height: 320px;
    }
}

/* ======================= BOTONES DE APPS ======================= */
.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button-link {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-link.whatsapp {
    background-color: #25D366;
}

.button-link.instagram {
    background-color: #E1306C;
}

.button-link:hover {
    transform: scale(1.05);
}

.icon-side {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icon-side:hover {
    transform: scale(1.1);
}

/* ======================= BOTONES SUPERHÉROES MEJORADOS ======================= */

#superheroes .app-buttons {
     margin-top: 0px;       /* pegado al texto */
    gap: 12px;
    align-items: center;
}

#superheroes .button-link {
    padding: 12px 24px;          /* más alto y ancho para ser más fácil de pulsar */
    border-radius: 50px;
    font-size: 1.05rem;          /* un poco más grande que antes */
    font-weight: 700;
    display: inline-flex;        /* ancho según contenido */
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    width: auto;
}

#superheroes .button-link.whatsapp {
    background-color: #25D366;
}

#superheroes .button-link.instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

#superheroes .button-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* Pulsación sutil botones */
@keyframes pulseBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* ======================= FOOTER ======================= */
.footer-bar {
    position: absolute; /* lo fija en la parte inferior de la ventana */
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 12px 0;
    background-color: #e0f2f5;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    z-index: 999;
}

footer.footer {
    margin: 0;
    padding: 12px 20px;
    border-radius: 12px;
    background-color: #f5fbfd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #06425c;
    font-family: 'Comic Sans MS', cursive;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 15px; /* separación entre enlaces */
}

.footer-links a {
    color: #06425c;
    text-decoration: none;
    font-weight: 400;
    margin: 0 10px;
}

main,
.servicios,
.hero {
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-links a:hover {
    color: #1abc9c;
}

/* ======================= TÍTULO PROMOCIONAL ======================= */
.promo-title {
    text-align: center;
    padding: 30px 20px 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-title h1 {
    font-size: 2.5rem;
    color: #1abc9c;
    font-family: 'Comic Sans MS', cursive;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-title p {
    font-size: 1.2rem;
    color: #06425c;
    line-height: 1.5;
}

/* ======================= INDEX: QUIÉNES SOMOS ======================= */
body.index .quienes-somos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px; /* separación foto – caja */
    padding-top: 60px; /* distancia desde header */
    padding-bottom: 60px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

body.index .quienes-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

body.index .quienes-img {
    flex: 0 0 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.index .quienes-img img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    object-fit: cover;
}

body.index .quienes-text {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    width: auto;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* CENTRA EL TEXTO */
}

body.index .quienes-text h2 {
    margin-top: 0;
    color: #1abc9c;
}

body.index .quienes-text p {
    color: #333;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ======================= BANNER DE RESERVA ======================= */
body.index .hero-banner {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -60px; /* menos negativo para que no choque */
    margin-bottom: 40px;
}

body.index .hero-banner .banner-box {
    width: 500px; /* tamaño fijo más consistente */
    max-width: 90%;
    position: relative;
    display: flex;
    justify-content: center;
}

/* ======================= ZOOM PULSANTE BANNER DE RESERVA ======================= */
body.index .hero-banner .banner-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    animation: zoomPulse 4s ease-in-out infinite; /* animación continua */
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1); /* tamaño original */
    }
    50% {
        transform: scale(1.05); /* crece un 5% en el medio del ciclo */
    }
}

/* ======================= BANNER WHATSAPP ======================= */
body.index .hero-banner .banner-box {
    position: relative;
}

.banner-whatsapp {
    position: absolute;
    bottom: -12px; /* un poco más abajo del banner */
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.banner-whatsapp:hover {
    transform: translateX(-50%) scale(1.08);
}

/* ======================= REDES SOCIALES ======================= */
.redes-sociales {
    text-align: center;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.redes-sociales p {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.5rem; /* un poco más grande */
    color: #ff6b6b; /* color llamativo */
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 25px;
    animation: pulse 2s infinite; /* animación sutil */
}

.redes-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.redes-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.redes-buttons .instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.redes-buttons .tiktok {
    background-color: #000;
}

.redes-buttons a:hover {
    transform: scale(1.08);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        color: #ff6b6b;
    }
    50% {
        transform: scale(1.05);
        color: #ff4757;
    }
    100% {
        transform: scale(1);
        color: #ff6b6b;
    }
}

/* ======================= FLEX INTERNOS ======================= */
body.index .quienes-container > .quienes-img,
body.index .quienes-container > .quienes-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 768px) {
    body.index .quienes-somos {
        flex-direction: column;
        padding-top: 150px;
    }

    body.index .quienes-img,
    body.index .quienes-text {
        flex: 0 0 90%;
    }

    body.index .quienes-container {
        flex-direction: column;
        gap: 20px;
    }

    body.index .hero-banner .banner-box {
        width: 60%; /* en móvil aumenta tamaño para verse bien */
    }
}

/* ======================= EVENTOS - IMAGEN PRÓXIMAMENTE ======================= */
#proximos-eventos .proximamente-container {
    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center;
    margin: 40px 0;          /* margen arriba y abajo */
}

#proximos-eventos .proximamente-box {
    max-width: 400px;        /* limita el ancho de la caja */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#proximos-eventos .proximamente-box img.proximamente-img {
    width: 100%;             /* se ajusta al ancho máximo de la caja */
    height: auto;            /* mantiene proporción */
    display: block;
    border-radius: 12px;     /* opcional, bordes redondeados */
}

/* ======================= EVENTOS - TÍTULO PRÓXIMOS EVENTOS ======================= */
#proximos-eventos .servicios-title {
    text-align: center;         /* centra el texto */
    font-size: 2rem;            /* tamaño más grande */
    color: #1abc9c;             /* color destacado, igual que otros títulos */
    font-family: 'Comic Sans MS', cursive; /* mismo estilo que otros títulos */
    margin-bottom: 30px;        /* espacio debajo del título */
}

@media (max-width: 768px) {
    #proximos-eventos .servicios-title {
        font-family: 'Comic Sans MS';
        font-size: 1.5rem; /* ajusta tamaño si quieres */
    }
}


/* Secciones de Aviso Legal y Privacidad centradas */
.legal-section.centered {
 max-width: 900px;       /* limita el ancho para mejor lectura */
  margin: 0 auto;          /* centra horizontalmente */
  padding: 80px 15px 20px 15px; /* espacio arriba, abajo y laterales */
  text-align: center;      /* centra todo el texto dentro */
  line-height: 1.6;        /* hace el texto más legible */
  font-family: Arial, sans-serif;
}

.legal-section.centered h1,
.legal-section.centered h2,
.legal-section.centered h3 {
  color: #1abc9c;
  margin-bottom: 15px;
  text-align: center;
}

.legal-section.centered p {
  margin-bottom: 16px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .legal-section.centered {
    padding: 100px 15px 30px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
    .promo-title h1 {
        font-size: 2.5rem;         /* mismo tamaño que en escritorio */
        font-family: 'Comic Sans MS';  /* misma fuente */
        line-height: 1.2;
    }
}




/* ======================= RESPONSIVO ======================= */

@media (max-width: 768px) {
   

    #superheroes .service-right .emphasis {
        font-size: 1.2rem;  
      font-family: 'Comic Sans MS';/* texto más pequeño en móvil */
    }

    #superheroes .service-right .emphasis .highlight {
        font-size: 1.5rem;
      font-family: 'Comic Sans MS';
    }

    #superheroes .button-link {
        padding: 14px 26px;        /* botones ligeramente más grandes en móvil */
        font-size: 1.1rem;
      font-family: 'Comic Sans MS';
    }
  #superheroes .app-buttons {
        margin-top: 0px;  /* también pegados al texto en móvil */
        gap: 8px;
}
  
 #superheroes  .service-right {
    width: auto;          /* se ajusta al contenido */
        max-width: 100%;       /* no demasiado ancho */
        padding: 80px 30px;       /* un poco de espacio interno */
        margin-top: 50px;     /* separarlo de la caja de arriba */
        align-self: center;   /* centrado dentro del flex contenedor */
        box-sizing: border-box;
  }
  
   #superheroes .service-right::before {
        width: 90%;
    min-height: 80px;
    padding: 8px 12px;
    }
  

  /* Que el contenedor no se salga de la pantalla */
  #superheroes .super-row {
    display: flex;
    flex-direction: column; /* columnas en móvil */
    align-items: center;
    padding: 0 15px;        /* espacio lateral seguro */
    box-sizing: border-box;  /* que el padding no aumente ancho */
    width: 100%;             /* máximo ancho completo */
  }

  /* Ajustar cajas internas */
  #superheroes .service-left,
  #superheroes .service-right {
    width: 100%;          /* que no se salgan de la pantalla */
    max-width: 480px;     /* opcional: limitar ancho máximo */
    margin: 0 auto;       /* centrar */
    box-sizing: border-box;
  }

  /* Ajuste de imágenes si hace falta */
  #superheroes .service-left img {
    width: 100%;
    height: auto;
  }
}

  
 /* ======================= MENÚ HAMBURGUESA SOLO MÓVIL ======================= */
@media (max-width: 768px) {
  /* Ocultar los enlaces del nav inicialmente */
  .main-nav {
   display: block;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0px;
    left: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
    text-align: center;
    z-index: 998;
     max-height: 100vh; /* altura máxima visible */
    overflow-y: auto;               /* scroll si hay demasiados enlaces */
     padding-top: 70px;
  }

  /* Enlaces verticales y más grandes */
  .main-nav a {
    margin: 10px 0;
    display: none;
    font-size: 1rem;
    text-align: center;
  }

  /* Botón hamburguesa */
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #06425c;
    z-index: 999;
  }

  /* Cuando el menú está abierto */
  .main-nav.open {
     display: block;       /* antes estaban ocultos */
    margin: 10px 0;       /* espaciado vertical */
    font-size: 1rem;
     max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .main-nav.open a {
    display: block; /* se muestran al abrir menú */
}
  

/* ESCRITORIO: aseguramos que el botón hamburguesa NO se vea */
@media (min-width: 769px) {
  .hamburger {
    display: none !important; /* desaparece en escritorio */
  }

  .main-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .main-nav a {
    margin: 0 15px;
    display: inline-block !important;
  }
}
  
  @media (max-width: 768px) {

  /* Ajusta todo el contenido principal */
  body.index main,
  .quienes-container,
  .banner-box,
  .promo-title {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    max-width: 100%;
  }

  /* Contenedor de quiénes somos para que no toque los bordes */
  .quienes-container {
    flex-direction: column; /* en móvil poner imagen arriba y texto abajo */
    align-items: center;
  }

  .quienes-text,
  .quienes-img {
    width: 100%;
    max-width: 480px; /* opcional: ancho máximo */
    margin: 0 auto;
  }

  /* Banner de reserva */
  .hero-banner .banner-box {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 10px; /* un poco de espacio interno */
    box-sizing: border-box;
  }

  .promo-title h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

