/* =================== BASE =================== */

html {
    scroll-behavior: smooth;
}

header {
    background: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 5;
    height: 2.5rem;
}

#menu-btn {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

#side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #f9f9f9;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    transition: right 0.3s ease;
    z-index: 6;
}

#side-menu.open {
    right: 0;
}

#close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    float: right;
    cursor: pointer;
}

#side-menu ul {
    list-style: none;
    list-style-type: none;
    margin-top: 3rem;
}

#side-menu li {
    margin: 1rem 0;
}
#side-menu li::before {
    content: "•";
    color: #70735f;
    display: none;
    width: 1em;
    margin-left: -1em;
}

#side-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#side-menu a:active,
#side-menu a:focus,
#side-menu a:hover {
    text-decoration: underline;
    color: #70735f;
}

.desktop-menu {
    display: none; /* oculto en móvil */
}

.desktop-menu ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* =================== FUENTES =================== */
.montserrat-100,
.montserrat-200,
.montserrat-300,
.montserrat-400,
.montserrat-500,
.montserrat-600,
.montserrat-700,
.montserrat-800,
.montserrat-900 {
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}
.montserrat-100 {
    font-weight: 100 !important;
}
.montserrat-200 {
    font-weight: 200 !important;
}
.montserrat-300 {
    font-weight: 300 !important;
}
.montserrat-400 {
    font-weight: 400 !important;
}
.montserrat-500 {
    font-weight: 500 !important;
}
.montserrat-600 {
    font-weight: 600 !important;
}
.montserrat-700 {
    font-weight: 700 !important;
}
.montserrat-800 {
    font-weight: 800 !important;
}
.montserrat-900 {
    font-weight: 900 !important;
}

.playfair-display-100,
.playfair-display-200,
.playfair-display-300,
.playfair-display-400,
.playfair-display-500,
.playfair-display-600,
.playfair-display-700,
.playfair-display-800,
.playfair-display-900 {
    font-family: "Playfair Display", serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}
.playfair-display-100 {
    font-weight: 100 !important;
}
.playfair-display-200 {
    font-weight: 200 !important;
}
.playfair-display-300 {
    font-weight: 300 !important;
}
.playfair-display-400 {
    font-weight: 400 !important;
}
.playfair-display-500 {
    font-weight: 500 !important;
}
.playfair-display-600 {
    font-weight: 600 !important;
}
.playfair-display-700 {
    font-weight: 700 !important;
}
.playfair-display-800 {
    font-weight: 800 !important;
}
.playfair-display-900 {
    font-weight: 900 !important;
}

/* =================== SWIPER (GENÉRICO) =================== */

.container-main-slider-wrapper .swiper-slide {
    position: relative;
    width: 100%;
    height: 825px; /* puede ser controlado por aspect-ratio abajo si prefieres */
    overflow: hidden;
}

/* >>> Overlay oscuro/transparente sobre la imagen (mejora legibilidad) */

/* Por defecto: cover para sliders generales */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay por encima de la imagen pero debajo del texto */
.container-main-slider-wrapper .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        /* más fuerte abajo */ rgba(0, 0, 0, 0.6) 50%,
        /* medio */ rgba(0, 0, 0, 0.45) 75%,
        /* se suaviza */ rgba(0, 0, 0, 0.35) 100%
            /* parte superior aún oscura */
    );
    z-index: 1;
    pointer-events: none;
}

/* Texto y controles SIEMPRE por encima del overlay */
.container-main-slider-wrapper .swiper-slide .label-1,
.container-main-slider-wrapper .swiper-slide .label-2,
.container-main-slider-wrapper .swiper-slide .label-3,
.container-main-slider-wrapper .swiper-slide .label-4,
.container-main-slider-wrapper .swiper-slide .label-5,
.container-main-slider-wrapper .swiper-slide .countdown,
.container-main-slider-wrapper .swiper-slide .button-slider {
    z-index: 2;
    color: #fff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9); /* sombra fuerte para mayor contraste */
}

/* (opcional) si quieres degradado en vez de overlay uniforme */
.container-main-slider-wrapper .swiper-slide::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Labels sobre slides */
.swiper-slide .label-1,
.swiper-slide .label-2,
.swiper-slide .label-3,
.swiper-slide .label-4,
.swiper-slide .label-5 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-align: center;
}

.swiper-slide .label-1 {
    top: 4%;
    font-size: 1rem;
}
.swiper-slide .label-2 {
    top: 7%;
    font-size: 1rem;
    width: 21rem;
}
.swiper-slide .label-3 {
    top: 17%;
    font-size: 25px;
    width: 13rem;
}
.swiper-slide .label-4 {
    top: 24%;
    font-size: 12px;
    width: 15rem;
}
.swiper-slide .label-5 {
    top: 73%;
    font-size: 12px;
    width: 15rem;
}

@keyframes scale-up-center {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
@keyframes scale-down-center {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.scale-up-center {
    animation: scale-up-center 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.scale-down-center {
    animation: scale-down-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.button-slider {
    background-color: rgba(255, 0, 0, 0);
    position: absolute;
    top: 88%;
    left: 47%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    text-align: center;
    border: 1px solid white;
    color: white;
}

/* =================== SECCIONES =================== */

.reservation-section {
    background-color: #b9bba5;
    padding: 2rem;
    text-align: center;
}

/* Ornamento: hojas sutiles (estáticas y pocas) */
/* Dos hojas grandes como fondos en esquinas (siempre detrás del contenido) */
.reservation-section {
    position: relative; /* ancla para pseudo-elementos si luego se usan */
    overflow: hidden;
    /* Más hojas (estáticas), colocadas en distintas zonas */
    background-image:
        /* 1: esquina sup-izq (giro leve) */ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-14 80 80) scale(1)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 2: esquina inf-der (giro opuesto) */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(14 80 80) scale(1)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 3: sup-derecha (más pequeña) */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-8 80 80) scale(0.9)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 4: inf-izquierda (más pequeña) */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(10 80 80) scale(0.85)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 5: centro-izquierda (suave y mediana) */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-22 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 6: centro-derecha (suave y pequeña) */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(22 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 7: top-center */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-6 80 80) scale(0.8)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 8: bottom-center */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(6 80 80) scale(0.8)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 9: center-left */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-18 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 10: center-right */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(18 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 11: arriba ligeramente a la izquierda */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-28 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 12: abajo ligeramente a la derecha */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(28 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 13: 20% 30% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-12 80 80) scale(0.65)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 14: 40% 25% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(12 80 80) scale(0.65)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 15: 60% 30% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-4 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 16: 40% 75% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(8 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 17: 60% 70% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-20 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 18: 80% 60% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(20 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 19: 15% 15% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(0 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 20: 85% 15% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(15 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 21: 15% 85% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-15 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 22: 85% 85% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(25 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 23: 35% 50% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(5 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
        /* 24: 65% 50% */
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-5 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat,
        no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat,
        no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat,
        no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat,
        no-repeat;
    background-size: clamp(190px, 26vw, 400px), clamp(190px, 26vw, 400px),
        clamp(150px, 22vw, 340px), clamp(150px, 22vw, 320px),
        clamp(130px, 20vw, 280px), clamp(130px, 20vw, 250px),
        clamp(130px, 18vw, 250px), clamp(130px, 18vw, 250px),
        clamp(120px, 16vw, 230px), clamp(120px, 16vw, 230px),
        clamp(140px, 19vw, 280px), clamp(140px, 19vw, 280px),
        clamp(120px, 15vw, 230px), clamp(120px, 15vw, 230px),
        clamp(110px, 14vw, 210px), clamp(110px, 14vw, 210px),
        clamp(95px, 12vw, 180px), clamp(95px, 12vw, 180px),
        clamp(110px, 14vw, 210px), clamp(110px, 14vw, 210px),
        clamp(110px, 14vw, 210px), clamp(110px, 14vw, 210px),
        clamp(95px, 12vw, 180px), clamp(95px, 12vw, 180px);
    background-position: left -12px top -24px, right -18px bottom -28px, 92% 12%,
        /* sup-derecha */ 8% 84%, /* inf-izquierda */ 12% 42%,
        /* centro-izquierda */ 88% 58%, /* centro-derecha */ 50% 6%,
        /* top-center */ 50% 94%, /* bottom-center */ 2% 50%,
        /* center-left */ 98% 50%, /* center-right */ 30% 20%,
        /* arriba-izquierda intermedia */ 70% 80%,
        /* abajo-derecha intermedia */ 20% 30%, 40% 25%, 60% 30%, 40% 75%,
        60% 70%, 80% 60%, 15% 15%, 85% 15%, 15% 85%, 85% 85%, 35% 50%, 65% 50%;
    animation: none; /* estático */
}

/* Ajustes responsivos para la densidad de hojas */
@media (max-width: 768px) {
    .reservation-section {
        /* Móvil/Tablet: menos capas (18) para rendimiento */
        /* Ligero realce para que las hojas se perciban ~25% más visibles */
        filter: contrast(1.08) brightness(1.06);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-14 80 80) scale(1)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(14 80 80) scale(1)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-8 80 80) scale(0.9)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(10 80 80) scale(0.85)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-22 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(22 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-6 80 80) scale(0.8)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(6 80 80) scale(0.8)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-18 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(18 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-28 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(28 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-12 80 80) scale(0.65)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(12 80 80) scale(0.65)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-4 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(8 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-20 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(20 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            /* extras para móvil para cerrar huecos */
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(0 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(15 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-15 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(25 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(5 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-5 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: clamp(238px, 33vw, 500px), clamp(238px, 33vw, 500px),
            clamp(188px, 27vw, 425px), clamp(188px, 27vw, 400px),
            clamp(163px, 25vw, 350px), clamp(163px, 25vw, 312px),
            clamp(163px, 22vw, 312px), clamp(163px, 22vw, 312px),
            clamp(150px, 20vw, 285px), clamp(150px, 20vw, 285px),
            clamp(175px, 24vw, 350px), clamp(175px, 24vw, 350px),
            clamp(150px, 19vw, 285px), clamp(150px, 19vw, 285px),
            clamp(138px, 18vw, 260px), clamp(138px, 18vw, 260px),
            clamp(119px, 15vw, 225px), clamp(119px, 15vw, 225px),
            /* extras (6) para móvil */ clamp(138px, 18vw, 260px),
            clamp(138px, 18vw, 260px), clamp(138px, 18vw, 260px),
            clamp(138px, 18vw, 260px), clamp(125px, 16vw, 235px),
            clamp(125px, 16vw, 235px);
        background-position: left -12px top -24px, right -18px bottom -28px,
            92% 12%, 8% 84%, 12% 42%, 88% 58%, 50% 6%, 50% 94%, 2% 50%, 98% 50%,
            30% 20%, 70% 80%, 20% 30%, 40% 25%, 60% 30%, 40% 75%, 60% 70%,
            80% 60%, /* extras (6) para móvil */ 15% 15%, 85% 15%, 15% 85%,
            85% 85%, 35% 50%, 65% 50%;
    }
}

@media (min-width: 1024px) {
    .reservation-section {
        /* Desktop: más capas (30) para mayor riqueza visual */
        background-image:
            /* base 24 existentes */ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-14 80 80) scale(1)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(14 80 80) scale(1)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-8 80 80) scale(0.9)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(10 80 80) scale(0.85)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-22 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(22 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-6 80 80) scale(0.8)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(6 80 80) scale(0.8)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-18 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(18 80 80) scale(0.7)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-28 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(28 80 80) scale(0.75)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-12 80 80) scale(0.65)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(12 80 80) scale(0.65)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-4 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(8 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-20 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(20 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            /* 19..24 ya incluidos en base actual */
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(0 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(15 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-15 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(25 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(5 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-5 80 80) scale(0.55)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.18' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.25' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            /* 25..30: nuevas para desktop */
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-7 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(9 80 80) scale(0.6)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-11 80 80) scale(0.58)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(11 80 80) scale(0.58)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-3 80 80) scale(0.62)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(3 80 80) scale(0.62)'%3E%3Cpath fill='%23ffffff' fill-opacity='0.16' d='M80 18 Q102 48 80 142 Q58 48 80 18 Z'/%3E%3Cpath d='M80 36 L80 122' stroke='%23ffffff' stroke-opacity='0.22' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: clamp(190px, 26vw, 400px), clamp(190px, 26vw, 400px),
            clamp(150px, 22vw, 340px), clamp(150px, 22vw, 320px),
            clamp(130px, 20vw, 280px), clamp(130px, 20vw, 250px),
            clamp(130px, 18vw, 250px), clamp(130px, 18vw, 250px),
            clamp(120px, 16vw, 230px), clamp(120px, 16vw, 230px),
            clamp(140px, 19vw, 280px), clamp(140px, 19vw, 280px),
            clamp(120px, 15vw, 230px), clamp(120px, 15vw, 230px),
            clamp(110px, 14vw, 210px), clamp(110px, 14vw, 210px),
            clamp(95px, 12vw, 180px), clamp(95px, 12vw, 180px),
            clamp(110px, 14vw, 210px), clamp(110px, 14vw, 210px),
            clamp(110px, 14vw, 210px), clamp(110px, 14vw, 210px),
            clamp(95px, 12vw, 180px), clamp(95px, 12vw, 180px),
            /* 25..30 tamaños */ clamp(100px, 13vw, 190px),
            clamp(100px, 13vw, 190px), clamp(98px, 13vw, 188px),
            clamp(98px, 13vw, 188px), clamp(104px, 13vw, 196px),
            clamp(104px, 13vw, 196px);
        background-position: left -12px top -24px, right -18px bottom -28px,
            92% 12%, 8% 84%, 12% 42%, 88% 58%, 50% 6%, 50% 94%, 2% 50%, 98% 50%,
            30% 20%, 70% 80%, 20% 30%, 40% 25%, 60% 30%, 40% 75%, 60% 70%,
            80% 60%, 15% 15%, 85% 15%, 15% 85%, 85% 85%, 35% 50%, 65% 50%,
            /* 25..30 posiciones */ 25% 15%, 75% 15%, 25% 85%, 75% 85%, 45% 40%,
            55% 60%;
    }
}

.reservation-title {
    line-height: 40px;
    font-size: 30px;
    color: rgb(31, 41, 55);
    border-bottom: 2.5px solid #70735f;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}
.reservation-title-1 {
    font-size: 30px;
    color: rgb(255, 255, 255);
}

.reservation-text {
    font-size: 16px;
    color: rgb(75, 85, 99);
    margin-bottom: 1rem;
}

.container-reservation-img {
    position: relative;
    border-radius: 5%;
    overflow: hidden;
}
.container-reservation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
}
.container-reservation-img p {
    position: absolute;
    bottom: 1rem;
    left: 12%;
    width: 91%;
    color: white;
    font-size: 14px;
    text-align: left;
}

.card-reservation,
.card-reservation-about {
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card-reservation-about {
    text-align: left;
}
.bg-terra {
    background-color: #70735f;
}

.mySwiper {
    border-radius: 1.2rem;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: rgba(0, 0, 0, 0.219);
    padding: 1rem;
    border-radius: 50%;
    color: white;
    --swiper-navigation-size: 20px;
    --swiper-navigation-top-offset: 50%;
    --swiper-navigation-sides-offset: 10px;
    --swiper-navigation-color: var(--swiper-theme-color);
}
.swiper-pagination {
    --swiper-pagination-color: white;
    --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
}

/* Marco con capas inclinadas detrás del slider */
.slider-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.background-layer {
    position: absolute;
    width: 90%;
    height: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 8px;
}
.bg-1 {
    background-color: #70735f;
    transform: translate(-50%, -50%) rotate(-5deg);
}
.bg-2 {
    background-color: #f2f2f2;
    transform: translate(-50%, -50%) rotate(3deg);
    z-index: 1;
}

/* Envoltorio visual del Swiper (slider especial con marcos) */
.mySwiper {
    position: relative;
    z-index: 2;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ubication-content .card-reservation {
    text-align: center;
}

.link-card {
    color: #70735f;
}

/* Mejora de claridad: que los enlaces con .link-card parezcan clicables (PC y móvil) */
a.link-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background-color: #ffffff;
    color: #70735f;
    border: 1px solid #70735f;
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
    min-height: 44px; /* objetivo táctil mínimo recomendado */
    line-height: 1.2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

a.link-card:hover {
    background-color: #70735f;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

a.link-card:active {
    transform: translateY(0);
}

a.link-card:focus-visible {
    outline: 3px solid #b9bba5;
    outline-offset: 2px;
}

/* Indicador visual de acción (flecha) y de enlace externo */
a.link-card::after {
    content: "→";
    font-size: 0.95em;
    line-height: 1;
    transition: transform 0.15s ease;
}
a.link-card[target="_blank"]::after {
    content: "↗";
}
a.link-card:hover::after {
    transform: translateX(2px);
}

@media (max-width: 640px) {
    a.link-card {
        width: 100%;
        justify-content: center;
    }
}

.dressCode-section {
    background-color: #f2f2f2;
    padding: 2rem;
    text-align: center;
    border-radius: 0.5rem;
}
.dressCode-section .card-reservation {
    text-align: center;
}
.dressCode-section h3 {
    text-align: center;
    font-size: 20px;
}
.dressCode-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
}
li::before {
    content: "•";
    color: #70735f;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-items: center;
}
.color {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}
.color-card p {
    font-size: 0.9rem;
    color: #555;
}

.content-song {
    border-top: 1px solid #70735f;
    border-bottom: 1px solid #70735f;
    padding: 1rem 0;
    margin-top: 0.8rem;
}

.event-section {
    background-color: #b9bba5;
    padding: 2rem;
    text-align: center;
}
.event-section h3 {
    font-size: 20px;
    margin-bottom: 1rem;
}
.container-card-event {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.event-section .card-reservation {
    background-color: #f0f0e9;
    text-align: center;
    width: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.event-section .card-reservation span {
    font-size: 10px;
}
.event-section .card-reservation svg {
    margin-bottom: 0.5rem;
}

/* Confirmación */
.confirmation-section {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.confirmation-section img {
    width: 100%;
    display: block;
    height: 39rem;
}
.confirmation-content {
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    width: 80%;
}
.form-confirmation {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.form-group label {
    color: white;
    margin-bottom: 0.3rem;
    margin-top: 0.3rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 0.3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff45;
    color: white;
}
.form-group select option {
    color: black;
}
.form-confirmation button {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.726);
    margin-top: 0.8rem;
    padding: 0.5rem;
    width: 10rem;
}
.form-confirmation button:hover,
.form-confirmation button:focus {
    color: #fff;
    animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    border: 1px solid #fff;
}

/* Footer */
footer {
    background-color: #70735f;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

/* Countdown sobre slider */
.countdown {
    display: flex;
    gap: 0.5rem;
    background: #33333319;
    color: #fff;
    padding: 0.3em 0.9em;
    border-radius: 8px;
    text-align: center;
    height: 2.5rem;
    width: 13rem;
    position: absolute;
    z-index: 2;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
}
.countdown div {
    display: flex;
    flex-direction: column;
}
.countdown span {
    font-size: 15px;
    font-weight: bold;
}
.countdown small {
    font-size: 10px;
    text-transform: uppercase;
    color: #ccc;
}

/* FAQ */
.faq-container {
    width: 100%;
    max-width: 700px;
}
.faq-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}
.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    text-align: start;
}
.faq-question:hover {
    background: #f0f0f0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fafafa;
    color: #333;
    line-height: 1.5;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}
.icon {
    transition: transform 0.3s;
}
.faq-item.active .icon {
    transform: rotate(45deg);
}

/* ============= SLIDER ESPECIAL (con fonditos) ============= */

.slider-especial .swiper {
    width: 100%;
    height: 400px; /* Altura base móvil; se puede escalar con aspect-ratio abajo */
}

.slider-especial .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-especial .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* por defecto, no recorta en el slider especial */
}

/* Animaciones */
@keyframes slide-bottom {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slide-right {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.slide-bottom {
    animation: slide-bottom 1s ease forwards;
}
.slide-right {
    animation: slide-right 1s ease forwards;
}

/* =================== MEDIA QUERIES (resumen limpio) =================== */

@media (max-width: 356px) {
    .event-section {
        padding: 1rem;
    }
    .countdown {
        top: 92%;
    }
    .container-reservation-img p {
        top: 51%;
        width: 17rem;
        left: 3%;
    }
    .logo_boda {
        width: 4rem;
    }
}

@media (max-width: 340px) {
    .event-section {
        padding: 1rem 0.5rem;
    }
    .countdown {
        top: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
    .container-reservation-img p {
        top: 51%;
        width: 17rem;
        left: 3%;
    }
    .card-reservation {
        padding: 0.3rem;
    }
    .logo_boda {
        width: 4rem;
    }
}

@media (max-width: 320px) {
    .event-section {
        padding: 1rem 0.5rem;
    }
    .countdown {
        top: 93%;
        left: 50%;
        transform: translateX(-50%);
    }
    .container-reservation-img p {
        top: 51%;
        width: 17rem;
        left: 3%;
    }
    .card-reservation {
        padding: 0.3rem;
    }
    .container-card-event {
        gap: 0;
    }
    .logo_boda {
        width: 4rem;
    }
    .button-slider {
        top: 85%;
    }
}

/* Copia de estilos de 320px para 375px */
@media (max-width: 375px) {
    .event-section {
        padding: 1rem 0.5rem;
    }
    .countdown {
        top: 93%;
        left: 50%;
        transform: translateX(-50%);
    }
    .container-reservation-img p {
        top: 51%;
        width: 17rem;
        left: 3%;
    }
    .card-reservation {
        padding: 0.3rem;
    }
    .container-card-event {
        gap: 0;
    }
    .logo_boda {
        width: 4rem;
    }
    .button-slider {
        top: 85%;
    }
}

/* Copia de estilos de 320px para 388px */
@media (max-width: 388px) {
    .event-section {
        padding: 1rem 0.5rem;
    }
    .countdown {
        top: 93%;
        left: 50%;
        transform: translateX(-50%);
    }
    .container-reservation-img p {
        top: 51%;
        width: 17rem;
        left: 3%;
    }
    .card-reservation {
        padding: 0.3rem;
    }
    .container-card-event {
        gap: 0;
    }
    .logo_boda {
        width: 4rem;
    }
    .button-slider {
        top: 85%;
    }
}

@media (min-width: 388px) and (max-width: 400px) {
    .countdown {
        top: 92%;
        left: 50%;
    }
    .container-reservation-img p {
        top: 62%;
        width: 19rem;
        left: 3%;
    }
    .logo_boda {
        width: 4rem;
    }
}

@media (min-width: 401px) and (max-width: 460px) {
    .countdown {
        top: 92%;
        left: 50%;
    }
    .container-reservation-img p {
        top: 66%;
        width: 22rem;
        left: 3%;
    }
    .logo_boda {
        width: 4rem;
    }
}

@media (min-width: 461px) and (max-width: 559px) {
    .countdown {
        top: 92%;
        left: 50%;
    }
    .logo_boda {
        width: 4rem;
    }
    .slider-especial .mySwiper {
        max-width: 280px;
    }
    .confirmation-section img {
        height: 48rem;
    }
    .container-reservation-img p {
        top: 66%;
        width: 22rem;
        left: 3%;
    }
    .reservation-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .container-reservation-img img {
        width: 22rem;
    }
    .container-card-resercation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .ubication-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ubication-content .card-reservation {
        width: 90%;
    }
}

@media (min-width: 600px) and (max-width: 649px) {
    .countdown {
        top: 92%;
        left: 50%;
    }
    .logo_boda {
        width: 4rem;
    }
    .slider-especial .mySwiper {
        max-width: 280px;
    }
    .background-layer {
        width: 61%;
    }
    .confirmation-section {
        height: 38rem;
    }
    .confirmation-section img {
        height: 100%;
        object-fit: cover;
    }
    .container-reservation-img p {
        top: 66%;
        width: 31rem;
        left: 3%;
        font-size: 17px;
    }
    .container-reservation-img img {
        /* altura controlada por su contenedor */
    }
    .container-reservation-img .img2 {
        /* evita forzar alturas */
    }
    .container-card-resercation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .event-section .card-reservation {
        width: 10rem;
    }
}

/* =================== UTILIDADES TIPOGRAFÍA =================== */
.title-section-caps {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.texto-final-slider {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (min-width: 650px) and (max-width: 700px) {
    .countdown {
        top: 92%;
        left: 50%;
    }
    .logo_boda {
        width: 4rem;
    }
    .slider-especial .mySwiper {
        max-width: 280px;
    }
    .background-layer {
        width: 61%;
    }
    .confirmation-section {
        height: 38rem;
    }
    .confirmation-section img {
        height: 100%;
        object-fit: cover;
    }
    .container-reservation-img p {
        top: 66%;
        width: 31rem;
        left: 3%;
        font-size: 17px;
    }
    .container-card-resercation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .event-section .card-reservation {
        width: 10rem;
    }
}

@media (min-width: 701px) and (max-width: 768px) {
    .swiper-slide {
        height: 70rem !important;
    }
    .countdown {
        top: 92%;
        left: 50%;
    }
    .logo_boda {
        width: 4rem;
    }
    .slider-especial .mySwiper {
        max-width: 280px;
    }
    .background-layer {
        width: 61%;
    }
    .confirmation-section {
        height: 38rem;
    }
    .confirmation-section img {
        height: 100%;
        object-fit: cover;
    }
    .container-reservation-img p {
        top: 66%;
        width: 42rem;
        left: 3%;
        font-size: 19px;
    }
    .container-card-resercation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .event-section .card-reservation {
        width: 14rem;
    }
    .event-section .card-reservation span {
        font-size: 15px;
    }

    .slider-especial .swiper {
        width: 80%;
        height: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .swiper-slide {
        height: 750px;
    }
    .countdown {
        top: 92%;
        left: 50%;
    }
    .desktop-menu a {
        font-size: small;
    }
    .logo_boda {
        width: 4rem;
    }
    .slider-especial .mySwiper {
        max-width: 300px;
        height: 678px;
    }
    .background-layer {
        width: 61%;
    }
    .confirmation-section {
        height: 50rem;
        max-width: 100%;
    }
    .confirmation-section img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
    .swiper-slide .label-5 {
        width: 33rem;
        font-size: 15px;
        top: 79%;
    }
    .swiper-slide .label-4 {
        width: 33rem;
        font-size: 19px;
    }
    .swiper-slide .label-3 {
        width: 16rem;
        font-size: 31px;
    }
    .button-slider {
        left: 49%;
    }
    .container-reservation-img p {
        top: 73%;
        width: 28rem;
        left: 3%;
        font-size: 21px;
    }
    .container-reservation-img {
        height: 100%;
        border-radius: 2rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .container-reservation-card {
        width: 50%;
    }
    .reservation-title {
        font-size: 40px;
        padding: 1rem;
    }
    .reservation-text {
        font-size: 20px;
    }
    .mySwiper {
        max-width: 800px;
    }
    .card-ubication-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .container-ubication-cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        padding: 1rem;
        justify-items: center;
    }
    .container-ubication-cards .card-reservation {
        height: 15rem;
        text-align: center;
    }
    .card-hotel-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .card-hotel-container .card-reservation {
        height: auto !important;
        width: 100%;
    }
    .container-ubication-img {
        width: 50%;
    }
    .card-code-dress {
        text-align: start !important;
    }
    .container-dress-code {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        justify-items: center;
    }
    .container-card-pachanga {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .container-card-event {
        justify-items: center;
    }
    .confirmation-content h3 {
        font-size: 30px;
    }
    .confirmation-content p {
        font-size: 25px;
    }
    .event-section h3 {
        font-size: 30px;
    }
    .form-confirmation {
        bottom: 15%;
        width: 70%;
    }
    .countdown {
        gap: 0.5rem;
        padding: 0.3em 0.9em;
        height: 3.5rem;
        width: 17rem;
    }
    .countdown span {
        font-size: 20px;
    }
    .countdown small {
        font-size: 15px;
    }
    header {
        height: 4.5rem;
    }
    .form-group input,
    .form-group select {
        height: 2rem;
    }
    #menu-btn,
    #side-menu {
        display: none;
    }
    .desktop-menu {
        display: block;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .swiper-slide {
        height: 975px;
    } /* altura del visor */
    .swiper-slide img {
        height: 146% !important;
    } /* (si deseas, puedes dejar cover sin esta línea) */
    .countdown {
        top: 92%;
        left: 50%;
    }
    .desktop-menu a {
        font-size: medium;
    }
    .logo_boda {
        width: 10rem;
    }
    .slider-especial .mySwiper {
        max-width: 300px;
    }
    .background-layer {
        width: 61%;
    }
    .confirmation-section img {
        height: 48rem;
    }
    .swiper-slide .label-4 {
        top: 26%;
        width: 33rem;
        font-size: 28px;
    }
    .swiper-slide .label-3 {
        width: 16rem;
        font-size: 40px;
    }
    .swiper-slide .label-2 {
        width: 50rem;
        font-size: 28px;
    }
    .swiper-slide .label-1 {
        width: 17rem;
        font-size: 28px;
    }
    .swiper-slide .label-5 {
        width: 50rem;
        font-size: 20px;
        top: 75%;
    }

    .button-slider {
        left: 49%;
        font-size: 1.5rem;
        padding: 0.7rem 0rem 1rem 0.7rem;
        border-width: 2px;
        width: 54px;
        height: 54px;
        top: 84%;
    }
    .button-slider svg {
        width: 30px;
        height: 30px;
    }

    .container-reservation-img p {
        top: 73%;
        width: 28rem;
        left: 3%;
        font-size: 21px;
    }
    .container-reservation-card {
        width: 50%;
    }
    .event-section .card-reservation {
        width: 14rem;
    }
    .event-section .card-reservation span {
        font-size: 15px;
    }

    .confirmation-section {
        height: 50rem;
        max-width: 100%;
    }
    .confirmation-section img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .section-info-content {
        display: flex;
        gap: 1rem;
    }
    .reservation-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .reservation-title {
        font-size: 40px;
    }
    .reservation-text {
        font-size: 20px;
    }
    .mySwiper {
        max-width: 800px;
    }

    .card-ubication-container {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    .container-ubication-cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        justify-items: center;
    }
    .container-ubication-img {
        width: 50%;
    }
    .container-dress-code {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        justify-content: center;
        justify-items: center;
    }
    .container-card-pachanga {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .container-card-event {
        justify-items: center;
    }

    .confirmation-content h3 {
        font-size: 30px;
    }
    .confirmation-content p {
        font-size: 25px;
    }

    .form-confirmation {
        bottom: 15%;
        width: 70%;
    }
    .countdown {
        gap: 0.5rem;
        padding: 0.3em 0.9em;
        height: 3.5rem;
        width: 17rem;
    }
    .countdown span {
        font-size: 20px;
    }
    .countdown small {
        font-size: 15px;
    }

    header {
        height: 4.5rem;
    }
    .form-group input {
        height: 2rem;
    }

    #menu-btn,
    #side-menu {
        display: none;
    }
    .desktop-menu {
        display: block;
    }
    .container-slider-text {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 2rem;
        align-items: center;
    }
    .container-slider-text-2 > :first-child {
        grid-column: 2;
        grid-row: 1;
    }
    .container-slider-text-2 > :nth-child(2) {
        grid-column: 1;
        grid-row: 1;
    }
    .card-hotel-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-container {
        max-width: 100%;
    }
    .reservation-title {
        padding: 1rem;
    }
}

@media (min-width: 1440px) and (max-width: 1920px) {
    .swiper-slide {
        height: 975px;
    } /* altura del visor */
    .card-text-slider {
        font-size: 1.5rem;
    }
    .card-reservation {
        font-size: 1.2rem;
    }
    .swiper-slide img {
        height: 174% !important;
    }
    .countdown {
        top: 92%;
        left: 50%;
    }
    .desktop-menu a {
        font-size: medium;
    }
    .logo_boda {
        width: 10rem;
    }
    .slider-especial .mySwiper {
        max-width: 300px;
    }
    .background-layer {
        width: 61%;
    }
    .confirmation-section img {
        height: 48rem;
    }
    .swiper-slide .label-4 {
        top: 26%;
        width: 33rem;
        font-size: 28px;
    }
    .swiper-slide .label-3 {
        width: 16rem;
        font-size: 40px;
    }
    .swiper-slide .label-2 {
        width: 50rem;
        font-size: 28px;
    }
    .swiper-slide .label-1 {
        width: 17rem;
        font-size: 28px;
    }
    .swiper-slide .label-5 {
        width: 50rem;
        font-size: 20px;
        top: 75%;
    }

    .button-slider {
        left: 49%;
        font-size: 1.5rem;
        padding: 0.7rem 0rem 1rem 0.7rem;
        border-width: 2px;
        width: 54px;
        height: 54px;
        top: 84%;
    }
    .button-slider svg {
        width: 30px;
        height: 30px;
    }

    .container-reservation-img p {
        top: 73%;
        width: 28rem;
        left: 3%;
        font-size: 21px;
    }
    .container-reservation-card {
        width: 50%;
    }
    .event-section .card-reservation {
        width: 14rem;
    }
    .event-section .card-reservation span {
        font-size: 15px;
    }

    .confirmation-section {
        height: 50rem;
        max-width: 100%;
    }
    .confirmation-section img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .section-info-content {
        display: flex;
        gap: 1rem;
    }
    .reservation-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .reservation-title {
        font-size: 40px;
    }
    .reservation-text {
        font-size: 20px;
    }
    .mySwiper {
        max-width: 800px;
    }

    .card-ubication-container {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    .container-ubication-cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .container-ubication-img {
        width: 50%;
    }
    .container-dress-code {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        justify-content: center;
        justify-items: center;
    }
    .container-card-pachanga {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .container-card-event {
        justify-items: center;
    }

    .confirmation-content h3 {
        font-size: 30px;
    }
    .confirmation-content p {
        font-size: 25px;
    }

    .form-confirmation {
        bottom: 15%;
        width: 70%;
    }
    .countdown {
        gap: 0.5rem;
        padding: 0.3em 0.9em;
        height: 3.5rem;
        width: 17rem;
    }
    .countdown span {
        font-size: 20px;
    }
    .countdown small {
        font-size: 15px;
    }

    header {
        height: 4.5rem;
    }
    .form-group input {
        height: 2rem;
    }

    #menu-btn,
    #side-menu {
        display: none;
    }
    .desktop-menu {
        display: block;
    }
    .container-slider-text {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 2rem;
        align-items: center;
    }
    .container-slider-text-2 > :first-child {
        grid-column: 2;
        grid-row: 1;
    }
    .container-slider-text-2 > :nth-child(2) {
        grid-column: 1;
        grid-row: 1;
    }
    .card-hotel-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-container {
        max-width: 100%;
    }
    .reservation-title {
        padding: 1rem;
    }
}

/* =================== OVERRIDES CRÍTICOS PARA SWIPER ESPECIAL ===================
   Mantiene SIEMPRE las imágenes adaptadas sin deformar,
   evitando reglas antiguas de height: 115%, 135%, 150%, etc.
   Colocar este bloque al FINAL del archivo. */

.slider-wrapper.slider-especial .mySwiper {
    /* Definimos la “caja visor” del carrusel de forma responsive */
    width: 100%;
    max-width: 400px; /* ajusta a tu gusto */
    aspect-ratio: 3 / 4; /* relación tipo “página” */
    height: auto; /* evita alturas forzadas */
}

.slider-wrapper.slider-especial .swiper,
.slider-wrapper.slider-especial .swiper-wrapper,
.slider-wrapper.slider-especial .swiper-slide {
    width: 100%;
    height: 100%;
}

.slider-wrapper.slider-especial .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-wrapper.slider-especial .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* cambia a cover si quieres rellenar */
}

/* En pantallas medianas/grandes ampliamos el visor */
@media (min-width: 769px) {
    .slider-wrapper.slider-especial .mySwiper {
        max-width: 800px; /* más ancho */
        aspect-ratio: 3 / 4;
    }
}

/* Si en algún breakpoint prefieres altura exacta,
   puedes sobreescribir SOLO la altura del visor: */
/*
@media (min-width: 1024px) {
    .slider-wrapper.slider-especial .mySwiper {
        aspect-ratio: auto;
        height: 975px;
    }
}
*/

.my-confirm-btn {
    background-color: #70735f !important; /* color estable */
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
}

.my-confirm-btn:hover {
    background-color: #70735f !important; /* hover */
}

.my-confirm-btn:focus {
    background-color: #70735f !important; /* focus */
}

/* 📱 Móvil/Tablet: todos los títulos arriba del slider */
@media (max-width: 768px) {
    /* Cada bloque de capítulo necesita espacio arriba */
    .container-reservation-img > .container-slider-text {
        position: relative;
        padding-top: clamp(44px, 6vw, 72px); /* espacio para el título */
    }

    /* Todos los títulos dentro de card-text-slider */
    .card-text-slider .title-section-caps {
        position: absolute;
        top: 8px;
        left: 12px;
        right: 12px;
        text-align: center;
        display: block;
        z-index: 3;
        margin: 0;
        font-size: larger;
    }

    /* Ocultar el <br> justo después de cada título */
    .card-text-slider .title-section-caps + br {
        display: none;
    }
}
