@font-face {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 300 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/fredoka/v17/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWs89XyHw.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #F7EAC0;
    font-family: 'Fredoka', Arial, sans-serif;
    color: #374151;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================================
   🖥️ PANTALLA COMPLETA (FULL HEIGHT DASHBOARD) - SOLO PC
   ========================================================== */
@media (min-width: 992px) {
    /* Bloquear scroll de página pero SIN afectar position:fixed — usar clip, no hidden */
    body.page-activities {
        height: 100vh !important;
        overflow: clip !important; /* clip no crea scroll container, los fixed se ven igual */
    }

    body.page-activities .main-container {
        height: 100vh !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }

    body.page-activities .content-wrapper {
        flex: 1 !important;
        min-height: 0 !important;
        max-width: 1700px !important;
        padding: 16px 28px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    /* Título compacto */
    body.page-activities .title-container {
        flex-shrink: 0 !important;
        margin-bottom: 8px !important;
        margin-top: 0 !important;
    }

    body.page-activities .title-main {
        font-size: 44px !important;
    }

    /* El row de las 3 columnas hereda toda la altura disponible */
    body.page-activities .row.g-4 {
        height: 100% !important;
        overflow: hidden !important;
        margin: 0 !important;
    }

    /* Todas las columnas llenan la altura */
    body.page-activities .row.g-4 > [class*="col-"] {
        height: 100% !important;
        overflow: hidden !important;
    }

    /* COLUMNA 1: SIDEBAR CALENDARIO */
    body.page-activities .sidebar-box {
        height: 100% !important;
        overflow-y: auto !important;
        padding: 20px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    body.page-activities .sidebar-title {
        font-size: 22px !important;
        font-weight: 700 !important;
    }

    body.page-activities .sidebar-calendar-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        flex: 1 !important;
    }

    body.page-activities .day-thumb {
        padding: 12px 8px !important;
        border-radius: 20px !important;
        gap: 5px !important;
    }

    body.page-activities .thumb-lbl {
        font-size: 13px !important;
        font-weight: 700 !important;
    }

    body.page-activities .thumb-emoji {
        font-size: 21px !important;
        width: 38px !important;
        height: 38px !important;
    }

    /* COLUMNA 2: ACTIVIDADES - llena todo y hace scroll interno */
    body.page-activities .activities-box {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    body.page-activities .active-day-header {
        flex-shrink: 0 !important;
        padding: 18px 24px !important;
    }

    body.page-activities .active-day-icon {
        font-size: 42px !important;
    }

    body.page-activities .active-day-meta h2 {
        font-size: 24px !important;
        font-weight: 700 !important;
    }

    body.page-activities .active-day-meta p {
        font-size: 14px !important;
    }

    body.page-activities .activities-list {
        flex: 1 !important;
        overflow-y: auto !important;
        max-height: none !important;
        padding: 18px !important;
        gap: 14px !important;
    }

    body.page-activities .activity-card-row {
        padding: 16px 20px !important;
        gap: 18px !important;
        border-radius: 24px !important;
    }

    body.page-activities .act-icon-circle {
        width: 68px !important;
        height: 68px !important;
        font-size: 32px !important;
    }

    body.page-activities .act-title {
        font-size: 17px !important;
        font-weight: 700 !important;
        margin-bottom: 4px !important;
    }

    body.page-activities .act-time {
        font-size: 13px !important;
        margin-bottom: 4px !important;
    }

    body.page-activities .act-place {
        font-size: 14.5px !important;
        margin-bottom: 6px !important;
    }

    body.page-activities .act-desc {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    body.page-activities .act-stats {
        width: 110px !important;
        font-size: 11.5px !important;
        gap: 4px !important;
        padding-left: 14px !important;
    }

    body.page-activities .btn-register-act,
    body.page-activities .btn-selected-act {
        font-size: 12.5px !important;
        padding: 9px 18px !important;
        border-radius: 14px !important;
    }

    /* COLUMNA 3: FORMULARIO - llena todo con scroll interno */
    body.page-activities .registration-box {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        border-radius: 35px !important;
    }

    body.page-activities .registration-header {
        flex-shrink: 0 !important;
        padding: 16px 22px !important;
    }

    body.page-activities .registration-header h3 {
        font-size: 22px !important;
        font-weight: 700 !important;
    }

    body.page-activities .registration-body {
        flex: 1 !important;
        overflow-y: auto !important;
        padding: 20px !important;
    }

    body.page-activities .form-section-title {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }

    body.page-activities .form-kids-input,
    body.page-activities .form-kids-select,
    body.page-activities .form-kids-textarea {
        font-size: 14px !important;
        padding: 10px 14px !important;
        border-radius: 14px !important;
    }

    body.page-activities .child-card {
        padding: 14px !important;
        border-radius: 20px !important;
    }

    body.page-activities .child-number-title {
        font-size: 13px !important;
    }

    body.page-activities .btn-confirm-register,
    body.page-activities #btnConfirmRegister {
        padding: 11px 22px !important;
    }
}

/* ==========================================================
   📱💻 TABLET / LAPTOP BAJA RESOLUCIÓN (992px – 1299px)
   Ajusta escala, tipografía y espaciados para pantallas intermedias
   ========================================================== */
@media (min-width: 992px) and (max-width: 1299px) {

    body.page-activities .title-main {
        font-size: 34px !important;
    }

    body.page-activities .title-container {
        margin-bottom: 6px !important;
    }

    body.page-activities .content-wrapper {
        padding: 10px 16px 12px !important;
    }

    body.page-activities .row.g-4 {
        --bs-gutter-x: 12px !important;
        --bs-gutter-y: 0 !important;
    }

    /* --- COLUMNA 1: CALENDARIO --- */
    body.page-activities .sidebar-box {
        padding: 14px !important;
    }

    body.page-activities .sidebar-title {
        font-size: 17px !important;
    }

    body.page-activities .sidebar-header {
        padding-bottom: 8px !important;
        margin-bottom: 10px !important;
    }

    body.page-activities .sidebar-calendar-grid {
        gap: 7px !important;
    }

    body.page-activities .day-thumb {
        padding: 8px 4px !important;
        border-radius: 14px !important;
        gap: 4px !important;
    }

    body.page-activities .thumb-lbl {
        font-size: 11px !important;
    }

    body.page-activities .thumb-emoji {
        font-size: 17px !important;
        width: 30px !important;
        height: 30px !important;
    }

    body.page-activities .promo-box {
        padding: 8px !important;
        gap: 8px !important;
        margin-top: 8px !important;
    }

    body.page-activities .promo-text {
        font-size: 10.5px !important;
    }

    /* --- COLUMNA 2: ACTIVIDADES --- */
    body.page-activities .active-day-header {
        padding: 12px 16px !important;
    }

    body.page-activities .active-day-icon {
        font-size: 32px !important;
    }

    body.page-activities .active-day-meta h2 {
        font-size: 18px !important;
    }

    body.page-activities .active-day-meta p {
        font-size: 12px !important;
    }

    body.page-activities .activities-list {
        padding: 12px !important;
        gap: 10px !important;
    }

    body.page-activities .activity-card-row {
        padding: 12px 14px !important;
        gap: 12px !important;
        border-radius: 18px !important;
    }

    body.page-activities .act-icon-circle {
        width: 52px !important;
        height: 52px !important;
        font-size: 25px !important;
    }

    body.page-activities .act-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
    }

    body.page-activities .act-time {
        font-size: 12px !important;
        margin-bottom: 3px !important;
    }

    body.page-activities .act-place {
        font-size: 12.5px !important;
        margin-bottom: 4px !important;
    }

    body.page-activities .act-desc {
        font-size: 11px !important;
    }

    body.page-activities .act-stats {
        width: 88px !important;
        font-size: 10.5px !important;
        padding-left: 10px !important;
        gap: 3px !important;
    }

    body.page-activities .btn-register-act,
    body.page-activities .btn-selected-act {
        font-size: 11px !important;
        padding: 7px 12px !important;
        border-radius: 12px !important;
    }

    /* --- COLUMNA 3: REGISTRO --- */
    body.page-activities .registration-header {
        padding: 12px 16px !important;
    }

    body.page-activities .registration-header h3 {
        font-size: 17px !important;
    }

    body.page-activities .registration-body {
        padding: 12px !important;
    }

    body.page-activities .registration-steps-indicator {
        margin-bottom: 12px !important;
        padding: 0 4px !important;
    }

    body.page-activities .form-section-title {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    body.page-activities .step-help-text {
        font-size: 11.5px !important;
        margin-bottom: 8px !important;
    }

    body.page-activities .form-kids-input,
    body.page-activities .form-kids-select,
    body.page-activities .form-kids-textarea {
        font-size: 12.5px !important;
        padding: 8px 11px !important;
        border-radius: 12px !important;
    }

    body.page-activities .child-card {
        padding: 10px !important;
        border-radius: 16px !important;
    }

    body.page-activities .child-number-title {
        font-size: 11.5px !important;
    }

    body.page-activities .btn-confirm-register,
    body.page-activities #btnConfirmRegister {
        font-size: 13px !important;
        padding: 9px 16px !important;
    }

    body.page-activities .footer-help-text {
        font-size: 10.5px !important;
        margin-top: 8px !important;
    }
}

.main-container {
    min-height: 100vh;
    /* Degradado simulado de playa: cielo azul -> horizonte -> mar turquesa -> orilla -> arena de playa beige */
    background: linear-gradient(
        to bottom, 
        #1083d6 0%,      /* Cielo azul profundo */
        #cde4f7 32%,     /* Cielo claro en el horizonte */
        #00a2bf 32.2%,   /* Mar azul turquesa en el horizonte (corte limpio) */
        #4beecd 54%,     /* Agua cristalina cerca de la orilla */
        #e2d194 56%,     /* Orilla con arena húmeda */
        #f3e3a3 70%,     /* Arena suave intermedia */
        #f7eac0 100%     /* Arena beige de la playa en la parte inferior */
    );
    background-attachment: fixed;
    position: relative;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* WRAPPER CONTENIDO */
.content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

/* TITULO PRINCIPAL */
.title-container {
    margin-top: 25px;
    margin-bottom: 20px;
}

.title-main {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.word-zihua {
    /* Color naranja-amarillo cálido tomado directamente del texto "KIDS" en el logo */
    color: #FFA000; 
    /* Borde grueso de color marrón rojizo / borgoña profundo de "KIDS" y contorno blanco intermedio */
    text-shadow: 
        -3px -3px 0 #FFF, 3px -3px 0 #FFF, -3px 3px 0 #FFF, 3px 3px 0 #FFF,
        -5px -5px 0 #8A3324, 5px -5px 0 #8A3324, -5px 5px 0 #8A3324, 5px 5px 0 #8A3324,
        0 10px 15px rgba(0,0,0,0.25);
    letter-spacing: 2px;
}

/* CALENDARIO HERO BOX */
.hero-box {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 40px;
    border: 4px solid rgba(255,255,255,0.45);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-bottom: 20px;
}

/* HEADER DEL CALENDARIO */
.calendar-header {
    /* Degradado rosa coral inspirado en la tabla de surf del logo VIVE VERANO KIDS */
    background: linear-gradient(180deg, #DF7479 0%, #B84D51 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 25px;
    border-bottom: 4px solid #FFFFFF;
}

.header-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 600;
    text-shadow: 1.5px 1.5px 0 rgba(0,0,0,0.15);
}

.calendar-icon {
    font-size: 24px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B84D51;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.arrow-btn svg {
    width: 24px;
    height: 24px;
}

.arrow-btn:hover {
    transform: scale(1.15);
    background: #FFB300; /* Color amarillo del logo */
    color: #FFFFFF;
}

/* CONTENIDO CALENDARIO */
.calendar-body-content {
    padding: 20px;
}

/* GRID DE CALENDARIO UNIFICADO (7 COLUMNAS SIMÉTRICAS) */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

/* DAY CARDS */
.day-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 22px;
    overflow: hidden;
    border: 4px solid #FFFFFF;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 210px;
}

.day-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
    border-color: #FFB300;
}

.day-card.active {
    transform: translateY(-4px) scale(1.02);
    border-color: #FF6B00;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.22);
}

.day-card-header {
    background: var(--card-theme);
    color: #FFFFFF;
    padding: 8px 4px;
    text-align: center;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.day-card-header .month {
    font-size: 13.5px;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 0.8px;
    color: #FFFFFF;
}

.day-card-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 2px 0;
    text-shadow: 1.5px 1.5px 0 rgba(0,0,0,0.15);
}

.day-card-header p {
    font-size: 13.5px;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
    letter-spacing: 0.8px;
}

.day-card-body {
    padding: 12px 6px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    text-align: center;
    background: #FFFFFF;
}

.day-card-body .icon-circle {
    width: 52px;
    height: 52px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.06);
    border: 2px solid #FFFFFF;
}

.day-card-body .activity-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #374151;
    margin: 3px 0;
    line-height: 1.25;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.day-card-body .star-icon {
    color: #FF8C00;
    font-size: 11px;
    line-height: 1;
}

.day-card-body .activity-desc {
    font-size: 13px;
    font-weight: 700;
    color: #8C96A3;
    margin: 0;
    line-height: 1.2;
}

/* POSTE DE SEÑALES DE MADERA */
.wooden-signpost-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 210px; /* Aligns with day-card height */
}

.wooden-signpost {
    position: relative;
    width: 100%;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post-wood {
    width: 12px;
    height: 100%;
    background: linear-gradient(90deg, #A05A2C 0%, #8B4513 100%);
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.sign-arrow {
    position: absolute;
    width: 160px;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 3.5px 0 rgba(0,0,0,0.15), 0 6px 12px rgba(0,0,0,0.15);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.15);
    cursor: default;
    border: 2px solid #FFFFFF;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sign-arrow:hover {
    transform: scale(1.08) !important;
}

.board-green {
    /* Color turquesa del logo */
    background: #00B5E2;
    top: 10px;
    transform: rotate(-5deg);
    left: 15px;
}

.board-orange {
    /* Color rosa coral de la tabla de surf del logo */
    background: #DF7479;
    top: 48px;
    transform: rotate(6deg);
    left: 25px;
}

.board-yellow {
    /* Color amarillo del logo */
    background: #FFB300;
    top: 86px;
    transform: rotate(-4deg);
    left: 18px;
}

/* BOTON CONTINUAR */
.btn-verano {
    /* Degradado naranja a naranja oscuro del logo */
    background: linear-gradient(180deg, #FFA000 0%, #FF6B00 100%);
    border: 3px solid #FFFFFF;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    padding: 12px 42px;
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.25), inset 0 -3px 0 rgba(0,0,0,0.15);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-verano:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 18px rgba(255, 107, 0, 0.35), inset 0 -3px 0 rgba(0,0,0,0.15);
    color: #FFFFFF;
}

.btn-verano:active:not(:disabled) {
    transform: translateY(1px);
}

.btn-verano:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.4);
}

/* RESPONSIVIDAD */
@media (max-width: 1399.98px) {
    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1199.98px) {
    .title-main {
        font-size: 55px;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .wooden-signpost-wrapper {
        min-height: 180px;
    }
}

@media (max-width: 767.98px) {
    .main-container {
        padding-bottom: 40px;
    }
    
    .title-main {
        font-size: 38px;
    }
    
    .word-zihua {
        text-shadow: 
            -2px -2px 0 #FFF, 2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px 2px 0 #FFF,
            -4px -4px 0 #8A3324, 4px -4px 0 #8A3324, -4px 4px 0 #8A3324, 4px 4px 0 #8A3324;
    }
    
    .calendar-header {
        padding: 12px 15px;
    }
    
    .header-title-box {
        font-size: 15px;
    }
    
    .calendar-icon {
        font-size: 18px;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .day-card {
        min-height: 190px;
    }
    
    .day-card-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 479.98px) {
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ==========================================================================
   NUEVOS ESTILOS PARA LA PÁGINA DE ACTIVIDADES (DASHBOARD)
   ========================================================================== */

/* SIDEBAR CALENDARIO */
.sidebar-box {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 35px;
    border: 4px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 18px;
}

.sidebar-header {
    border-bottom: 3px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.back-arrow-btn {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DF7479;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    text-decoration: none;
}

.back-arrow-btn:hover {
    background: #FFB300;
    color: #FFFFFF;
    transform: scale(1.1);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

.sidebar-calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

/* MINI-BOTONES DE DÍAS (THUMBS) */
.day-thumb {
    background: #FFFFFF;
    border: 3px solid #FFFFFF;
    border-radius: 18px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.day-thumb:hover {
    transform: translateY(-3px);
    border-color: #FFB300;
}

.day-thumb.active {
    border-color: var(--thumb-color);
    background: var(--thumb-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.day-thumb.active .thumb-lbl {
    color: #FFFFFF;
}

.day-thumb.active .thumb-emoji {
    background: #FFFFFF;
    transform: scale(1.15);
}

.thumb-lbl {
    font-size: 13px;
    font-weight: 600;
    color: #4B5563;
    line-height: 1.1;
}

.thumb-emoji {
    font-size: 19px;
    width: 32px;
    height: 32px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

/* PROMO BOX SIDEBAR */
.promo-box {
    grid-column: span 4;
    background: linear-gradient(135deg, #FFFDE7 0%, #FFF9C4 100%);
    border-radius: 20px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-top: 12px;
}

.promo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.promo-text {
    font-size: 12px;
    font-weight: 700;
    color: #D97706;
    margin: 0;
    line-height: 1.3;
}

/* PANEL CENTRAL DE ACTIVIDADES */
.activities-box {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 35px;
    border: 4px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.active-day-header {
    background: linear-gradient(180deg, #84CC16 0%, #65A30D 100%);
    border-bottom: 4px solid #FFFFFF;
    color: #FFFFFF;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.active-day-icon {
    font-size: 38px;
    animation: pulse 2s infinite ease-in-out;
}

.active-day-meta h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 1.5px 1.5px 0 rgba(0,0,0,0.15);
}

.active-day-meta p {
    font-size: 13.5px;
    font-weight: 700;
    margin: 3px 0 0 0;
    opacity: 0.95;
}

.activities-list {
    padding: 18px;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 520px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ACTIVIDAD INDIVIDUAL CARD */
.activity-card-row {
    background: #FFFFFF;
    border-radius: 24px;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    transition: all 0.2s ease;
}

.activity-card-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.activity-card-row.selected {
    border-color: #84CC16;
    background: #F9FEE7;
}

.act-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #E0F7FA;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
    border: 2.5px solid #FFFFFF;
    flex-shrink: 0;
}

.act-details {
    flex-grow: 1;
}

.act-title {
    font-size: 16.5px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 4px 0;
    line-height: 1.25;
}

.act-time {
    font-size: 13.5px;
    font-weight: 600;
    color: #FF5400;
    margin: 0 0 4px 0;
}

.act-place {
    font-size: 15.5px;
    font-weight: 600;
    color: #008AB3; /* Elegante tono azul turquesa profundo playero */
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.act-desc {
    font-size: 12px;
    font-weight: 600;
    color: #555E6D;
    margin: 0;
    line-height: 1.45;
}

.act-stats {
    font-size: 11px;
    font-weight: 700;
    color: #4B5563;
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 105px;
    border-left: 2.5px solid #E5E7EB;
    padding-left: 12px;
    flex-shrink: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-register-act {
    background: #84CC16;
    color: #FFFFFF;
    border: none;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(132, 204, 22, 0.2);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    flex-shrink: 0;
}

.btn-register-act:hover {
    background: #65A30D;
    transform: scale(1.05);
}

.btn-selected-act {
    background: #FF6B00;
    color: #FFFFFF;
    border: none;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(255, 107, 0, 0.2);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-selected-act:hover {
    background: #E05E00;
}

/* COLUMNA REGISTRO */
.registration-box {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 35px;
    border: 4px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

.registration-header {
    background: linear-gradient(180deg, #84CC16 0%, #65A30D 100%);
    border-bottom: 4px solid #FFFFFF;
    color: #FFFFFF;
    padding: 14px 18px;
    text-align: center;
}

.registration-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 1.5px 1.5px 0 rgba(0,0,0,0.15);
}

.registration-body {
    padding: 18px;
}

.form-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #B84D51;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(223, 116, 121, 0.3);
    padding-bottom: 4px;
    letter-spacing: 0.5px;
}

.child-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 12px;
    border: 2px solid rgba(223, 116, 121, 0.2);
    position: relative;
}

.child-number-title {
    font-size: 11.5px;
    font-weight: 600;
    color: #4B5563;
}

.btn-remove-child {
    background: none;
    border: none;
    color: #EF4444;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    padding: 0;
    transition: all 0.2s ease;
}

.btn-remove-child:hover {
    color: #B91C1C;
    transform: scale(1.08);
}

.form-kids-input,
.form-kids-select,
.form-kids-textarea {
    border-radius: 14px !important;
    border: 2px solid #E5E7EB !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
    transition: all 0.2s ease !important;
}

.form-kids-input:focus,
.form-kids-select:focus,
.form-kids-textarea:focus {
    border-color: #FFB300 !important;
    box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.15) !important;
    outline: none !important;
}

.btn-add-child {
    background: #FFFFFF !important;
    border: 2px dashed #00B5E2 !important;
    color: #00B5E2 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border-radius: 14px !important;
    padding: 10px !important;
    transition: all 0.2s ease !important;
}

.btn-add-child:hover {
    background: #E0F7FA !important;
    border-style: solid !important;
    color: #008AB3 !important;
}

.selected-activities-summary {
    background: #FFFFFF;
    border-radius: 20px;
    border: 2px dashed #DF7479;
    padding: 12px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sum-item {
    background: #FFFDF9;
    border-radius: 14px;
    border: 2px solid rgba(223, 116, 121, 0.2);
    padding: 10px 12px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.25s ease;
}

.sum-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(223, 116, 121, 0.12);
    border-color: #DF7479;
}

.sum-item-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sum-item-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sum-item-emoji {
    font-size: 16px;
}

.sum-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.2;
}

.sum-item-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 22px;
}

.sum-item-meta {
    font-size: 11px;
    font-weight: 700;
    color: #4B5563;
}

.sum-item-place {
    font-size: 11px;
    font-weight: 600;
    color: #008AB3;
}

.btn-remove-sum {
    color: #EF4444;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    padding: 2px 6px;
    transition: transform 0.2s ease;
}

.btn-remove-sum:hover {
    transform: scale(1.2);
}

.form-kids-checkbox {
    border: 2px solid #D1D5DB !important;
    border-radius: 4px !important;
}

.form-kids-checkbox:checked {
    background-color: #FF6B00 !important;
    border-color: #FF6B00 !important;
}

.terms-text {
    font-size: 11px;
    font-weight: 700;
    color: #4B5563;
    line-height: 1.25;
}

.terms-link {
    color: #65A30D;
    text-decoration: underline;
}

.btn-confirm-register {
    background: linear-gradient(180deg, #FFA000 0%, #FF6B00 100%);
    border: 3px solid #FFFFFF;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 11px 18px;
    box-shadow: 0 5px 10px rgba(255, 107, 0, 0.2), inset 0 -3px 0 rgba(0,0,0,0.15);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.25);
    width: 100%;
}

.btn-confirm-register:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 15px rgba(255, 107, 0, 0.3);
}

.btn-confirm-register:disabled {
    opacity: 0.6;
    filter: grayscale(0.5);
    cursor: not-allowed;
}

.footer-help-text {
    font-size: 10px;
    font-weight: 700;
    color: #9CA3AF;
    margin: 0;
}

/* OVERLAY DE CONFIRMACIÓN */
.confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 40, 80, 0.70);
    /* SIN backdrop-filter — crea stacking context que lo esconde detrás de otros elementos */
    z-index: 99999;
    display: none; /* Controlado por JS */
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px 10px;
}

.confirmation-modal-card {
    background: #FFFFFF;
    border-radius: 40px;
    border: 6px solid #FFFFFF;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    max-width: 620px;
    width: 100%;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.conf-decor-star {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    animation: rotate 6s infinite linear;
}

.conf-decor-ball {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 32px;
    animation: pulse 3s infinite ease-in-out;
    opacity: 0.8;
}

.success-badge-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
    animation: bounce 1s infinite ease-in-out;
}

.confirmation-title {
    font-size: 26px;
    font-weight: 700;
    color: #FF6B00;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
    margin: 0;
}

.confirmation-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #6B7280;
    margin: 5px 0 0 0;
}

/* CUSTOM TICKET VIRTUAL */
.custom-ticket-container {
    background: linear-gradient(135deg, #FFFDE7 0%, #FFFDE7 100%);
    border-radius: 25px;
    border: 5px solid #FFD600;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.ticket-wood-border {
    height: 10px;
    background: linear-gradient(90deg, #A05A2C 0%, #8B4513 100%);
}

.ticket-inner {
    padding: 24px;
}

.ticket-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #FFA000;
    text-shadow: 
        -2px -2px 0 #FFF, 2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px 2px 0 #FFF,
        -3px -3px 0 #8A3324, 3px -3px 0 #8A3324, -3px 3px 0 #8A3324, 3px 3px 0 #8A3324;
    letter-spacing: 1px;
}

.ticket-divider {
    border-bottom: 2px dashed #FFD600;
    margin: 12px 0;
}

.ticket-tagline {
    font-size: 13px;
    font-weight: 600;
    color: #4B5563;
    margin: 0;
}

.ticket-meta-info {
    font-size: 13px;
    line-height: 1.45;
}

.meta-label {
    font-weight: 600;
    color: #6B7280;
}

.meta-val {
    font-weight: 600;
    color: #374151;
}

.ticket-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.ticket-activities-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticket-act-row {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid rgba(0, 181, 226, 0.15);
}

.ticket-act-emoji {
    font-size: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #E0F7FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ticket-act-meta {
    flex-grow: 1;
}

.ticket-act-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.ticket-act-time {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    margin: 0;
}

.ticket-act-place {
    font-size: 13.5px;
    font-weight: 500;
    color: #4B5563;
    margin: 0;
}

.ticket-act-desc {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    margin: 0;
}

.btn-export-img {
    background: #00B5E2;
    border: 3px solid #FFFFFF;
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 700;
    padding: 10px 20px;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(0, 181, 226, 0.2);
    transition: all 0.2s ease;
}

.btn-export-img:hover {
    background: #008AB3;
    transform: scale(1.02);
}

.btn-export-pdf {
    background: #84CC16;
    border: 3px solid #FFFFFF;
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 700;
    padding: 10px 20px;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(132, 204, 22, 0.2);
    transition: all 0.2s ease;
}

.btn-export-pdf:hover {
    background: #65A30D;
    transform: scale(1.02);
}

.btn-return-home {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    color: #4B5563;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-return-home:hover {
    background: #F3F4F6;
}

/* KEYFRAMES */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* PASO A PASO (REGISTRATION WIZARD) */
.registration-steps-indicator {
    position: relative;
    padding: 5px 0;
    margin-bottom: 25px;
}

.step-indicator-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #4B5563;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-indicator-item.active .step-num {
    background: #FF6B00;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
}

.step-indicator-item.completed .step-num {
    background: #84CC16;
    color: #FFFFFF;
}

.step-connector {
    flex-grow: 1;
    height: 4px;
    background: #E5E7EB;
    margin: 0 -15px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.step-connector.active {
    background: #84CC16;
}

.step-text {
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    margin-top: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-indicator-item.active .step-text {
    color: #FF6B00;
}

.step-indicator-item.completed .step-text {
    color: #84CC16;
}

.step-help-text {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    line-height: 1.4;
}

.reg-step {
    animation: fadeInStep 0.3s ease-in-out;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* OLA DE MAR: TRANSICIÓN DE PÁGINA PREMIUM */
.wave-transition-overlay {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 120vh;
    z-index: 100000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.wave-transition-overlay.slide-up-in {
    transform: translateY(0) !important;
}

.wave-transition-overlay.init-cover {
    top: -20vh;
    transform: translateY(0);
}

.wave-transition-overlay.slide-up-out {
    transform: translateY(-120vh) !important;
}

.wave-content {
    width: 100%;
    height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.wave-svg {
    width: 100%;
    height: 180px;
    margin-bottom: -2px;
    display: block;
}

.wave-deep-blue {
    background: linear-gradient(180deg, #00B5E2 0%, #1083D6 100%);
    width: 100%;
    height: calc(100vh + 20vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-loading-text {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    font-family: 'Fredoka', sans-serif;
    animation: waveTextPulse 1.4s infinite ease-in-out;
}

@keyframes waveTextPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* 🖥️ PANTALLA COMPLETA EN PC (SIN SCROLL VERTICAL) */
@media (min-width: 1024px) {
    body {
        height: 100vh;
        overflow: hidden;
    }
    
    .main-container {
        height: 100vh;
        overflow: hidden !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 12px;
    }
    
    .content-wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .title-container {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .title-main {
        font-size: 55px; /* Proporción compacta óptima */
    }
    
    .hero-box {
        margin-bottom: 5px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .calendar-body-content {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .calendar-grid {
        width: 100%;
        gap: 10px;
    }
    
    .day-card {
        min-height: 165px; /* Adaptable a la altura vertical de PC */
    }
    
    .day-card-header h2 {
        font-size: 28px;
    }
    
    .day-card-body {
        padding: 8px 4px;
        gap: 4px;
    }
    
    .day-card-body .icon-circle {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .day-card-body .activity-title {
        font-size: 12px;
        height: 30px;
    }
    
    .day-card-body .activity-desc {
        font-size: 10px;
    }
    
    .wooden-signpost-wrapper {
        min-height: 165px;
    }
    
    .wooden-signpost {
        height: 125px;
    }
    
    .sign-arrow {
        width: 140px;
        padding: 5px 8px;
        font-size: 12px;
    }
    
    .board-green { top: 5px; }
    .board-orange { top: 38px; }
    .board-yellow { top: 72px; }
    
    .mt-3 {
        margin-top: 5px !important;
    }
    .pb-3 {
        padding-bottom: 5px !important;
    }
}

/* ==========================================================
   🦀 OVERLAY DE ALERTA PERSONALIZADA VERANOKIDS
   ========================================================== */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 40, 80, 0.60);
    /* SIN backdrop-filter — crea stacking context que lo esconde detrás de otros elementos */
    z-index: 99999; /* Siempre visible por encima de todo */
    display: none; /* Controlado por JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-alert-card {
    background: #FFFFFF;
    border-radius: 35px;
    border: 5px solid #FFB300;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    max-width: 420px;
    width: 100%;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: alertBounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert-decor-emoji {
    font-size: 56px;
    margin-bottom: 12px;
    animation: alertWiggle 2.5s infinite ease-in-out;
    display: inline-block;
}

.alert-title {
    font-size: 22px;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 10px;
}

.alert-message {
    font-size: 14px;
    font-weight: 700;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 22px;
}

.btn-close-alert {
    background: linear-gradient(180deg, #FFA000 0%, #FF6B00 100%);
    border: 3px solid #FFFFFF;
    border-radius: 30px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.25), inset 0 -2px 0 rgba(0,0,0,0.15);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    cursor: pointer;
    outline: none;
}

.btn-close-alert:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.35);
}

@keyframes alertWiggle {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-10deg) scale(1.05); }
    30% { transform: rotate(8deg); }
    45% { transform: rotate(-6deg); }
    60% { transform: rotate(4deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes alertBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* DÍAS DESHABILITADOS (SIN ACTIVIDADES) */
.day-card.disabled-day, .day-thumb.disabled-day {
    opacity: 0.65;
    filter: grayscale(0.3);
    cursor: not-allowed !important;
}

.day-card.disabled-day:hover, .day-thumb.disabled-day:hover {
    transform: none !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04) !important;
}

/* RESPONSIVIDAD PARA TARJETAS DE ACTIVIDADES EN MÓVIL */
@media (max-width: 767.98px) {
    .activity-card-row {
        display: grid;
        grid-template-columns: 54px 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px 14px;
        padding: 16px;
        align-items: start;
        border-radius: 24px;
    }
    
    .act-icon-circle {
        grid-column: 1;
        grid-row: 1;
        width: 54px;
        height: 54px;
        font-size: 26px;
    }
    
    .act-details {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }
    
    .act-title {
        font-size: 17px;
        margin-bottom: 2px;
    }
    
    .act-time {
        font-size: 14.5px;
        margin-bottom: 2px;
    }
    
    .act-place {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .act-desc {
        font-size: 13.5px;
    }
    
    .act-stats {
        grid-column: 1 / span 2;
        grid-row: 2;
        width: 100%;
        display: flex;
        flex-direction: row !important;
        justify-content: flex-start;
        gap: 20px;
        border-left: none;
        border-top: 2px dashed #E5E7EB;
        padding-left: 0;
        padding-top: 10px;
        margin-top: 2px;
    }
    
    .stat-item {
        font-size: 13.5px;
    }
    
    .btn-act-toggle {
        grid-column: 1 / span 2;
        grid-row: 3;
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 15px !important;
        border-radius: 16px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    }
    
    /* MEJORAS DE LEGIBILIDAD PARA EL FORMULARIO DE REGISTRO EN MÓVIL */
    .registration-header h3 {
        font-size: 22px !important;
    }
    
    .form-section-title {
        font-size: 15px !important;
        margin-bottom: 10px !important;
    }
    
    .step-help-text {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }
    
    .child-number-title {
        font-size: 13.5px !important;
    }
    
    .form-kids-input,
    .form-kids-select,
    .form-kids-textarea {
        font-size: 15px !important; /* Ideal para móvil, evita auto-zoom en iOS */
        padding: 12px 14px !important;
    }
    
    .footer-help-text {
        font-size: 12.5px !important;
        line-height: 1.4 !important;
    }
    
    .btn-confirm-register, #btnConfirmRegister {
        font-size: 16px !important;
        padding: 14px 20px !important;
    }
    
    /* RESUMEN DE ACTIVIDADES SELECCIONADAS */
    .sum-item {
        padding: 14px !important;
    }
    
    .sum-item-emoji {
        font-size: 20px !important;
    }
    
    .sum-item-title {
        font-size: 15px !important;
    }
    
    .sum-item-meta, .sum-item-place {
        font-size: 13.5px !important;
    }
    
    .btn-remove-sum {
        font-size: 16px !important;
        top: 14px !important;
        right: 14px !important;
    }
}

/* ==========================================================
   📱 ESTILOS PARA MENÚ FLOTANTE Y MODALES MÓVILES
   ========================================================== */
.btn-close-mobile-modal {
    display: none;
}

.mobile-floating-actions {
    display: none; /* Ocultos en desktop */
}

/* ==========================================================
   📱 ESTILOS PARA DOCK DE PESTAÑAS FLOTANTES (ESTILO MATERIAL YOU - SOLO MÓVIL)
   ========================================================== */
.mobile-bottom-tab-bar {
    display: none; /* Oculto por defecto en PC/Desktop */
}

.btn-close-mobile-modal {
    display: none !important; /* Oculto por defecto en PC/Desktop */
}

.mobile-backdrop-overlay {
    display: none; /* Oculto por defecto en PC/Desktop */
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 110px !important; /* Evita que la barra flotante tape contenido en celular */
    }

    /* Ocultar el título de "VERANOKIDS" en móvil para que las actividades empiecen desde arriba */
    body.page-activities .title-container {
        display: none !important;
    }

    /* Ajustar color del título del sidebar en móvil para que contraste con el fondo blanco del modal */
    body.page-activities .sidebar-title {
        color: #1F2937 !important;
        text-shadow: none !important;
    }

    /* Ocultar la flecha de regresar en el calendario en vista móvil */
    body.page-activities .back-arrow-btn {
        display: none !important;
    }

    /* Quitar padding extra superior en móvil para aprovechar el espacio */
    body.page-activities .content-wrapper {
        padding-top: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Fondo oscuro semitransparente para los modales móviles */
    .mobile-backdrop-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 40, 80, 0.55);
        /* SIN backdrop-filter — causa un nuevo stacking context que tapa los modales */
        z-index: 9998;
        display: none; /* Controlado por JS */
    }


    /* Transformación de los contenedores originales en Modales Flotantes en celular */
    .sidebar-box,
    .registration-box {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 95% !important;
        max-width: 460px !important;
        height: auto !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        background: #FFFFFF !important;
        /* Anular el blur glassmorphism del escritorio — el backdrop ya da el efecto */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 35px !important;
        border: 4px solid #FFFFFF !important;
        box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
        padding: 0 !important; /* Eliminamos el padding lateral para ganar espacio */
        z-index: 9999 !important;
        display: none !important; /* Ocultos por defecto en celular */
        animation: alertBounceIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Mostrar modales al añadir la clase .show */
    .sidebar-box.show,
    .registration-box.show {
        display: block !important;
    }
    
    /* El calendario sí necesita padding porque no tiene un contenedor body interno */
    .sidebar-box {
        padding: 16px !important;
    }

    /* Botón de cerrar dentro de los modales - en la esquina superior */
    .btn-close-mobile-modal {
        display: flex !important;
        position: absolute;
        top: 12px;
        right: 12px;
        background: #F3F4F6;
        border: 2px solid #FFFFFF;
        border-radius: 20px;
        padding: 6px 14px;
        font-size: 13px;
        font-weight: 600;
        color: #4B5563;
        width: auto;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 50;
        margin-top: 0;
    }

    .btn-close-mobile-modal:hover {
        background: linear-gradient(180deg, #E5E7EB 0%, #D1D5DB 100%);
    }

    .btn-close-mobile-modal:active {
        transform: scale(0.97);
    }

    /* BARRA DE PESTAÑAS FLOTANTE (ESTILO APP DOCK NATIVO) */
    .mobile-bottom-tab-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 78px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 24px 24px 0 0;
        border: none;
        border-top: 2px solid #E5E7EB;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 10000;
        justify-content: space-around;
        align-items: center;
        padding: 6px 12px;
    }

    .tab-bar-item {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        position: relative;
        cursor: pointer;
        transition: all 0.2s ease;
        color: #6B7280;
        height: 100%;
    }

    /* Icono activo con fondo tipo píldora de Material You */
    .tab-bar-item .tab-icon {
        width: 58px;
        height: 32px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        color: #6B7280;
    }

    .tab-bar-item .tab-icon svg {
        width: 22px;
        height: 22px;
        transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.25);
    }

    .tab-bar-item .tab-label {
        font-size: 12.5px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.1px;
    }

    /* Estado Activo en color Naranja */
    .tab-bar-item.active {
        color: #FF6B00 !important;
    }

    .tab-bar-item.active .tab-icon {
        background: rgba(255, 107, 0, 0.14); /* Píldora de color naranja suave */
        color: #FF6B00 !important;
    }

    .tab-bar-item.active .tab-icon svg {
        transform: scale(1.12);
    }

    /* Badge circular de registro con animación pulsante */
    .tab-bar-item .tab-badge {
        position: absolute;
        top: 4px;
        right: 20%;
        background: #FF6B00;
        color: #FFFFFF;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 11px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #FFFFFF;
        box-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
        animation: pulse 2s infinite ease-in-out;
    }
}
