/* ==========================================================================
   1. TOKENS & VARIABLES (Guía de Estilo BOALA)
   ========================================================================== */
:root {
    --col-blue:         #273E64; /* Azul Ultramarino */
    --col-gold:         #DBAA5A; /* Amarillo Anaranjado */
    --col-green:        #294D5A; /* Verde Océano */
    --col-pearl:        #E2DACF; /* Blanco Perlado */
    --col-white:        #FFFFFF;
    --col-text-muted:   #7A8B99;

    /* --font-heading:     'Montserrat', sans-serif; */
    --font-heading:     'Aeroport', sans-serif;
    /* --font-body:        'Lato', sans-serif; */
    --font-body:        'Aeroport', sans-serif;
    --font-accent:      'Caveat', cursive;
    /* --font-accent:      'MiFuenteAcento', cursive; */

    --spacing-section:  100px;
    --spacing-container: 30px;
    --radius-sm:        8px;
    --radius-md:        12px;
    --radius-lg:        20px;
    --radius-pill:      50px;

    --transition-base:  0.3s ease;
    --shadow-soft:      0 10px 40px rgba(39, 62, 100, 0.08);
    --shadow-hover:     0 20px 50px rgba(39, 62, 100, 0.15);
}
@font-face {
    font-family: 'MiFuenteAcento';
    src: url('../../assets/fonts/OPTIExcelsiorScript.otf?v=1779307809664') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Fuente Aeroport (Regular) para el cuerpo normal */
@font-face {
    font-family: 'Aeroport';
    src: url('../../assets/fonts/Aeroport-regular-trial.otf?v=1779307809664') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Fuente Aeroport (Bold) para las negritas */
@font-face {
    font-family: 'Aeroport';
    src: url('../../assets/fonts/Aeroport-bold-trial.otf?v=1779307809664') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* (Opcional) Si quieres usar la versión light en algún lado */
@font-face {
    font-family: 'Aeroport';
    src: url('../../assets/fonts/Aeroport-light-trial.otf?v=1779307809664') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--col-blue); background-color: var(--col-pearl); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul { list-style: none; }
button { font-family: inherit; }

/* ==========================================================================
   3. TIPOGRAFÍA GLOBAL
   ========================================================================== */
h1, h2, h3, h4 { font-family: var(--font-heading); margin-bottom: 25px; line-height: 1.2; color: var(--col-blue); }
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; text-align: center; }
h2 { font-size: clamp(32px, 4vw, 42px); font-weight: 600; }
h3 { font-size: 28px; font-weight: 600; }
p { margin-bottom: 20px; }
.text-accent { font-family: var(--font-accent); font-size: 32px; color: var(--col-gold); transform: rotate(-2deg); display: inline-block; }
.text-center { text-align: center; }
.text-white  { color: var(--col-white) !important; }
.text-blue   { color: var(--col-blue) !important; }
.text-gold   { color: var(--col-gold) !important; }

/* ==========================================================================
   4. LAYOUT & COMPONENTES
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-container); }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--spacing-container); }
.section { padding: var(--spacing-section) 0; }
.pt-0 { padding-top: 0; }

.bg-pearl { background-color: var(--col-pearl); }
.bg-blue  { background-color: var(--col-blue); }
.bg-green { background-color: var(--col-green); }
.bg-white { background-color: var(--col-white); }

.grid-50-50 { display: flex; align-items: center; gap: 60px; }
.grid-50-50 > div { flex: 1; }
.reverse { flex-direction: row-reverse; }

.btn { display: inline-block; padding: 16px 36px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; border: none; border-radius: var(--radius-pill); cursor: pointer; text-align: center; transition: all var(--transition-base); }
.btn-gold { background-color: var(--col-gold); color: var(--col-blue); }
.btn-gold:hover { background-color: var(--col-blue); color: var(--col-white); }
.btn-blue { background-color: var(--col-blue); color: var(--col-white); }
.btn-blue:hover { background-color: var(--col-gold); color: var(--col-blue); }
.btn-outline { background-color: transparent; color: var(--col-white); border: 2px solid var(--col-white); }
.btn-outline:hover { background-color: var(--col-white); color: var(--col-blue); }

.form-group { margin-bottom: 25px; text-align: left; }
label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 15px; }
input, textarea { width: 100%; padding: 16px; border: 1px solid rgba(39, 62, 100, 0.2); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 16px; background-color: rgba(255,255,255,0.8); color: var(--col-blue); transition: border-color var(--transition-base); }
input:focus, textarea:focus { outline: none; border-color: var(--col-gold); background-color: var(--col-white); }
.form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 25px; }
.form-check input { width: 20px; height: 20px; margin-top: 4px; accent-color: var(--col-gold); }
.legal-text { font-size: 14px; line-height: 1.5; color: var(--col-text-muted); }

/* ==========================================================================
   5. HEADER & NAVEGACIÓN
   ========================================================================== */
header { background-color: var(--col-blue); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { width: 150px; height: 100px; overflow: hidden; display: inline-block; vertical-align: middle; }
.logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
header nav ul { display: flex; gap: 35px; align-items: center; }
header nav a { color: var(--col-pearl); font-size: 15px; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; position: relative; }
header nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--col-gold); transition: width var(--transition-base); }
header nav a:hover::after, header nav a.active::after { width: 100%; }
header nav a.btn::after { display: none; }
header nav a.btn.btn-gold:hover,
header nav a.btn.btn-gold.active { background-color: var(--col-pearl); color: var(--col-blue); }

/* --- LANGUAGE SWITCHER UI --- */
.lang-switcher { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; color: var(--col-pearl); font-size: 14px; margin-left: 10px; border-left: 1px solid rgba(255,255,255,0.2); padding-left: 20px;}
.lang-switcher span { cursor: pointer; opacity: 0.5; transition: opacity var(--transition-base), color var(--transition-base); }
.lang-switcher span:hover { opacity: 0.8; }
.lang-switcher span.active { opacity: 1; color: var(--col-gold); }

.hamburger { display: none; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 2000; }
.hamburger span { display: block; position: absolute; height: 2px; width: 100%; background: var(--col-white); border-radius: 2px; left: 0; transition: .25s ease-in-out; }
.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(135deg); }
.hamburger.active span:nth-child(2) { opacity: 0; left: -60px; }
.hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-135deg); }

/* ==========================================================================
   6. SECCIONES COMUNES E IMÁGENES RESPONSIVE
   ========================================================================== */
.hero { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 85vh; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 1; will-change: transform; transform: translate3d(0, 0, 0); }
.hero-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(39, 62, 100, 0.4); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 40px; }
.hero h1 { color: var(--col-white); text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero p { color: var(--col-pearl); font-size: 22px; margin-bottom: 40px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* Solución de aspecto fluido para imágenes de contenido en escritorio */
.content-img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); display: block; }

/* Galería de imágenes en escritorio (formato vertical/cuadrado) */
.gallery-strip { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.gallery-item { position: relative; aspect-ratio: 32/30; overflow: hidden; }
.gallery-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }

/* tarjeta de esperiencia personaliada */
/* Banner Horizontal Experiencia a Medida */
.custom-exp-banner {
    display: flex;
    flex-direction: row;
    background-color: var(--col-blue);
    color: var(--col-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 60px; /* Separación del grid superior */
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.custom-exp-banner:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.custom-exp-banner .card-img {
    width: 50%;
    aspect-ratio: auto;
    min-height: 350px;
}
.custom-exp-banner .card-body {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra el contenido verticalmente */
}
.custom-exp-banner .card-footer {
    margin-top: 20px;
    padding-top: 0;
}

/* Tarjetas */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.exp-card { background-color: var(--col-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform var(--transition-base), box-shadow var(--transition-base); display: flex; flex-direction: column; }
.exp-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.card-img { width: 100%; aspect-ratio: 1; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; display: block; }
.exp-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 35px; flex-grow: 1; display: flex; flex-direction: column; }
.card-meta { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--col-gold); margin-bottom: 15px; letter-spacing: 1px; }
.card-title { font-size: 26px; margin-bottom: 15px; }
.card-body p { font-size: 16px; margin-bottom: 15px; color: var(--col-text-muted); }
.card-footer { margin-top: auto; padding-top: 20px; }

/* HOME LANDING */
.landing-kicker { display: inline-block; margin-bottom: 18px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--col-gold); }
.landing-copy-block { max-width: 600px; }
.landing-manifesto { white-space: pre-line; font-size: 20px; line-height: 1.75; color: var(--col-blue); }
.text-soft-white { color: var(--col-pearl); }
.landing-idea-image,
.landing-visual-image { min-height: 520px; object-position: center; }
.section-heading-center { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.home-experiences-section { position: relative; overflow: hidden; }
.home-exp-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px; }
.home-exp-card { background: var(--col-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; min-height: 100%; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.home-exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.home-exp-card-image { aspect-ratio: 4 / 3; overflow: hidden; }
.home-exp-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.home-exp-card:hover .home-exp-card-image img { transform: scale(1.04); }
.home-exp-card-body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.home-exp-card .card-title { margin-bottom: 12px; }
.home-exp-card .card-meta { margin-bottom: 12px; }
.home-exp-card .card-footer { margin-top: auto; }
.home-exp-cta { width: 100%; }
.home-final-cta { max-width: 780px; margin: 55px auto 0; text-align: center; }
.home-final-cta p { font-size: 22px; line-height: 1.6; margin-bottom: 24px; }
.home-why-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; align-items: start; }
.home-why-panels { display: grid; gap: 22px; }
.why-panel { background: rgba(255,255,255,0.78); border: 1px solid rgba(39, 62, 100, 0.08); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-soft); }
.why-panel h3 { margin-bottom: 12px; }
.why-panel p { margin-bottom: 0; color: var(--col-blue); }
.why-panel-highlight { background: var(--col-blue); color: var(--col-white); }
.why-panel-highlight p { color: var(--col-pearl); }
.why-panel-close { font-size: 22px; line-height: 1.55; margin-bottom: 24px !important; }

/* ==========================================================================
   7. SISTEMA DE RESERVAS
   ========================================================================== */
.booking-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.boat-selector-box { grid-column: 1 / 2; }
.boat-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; margin-bottom: 15px; }
.boat-option-card { display: flex; flex-direction: column; gap: 4px; background: var(--col-white); border: 2px solid rgba(39, 62, 100, 0.12); border-radius: var(--radius-md); padding: 18px; cursor: pointer; transition: all var(--transition-base); box-shadow: var(--shadow-soft); }
.boat-option-card input { display: none; }
.boat-option-card.selected { border-color: var(--col-gold); transform: translateY(-2px); }
.boat-option-card.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; box-shadow: none; }
.boat-option-card strong { color: var(--col-blue); font-size: 18px; }
.boat-option-card span { color: var(--col-text-muted); font-size: 14px; }
.booking-options { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 25px; }
.option-card { position: relative; cursor: pointer; background: var(--col-white); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s ease; border: 2px solid transparent; box-shadow: var(--shadow-soft); margin-bottom: 0; display: flex; align-items: stretch; }
.option-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.option-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.option-card:has(input:checked) { border-color: var(--col-gold); background-color: #FAFAFA; }

.opt-image { width: 180px; flex-shrink: 0; overflow: hidden; aspect-ratio: 1;}
.opt-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.option-card:hover .opt-image img { transform: scale(1.05); }

.opt-details { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.opt-price-tag { display: inline-block; background: var(--col-blue); color: var(--col-gold); padding: 4px 12px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; margin-bottom: 10px; align-self: flex-start;}
.opt-title { font-size: 22px; margin-bottom: 5px; }
.opt-desc { font-size: 15px; color: var(--col-text-muted); margin: 0; }
.check-icon { position: absolute; top: 20px; right: 20px; background: var(--col-gold); color: var(--col-blue); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.5); transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); font-weight: bold; z-index: 2;}
.option-card:has(input:checked) .check-icon { opacity: 1; transform: scale(1); }

.booking-panel-right { background: var(--col-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-soft); position: sticky; top: 100px; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.calendar-header h3 { margin: 0; font-size: 22px; }
.cal-nav { background: transparent; border: 1px solid #ddd; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; color: var(--col-blue); font-weight: bold; }
.cal-nav:hover { background: var(--col-pearl); border-color: var(--col-blue); }

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-bottom: 30px; }
.c-head { text-align: center; font-size: 12px; font-weight: 700; color: #aaa; padding-bottom: 10px; }
.c-day { height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 15px; cursor: pointer; transition: all 0.2s; position: relative; color: var(--col-blue); font-weight: 600; }
.c-day.available::after { content: ''; position: absolute; bottom: 6px; width: 4px; height: 4px; background: var(--col-gold); border-radius: 50%; }
.c-day.available:hover { background-color: var(--col-pearl); }
.c-day.selected { background-color: var(--col-blue) !important; color: var(--col-white) !important; }
.c-day.selected::after { display: none; }
.c-day.disabled { color: #eee; pointer-events: none; }
.c-day.booked { color: #ccc; text-decoration: line-through; pointer-events: none; }

.booking-summary { border-top: 1px solid #eee; padding-top: 25px; display: none; animation: fadeIn 0.5s ease; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 16px; color: var(--col-text-muted); }
.summary-total { display: flex; justify-content: space-between; margin-top: 15px; font-family: var(--font-heading); font-size: 24px; color: var(--col-blue); font-weight: 700; }

/* ==========================================================================
   8. ACORDEÓN FAQ
   ========================================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--col-white); border-radius: var(--radius-md); margin-bottom: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 25px; background: none; border: none; font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--col-blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 24px; color: var(--col-gold); transition: transform 0.3s ease; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 25px; color: var(--col-text-muted); }
.faq-item.active .faq-answer { max-height: 1000px; padding-bottom: 25px; }

/* ==========================================================================
   9. FOOTER & UTILES
   ========================================================================== */
footer { background-color: var(--col-blue); padding: 60px 0 30px; text-align: center; color: var(--col-pearl); }
.footer-logo { display: flex; justify-content: center; margin-bottom: 20px;}
.footer-nav { margin-bottom: 30px; display:flex; justify-content:center; gap:30px; flex-wrap:wrap;}
.footer-nav a { font-size: 15px; text-transform: uppercase; font-family: var(--font-heading); font-weight: 600; letter-spacing: 1px;}
.footer-nav a:hover { color: var(--col-gold); }
.footer-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.footer-icons a { color: var(--col-pearl); font-size: 24px; }
.footer-icons a:hover { color: var(--col-gold); }
.copyright { font-size: 14px; opacity: 0.7; }

.sys-message { display: none; padding: 15px; border-radius: var(--radius-sm); margin-top: 20px; font-weight: bold; text-align: center; }
.sys-message.success { background-color: #d1fae5; color: #065f46; display: block; }
.sys-message.error { background-color: #fee2e2; color: #991b1b; display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   10. SECCIONES DIVIDIDAS FULL-WIDTH (QUIÉNES SOMOS)
   ========================================================================== */
.split-section {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.split-image {
    width: 50%;
    min-height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
}
.split-content {
    width: 50%;
    padding: 8% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}
.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
}
.split-content p:last-of-type {
    margin-bottom: 0;
}


/* ==========================================================================
   10. RESPONSIVE (MÓVIL)
   ========================================================================== */
@media (max-width: 900px) {
    .grid-50-50 { flex-direction: column; gap: 40px; }
    .grid-50-50 > div { width: 100%; }
    .reverse { flex-direction: column; }
    .home-exp-grid,
    .home-why-grid { grid-template-columns: 1fr; }
    .landing-idea-image,
    .landing-visual-image { min-height: 360px; }
    .landing-manifesto { font-size: 18px; }
    .home-final-cta p,
    .why-panel-close { font-size: 20px; }

    .hamburger { display: block; }
    header nav { position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--col-blue); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    header nav.active { max-height: 500px; padding-bottom: 20px; }
    header nav ul { flex-direction: column; gap: 20px; padding-top: 20px; align-items: center; }
    .lang-switcher { margin-left:0; border-left:none; padding-left:0; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 15px; width: 100%; justify-content: center;}

    .content-img { aspect-ratio: auto; height: auto; display: block; }

    .gallery-strip { display: flex; flex-direction: column; width: 100%; }
    .gallery-item { aspect-ratio: auto; height: auto; position: relative; overflow: visible; }
    .gallery-item img { position: static; width: 100%; height: auto; display: block; }
    img.recorte-movil {
        aspect-ratio: 32 / 30 !important;
        height: auto !important;
        object-fit: cover !important;
    }
    .card-img { aspect-ratio: auto; height: auto; overflow: visible; }
    .card-img img { height: 300px; position: static; }

    .booking-container { grid-template-columns: 1fr; }
    .booking-panel-right { top: 0; margin-bottom: 80px; }
    .booking-options { grid-template-columns: 1fr; }

    .option-card { flex-direction: column; align-items: stretch; text-align: center; }
    .opt-image { width: 100%; height: auto; aspect-ratio: auto; }
    .opt-image img { width: 100%; height: 300px; position: static; display: block; }
    .opt-price-tag { align-self: center; }
    .check-icon { top: 15px; right: 15px; }

    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; width: 100%;
        background: var(--col-blue);
        padding: 15px 20px;
        z-index: 9999;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    }
    .mobile-price { color: var(--col-white); font-family: var(--font-heading); font-size: 20px; font-weight: bold;}
    .mobile-price span { font-size: 12px; font-family: var(--font-body); display: block; opacity: 0.7; font-weight: normal;}
    .desktop-submit-btn { display: none; }
    .custom-exp-banner {
        flex-direction: column;
        margin-top: 40px;
    }
    .custom-exp-banner .card-img {
        width: 100%;
        min-height: auto;
    }
    .custom-exp-banner .card-body {
        width: 100%;
        padding: 35px;
    }
/* Adaptación Split Sections */
    .split-section {
        flex-direction: column;
    }
    .split-section.mobile-reverse {
        flex-direction: column-reverse;
    }
    .split-image {
        width: 100%;
        min-height: 400px;
    }
    .split-content {
        width: 100%;
        padding: 12% 8%;
        text-align: center;
    }
   }

   /* --- EXTRAS / ADDONS GRID --- */
.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.addon-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.addon-info h3 { margin: 0 0 0.5rem 0; color: var(--col-blue); }
.addon-info p { margin: 0 0 0.5rem 0; font-size: 0.95rem; color: #666; }
.addon-price { font-weight: bold; color: var(--col-gold); font-size: 1.1rem; }
.addon-controls { display: flex; align-items: center; gap: 1rem; }
.addon-controls button {
    width: 35px; height: 35px; border-radius: 50%; border: none;
    background: #f0f0f0; cursor: pointer; font-size: 1.2rem; font-weight: bold;
    color: var(--col-blue); transition: 0.2s;
}
.addon-controls button:hover { background: var(--col-gold); color: #fff; }
.addon-controls span { font-size: 1.1rem; font-weight: bold; width: 20px; text-align: center; }
.coupon-inline { display:flex; gap:10px; align-items:center; }
.coupon-inline input { flex: 1; }

@media(max-width: 600px){
    .addon-card { flex-direction: column; text-align: center; gap: 1rem; }
    .coupon-inline { flex-direction: column; }
}
