/* Variables de Color */
:root {
    --color-header: #f0606b; /* El rojo juvenil/coral solicitado */
    --color-background: #e8dfd5; /* El beige/crema solicitado */
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-accent: #4a90e2; /* Un azul para acentuar el BLEISURE */
    --color-shadow: rgba(0, 0, 0, 0.1);
}

/* Estilos Generales y Reseteo Básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-background);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --- HEADER / ENCABEZADO --- */
header {
    background-color: var(--color-header);
    color: var(--color-text-light);
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px var(--color-shadow);
    position: relative;
}

.header-content h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    font-weight: 700;
    color: #ffffff;
}

.header-content h2 {
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 0;
    color: #ffffff;
}

.header-content h2 strong {
    font-weight: 600;
    color: var(--color-accent);
}

/* --- SECCIÓN HERO / BANNER PRINCIPAL Y WIDGET --- */
.hero-section {
    position: relative;
    height: 300px;
    background: url(images/barceloneta.jpg) no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* WebP support for modern browsers */
.webp-support .hero-section {
    background: url(images/barceloneta.webp) no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-widget-container iframe,
.booking-widget-container .cloudbeds-widget-class {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

/* Tagline sobre la foto del hero (dentro del header) */
.hero-tagline {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 6px 0 0;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Sticky bar interior */
.sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    gap: 16px;
}
.sticky-bar-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sticky-bar-name {
    font-weight: 800;
    font-size: 14px;
    color: #222;
}
.sticky-bar-price {
    font-size: 12px;
    color: #ff385c;
    font-weight: 600;
}


/* --- SECCIÓN DE INFORMACIÓN Y BLEISURE --- */
.info-section {
    padding: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section h3 {
    color: var(--color-header);
    font-size: 2em;
    margin-bottom: 10px;
}

.text-box {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--color-shadow);
}

.highlight {
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 15px;
}

.bleisure-box {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    padding: 20px;
    border-radius: 8px;
}

.bleisure-box h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

/* --- SECCIÓN DE FACILITIES / RAZONES --- */
.facilities-section {
    padding: 40px 0;
    background-color: #ffffff;
    text-align: center;
}

.facilities-section h3 {
    color: var(--color-text-dark);
    font-size: 2em;
    margin-bottom: 30px;
}

.facilities-grid {
    /* Mantenemos la regla de 4 columnas para escritorio */
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin-top: 20px;
}

.facility-card {
    background-color: var(--color-background);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--color-shadow);
    transition: transform 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.facility-card i {
    font-size: 2.5em;
    color: var(--color-header);
    margin-bottom: 10px;
}

.facility-card p {
    font-size: 1em;
    margin: 0;
}

.facility-card strong {
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: var(--color-text-dark);
}

/* --- FOOTER / PIE DE PÁGINA --- */
footer {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    padding-top: 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
    gap: 40px;
    padding-bottom: 30px;
}

.footer-content h4 {
    color: var(--color-header);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-info, .footer-map {
    flex: 1 1 300px; 
    text-align: left; 
}

.footer-info p {
    font-size: 0.95em;
    margin-bottom: 5px;
    color: #cccccc;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    background-color: #25D366; 
    color: var(--color-text-light);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px; 
    transition: background-color 0.3s;
    text-decoration: none; 
}

.whatsapp-link i {
    margin-right: 8px;
    font-size: 1.2em;
}

.whatsapp-link:hover {
    background-color: #128C7E;
}

/* Estilos para el Mapa Incrustado (IFRAME) */
.footer-map iframe {
    width: 100%;
    height: 200px; 
    border: 0;
    border-radius: 5px;
    margin-bottom: 10px;
    display: block; 
}

.map-link {
    display: block;
    color: var(--color-header) !important;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 5px;
}
.map-link:hover {
    color: #ff8c99 !important;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8em;
    color: #999999;
}

/* --- MEDIA QUERIES (RESPONSIVE) --- */

@media (max-width: 1100px) {
    /* Portátiles grandes a 3 columnas */
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Tablets a 2 columnas */
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info, .footer-map {
        margin-bottom: 20px;
        text-align: center;
    }

    .whatsapp-link {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    /* Móviles a 1 columna */
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}



/* --- CARRUSEL ESTILO POLAROID --- */

.gallery-wrap {
    margin: 22px 0;
    position: relative;
    background: var(--color-background);
    border-radius: 16px;
    padding: 10px 0;
}

.gallery {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 28px 24px 40px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    align-items: center;
}
.gallery::-webkit-scrollbar {
    display: none;
}

.gallery.active-drag .item {
    pointer-events: none;
}

/* Marco polaroid base */
.gallery .item {
    flex: 0 0 auto;
    width: 72vw;
    max-width: 240px;
    background: #fff;
    padding: 10px 10px 38px;
    border-radius: 3px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.16), 0 1px 4px rgba(0,0,0,0.08);
    transform: rotate(-2deg);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

/* Rotaciones distintas por posición */
.gallery .item:nth-child(2n)  { transform: rotate(1.8deg);  }
.gallery .item:nth-child(3n)  { transform: rotate(-1.2deg); }
.gallery .item:nth-child(4n)  { transform: rotate(2.4deg);  }
.gallery .item:nth-child(5n)  { transform: rotate(-0.8deg); }
.gallery .item:nth-child(6n)  { transform: rotate(1.4deg);  }

/* Hover: se enderezan y suben */
.gallery .item:hover {
    transform: rotate(0deg) scale(1.05) translateY(-4px);
    box-shadow: 0 14px 38px rgba(0,0,0,0.22);
    z-index: 2;
}

/* Imagen dentro del marco */
.gallery .item img,
.gallery .item picture img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.gallery .item picture {
    display: block;
    width: 100%;
}

/* --- CONTROLES (FLECHAS) --- */
.gallery-controls {
    display: none;
    margin-top: 10px;
    justify-content: center;
}
.arrow {
    background: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    cursor: pointer;
    margin: 0 8px;
    font-size: 18px;
    color: #333;
    transition: background 0.2s, box-shadow 0.2s;
}
.arrow:hover {
    background: var(--color-header);
    color: #fff;
    box-shadow: 0 6px 18px rgba(240,96,107,0.3);
}

@media(min-width: 900px) {
    .gallery-controls {
        display: flex;
    }
    .gallery .item {
        width: 230px;
        max-width: 230px;
    }
}

/* --- LIGHTBOX (PANTALLA COMPLETA) --- */
.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.85);
    z-index: 1400;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

.lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 92%;
    max-height: 86%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.lightbox .close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    color: white;
    border: 0;
    font-size: 30px;
    cursor: pointer;
    z-index: 1401;
}

/* --- ESTILO PARA LA IMAGEN DEBAJO DEL WIDGET (AÑADIDA) --- */
.widget-image-ad {
    margin-top: 15px; /* Separación respecto al widget de arriba */
    text-align: center; 
    position: relative; /* Necesario para la capa de oscuridad si la usáramos */
}

.widget-image-ad img {
    width: 100%; 
    height: auto; 
    max-height: 100px; /* Altura como banner */
    object-fit: cover; 
    border-radius: 6px; 
    display: block; 
    
    /* === MODIFICACIÓN CLAVE PARA OSCURECER LA IMAGEN === */
    filter: brightness(80%); /* Reduce el brillo al 80% (oscurece un 20%) */
    /* Puedes usar brightness(60%) si quieres un oscurecimiento del 40% */
    transition: filter 0.3s ease; /* Transición suave para si quieres un efecto al pasar el ratón */
}

.widget-image-ad img:hover {
    filter: brightness(100%); /* Opcional: que se ilumine al pasar el ratón */
}                                                   




/* Selector de idioma — esquina superior derecha */
.language-switcher {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1200;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.35);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Arial', sans-serif;
}

.lang-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
}

.lang-link:hover {
    color: #ff385c;
}

.lang-separator {
    color: white;
    margin: 0 5px;
    opacity: 0.7;
}





/* --- GOOGLE REVIEWS SECTION --- */
.google-reviews-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-top: 1px solid #eee;
}

/* Reviews Carousel */
.reviews-carousel-wrap {
    margin: 20px 0;
    position: relative;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 16px 10px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-carousel.active-drag {
    cursor: grabbing;
}

.reviews-carousel.active-drag .review-card {
    pointer-events: none;
}

.review-card {
    flex: 0 0 auto;
    width: 85vw;
    max-width: 450px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(66, 133, 244, 0.1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-card:active {
    transform: scale(0.995);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.review-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    font-size: 42px;
    color: #4285F4;
    opacity: 0.7;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: #fbbc04;
    font-size: 15px;
}

.review-date {
    font-size: 12px;
    color: #999;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 12px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    min-height: 80px;
}

/* Reviews Controls */
.reviews-controls {
    display: none;
    margin-top: 20px;
    justify-content: center;
    gap: 15px;
}

.review-arrow {
    background: white;
    border: 2px solid #4285F4;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
    cursor: pointer;
    font-size: 18px;
    color: #4285F4;
    transition: all 0.3s;
}

.review-arrow:hover {
    background: #4285F4;
    color: white;
    transform: scale(1.1);
}

/* Desktop styles */
@media (min-width: 900px) {
    .review-card {
        width: 400px;
    }

    .reviews-controls {
        display: flex;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .google-reviews-section {
        padding: 30px 0;
    }

    .review-card {
        width: 85vw;
        max-width: 350px;
    }

    .reviews-carousel {
        gap: 15px;
    }
}

/* ===== DIRECT BOOKING CONVERSION ELEMENTS ===== */

/* Promo bar — top of page */
.promo-bar {
    background: linear-gradient(90deg, #ff385c, #c0392b);
    color: #fff;
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.4;
}
.promo-bar a {
    color: #fff;
    background: rgba(255,255,255,0.22);
    padding: 3px 14px;
    border-radius: 20px;
    margin-left: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.promo-bar a:hover { background: rgba(255,255,255,0.38); }

/* Sticky booking bar — appears on scroll */
.sticky-book-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border-top: 2px solid #ff385c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-book-bar.visible { transform: translateY(0); }
.sticky-book-bar span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.btn-sticky {
    display: inline-block;
    background: linear-gradient(135deg, #ff385c, #ff1744);
    color: #fff;
    padding: 9px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255,56,92,0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-sticky:hover { transform: scale(1.04); box-shadow: 0 6px 16px rgba(255,56,92,0.5); }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 22px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.6); }

/* Urgency note — above reviews */
.urgency-note {
    background: #fffbea;
    border-left: 4px solid #ff385c;
    border-radius: 6px;
    padding: 10px 18px;
    margin: 0 auto 24px;
    max-width: 700px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* =============================================
   SECCIÓN: RESERVA DIRECTA (beneficios + tabla)
   ============================================= */

.direct-booking-section {
    background: #fafafa;
    padding: 60px 0 50px;
    text-align: center;
}

/* Encabezado de sección */
.direct-booking-section .section-eyebrow {
    display: inline-block;
    background: #fff0f2;
    color: #ff385c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.direct-booking-section .section-title {
    font-size: 1.9rem;
    font-weight: 900;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.2;
}
.direct-booking-section .section-subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 36px;
}

/* Grid de 4 tarjetas de beneficios */
.direct-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.direct-benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #ffd0d8;
    border-radius: 16px;
    padding: 28px 16px 22px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(255,56,92,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.direct-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(255,56,92,0.15);
}
.direct-benefit-card i {
    font-size: 2rem;
    color: #ff385c;
    margin-bottom: 14px;
    background: #fff0f2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.direct-benefit-card strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.direct-benefit-card p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* Separador antes de la tabla */
.direct-booking-section .comparison-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    margin-top: 8px;
}

/* Tabla comparativa — encuadrada como tarjeta */
.comparison-table-wrap {
    overflow: hidden;
    margin: 0 auto 28px;
    max-width: 640px;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(255,56,92,0.13);
    border: 2px solid #ffd0d8;
    background: #fff;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
/* Cabecera */
.comparison-table thead th {
    padding: 16px 14px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-align: center;
    border-bottom: 2px solid #ffd0d8;
}
.comparison-table thead th:first-child {
    text-align: left;
    color: #bbb;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 30%;
    background: #fafafa;
}
.comparison-table thead th.col-direct {
    background: #ff385c;
    color: #fff;
    width: 40%;
    font-size: 14px;
}
.comparison-table thead th.col-ota {
    background: #f4f4f4;
    color: #bbb;
    font-size: 12px;
    width: 30%;
}
/* Filas */
.comparison-table tbody tr {
    border-bottom: 1px solid #fef0f2;
}
.comparison-table tbody tr:last-child {
    border-bottom: none;
}
.comparison-table tbody tr:hover td {
    background: #fff8f9;
}
.comparison-table tbody tr:hover td.col-ota {
    background: #f9f9f9;
}
.comparison-table td {
    padding: 13px 14px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: #444;
    font-size: 13px;
    background: #fafafa;
}
.comparison-table td.col-direct {
    background: #fff5f7;
    font-weight: 700;
    color: #d63c50;
    font-size: 13px;
}
.comparison-table td.col-ota {
    color: #ccc;
    font-size: 13px;
    background: #fafafa;
}

/* Badge "Mejor Precio" */
.best-price-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff385c, #ff1744);
    border-radius: 50px;
    padding: 10px 24px;
    margin: 20px auto 0;
    box-shadow: 0 4px 14px rgba(255,56,92,0.35);
}
.best-price-badge .badge-icon { font-size: 18px; }
.best-price-badge .badge-top {
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.06em;
}
.best-price-badge .badge-bottom {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Botón CTA */
.direct-booking-cta {
    margin-top: 36px;
    margin-bottom: 10px;
}
.direct-booking-cta a {
    display: inline-block;
    background: linear-gradient(135deg, #ff385c 0%, #ff1744 100%);
    color: #fff;
    padding: 17px 48px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(255, 56, 92, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.direct-booking-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 56, 92, 0.6);
}

/* Responsivo */
@media (max-width: 860px) {
    .direct-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
    .hero-tagline { font-size: 1.2rem; }
    .sticky-bar-info { display: none; }
    .sticky-book-bar { justify-content: center; }
    .promo-bar { font-size: 11px; padding: 8px 10px; }
    .whatsapp-float { bottom: 70px; right: 14px; width: 50px; height: 50px; font-size: 24px; }
    .direct-booking-section .section-title { font-size: 1.4rem; }
    .direct-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .direct-benefit-card { padding: 20px 12px 16px; }
    .direct-booking-cta a { font-size: 15px; padding: 14px 28px; }
    .comparison-table-wrap { border-radius: 12px; }
    .comparison-table thead th, .comparison-table td { padding: 10px 8px; font-size: 12px; }
}

/* ===== POPUP MARZO ===== */
#march-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
}
#march-popup-overlay.active { display: flex; }
#march-popup {
    position: relative;
    max-width: 420px;
    width: 90%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popup-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
}
#march-popup-inner {
    position: relative;
    z-index: 1;
    padding: 36px 32px 32px;
    text-align: center;
    color: #fff;
}
.march-sun {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
}
.march-sun-svg {
    width: 86px;
    height: 86px;
    filter: drop-shadow(0 4px 12px rgba(255,200,60,0.5));
}
.sun-rays {
    animation: spin-slow 10s linear infinite;
    transform-origin: 50px 50px;
}
.march-flowers { font-size: 1.5rem; margin-bottom: 10px; letter-spacing: 5px; }
.march-title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.march-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.93;
    margin-bottom: 14px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.march-note {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.80;
    margin-bottom: 22px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.march-cta {
    display: inline-block;
    background: #f0606b;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(240,96,107,0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.march-cta:hover { transform: scale(1.06); box-shadow: 0 6px 24px rgba(240,96,107,0.6); }
.march-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: opacity 0.2s;
}
.march-close:hover { opacity: 0.6; }
@keyframes popup-bounce {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}