/* ==========================================================================
   DESIGN SYSTEM — LBA ASISTENTE VIRTUAL
   Paleta Bellatek: Oro · Rosa Palo · Crema · Marrón Profundo
   Tipografía: Cormorant Garamond (títulos) · Jost (cuerpo)
   ========================================================================== */
:root {
    /* Color Palette — Bellatek */
    --gold:           hsl(38, 55%, 48%);     /* #BC8F47 — Oro champán */
    --gold-lt:        hsl(38, 65%, 90%);     /* Oro muy claro */
    --gold-dk:        hsl(38, 55%, 36%);     /* Oro oscuro hover */
    --rose:           #D4A5A5;    /* #D4A5A5 — Rosa empolvado */
    --rose-lt:        hsl(340, 40%, 94%);    /* Rosa muy claro */
    --rose-dk:        #A85A62;    /* Rosa oscuro hover */

    --bg-primary:     hsl(30, 25%, 97%);     /* #FAF6F0 — Crema lino */
    --bg-secondary:   hsl(30, 20%, 93%);     /* Crema más oscura */
    --white:          #ffffff;

    --text-main:      hsl(20, 20%, 12%);     /* #1F1816 — Marrón profundo */
    --text-muted:     hsl(20, 10%, 40%);     /* Gris cálido */
    --text-light:     hsl(20, 8%, 62%);      /* Gris suave */

    /* Typography */
    --font-title:  'Cormorant Garamond', 'Georgia', serif;
    --font-body:   'Jost', system-ui, sans-serif;

    /* Layout */
    --container-width: 1180px;
    --header-height:   72px;
    --radius-sm:       8px;
    --radius-md:       16px;
    --radius-lg:       28px;
    --transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --sh-sm:  0 2px 16px rgba(60, 40, 20, 0.06);
    --sh-md:  0 8px 40px rgba(60, 40, 20, 0.10);
    --sh-lg:  0 20px 60px rgba(60, 40, 20, 0.16);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-main);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 500;
    line-height: 1.18;
    color: var(--text-main);
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dk); }

ul { list-style: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), hsl(38, 65%, 58%));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(188, 143, 71, 0.30);
}
.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(188, 143, 71, 0.45);
}

.btn-outline {
    background: transparent;
    border-color: var(--text-main);
    color: var(--text-main);
}
.btn-outline:hover {
    background: var(--text-main);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp-secondary {
    background: #25D366;
    color: var(--white);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.22);
}
.btn-whatsapp-secondary:hover {
    background: #20ba56;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp-secondary svg { width: 18px; height: 18px; }

.btn-icon { width: 18px; height: 18px; }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(250, 246, 240, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(188, 143, 71, 0.10);
    z-index: 1000;
    transition: var(--transition);
}
.main-header.scrolled {
    background: rgba(250, 246, 240, 0.97);
    box-shadow: var(--sh-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.02em;
}
.logo-highlight { color: var(--gold); font-style: italic; font-weight: 400; }

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}
.nav-link:hover { color: var(--text-main); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

.nav-link-cta {
    background: linear-gradient(135deg, var(--gold), hsl(38, 65%, 58%));
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 50px;
    letter-spacing: 0.06em;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover {
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(188, 143, 71, 0.38);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px; height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.hamburger .bar {
    width: 100%; height: 1.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: calc(var(--header-height) + 72px) 0 96px;
    background: radial-gradient(ellipse at 20% 60%, hsl(340, 40%, 96%) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, hsl(38, 50%, 95%) 0%, transparent 55%),
                var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    line-height: 1.1;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--sh-lg);
    background: var(--white);
    padding: 10px;
}

.hero-img {
    width: 360px;
    height: 440px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    background: var(--bg-secondary);
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

/* Badges */
.badge-overlay {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--sh-md);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    white-space: nowrap;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.badge-1 { top: 36px; left: -36px; border-left: 3px solid var(--rose); }
.badge-2 { bottom: 56px; right: -28px; border-left: 3px solid var(--gold); }
.badge-3 { bottom: -14px; left: 16px; border-left: 3px solid hsl(38, 55%, 48%); }
.badge-icon { font-size: 1.1rem; }

/* Geometric shapes */
.geometric-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(12px);
    opacity: 0.55;
}
.shape-1 {
    width: 280px; height: 280px;
    background: var(--gold-lt);
    top: -40px; right: -40px;
}
.shape-2 {
    width: 220px; height: 220px;
    background: var(--rose-lt);
    bottom: -40px; left: -40px;
}

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */
section { padding: 96px 0; }

.section-header {
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.section-title em { color: var(--gold); font-style: italic; }

/* ==========================================================================
   PILARES / BENEFICIOS
   ========================================================================== */
.benefits-section { background: var(--white); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    padding: 44px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(188, 143, 71, 0.10);
    background: var(--bg-primary);
    box-shadow: var(--sh-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: transparent;
    transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
#card-beneficio-tiempo:hover::before { background: var(--gold); }
#card-beneficio-dinero:hover::before { background: hsl(38, 75%, 50%); }
#card-beneficio-crecer:hover::before { background: var(--rose); }

.benefit-icon-wrapper {
    width: 54px; height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.benefit-icon-wrapper svg { width: 26px; height: 26px; }
.icon-primary  { background: var(--gold-lt); color: var(--gold-dk); }
.icon-gold     { background: hsl(38, 70%, 93%); color: hsl(38, 55%, 40%); }
.icon-rose     { background: var(--rose-lt); color: var(--rose-dk); }

.benefit-card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 14px;
}
.benefit-card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.services-section { background: var(--bg-secondary); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(188, 143, 71, 0.08);
    transition: var(--transition);
}
.service-box:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

.service-icon {
    width: 42px; height: 42px;
    background: var(--gold-lt);
    color: var(--gold-dk);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.service-icon svg { width: 20px; height: 20px; }

.service-box h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(188, 143, 71, 0.12);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
}
.service-list li::before {
    content: '—';
    color: var(--gold);
    font-weight: 400;
    position: absolute;
    left: 0;
}

/* Pricing CTA */
.pricing-cta-card {
    background: linear-gradient(135deg, var(--text-main), hsl(20, 18%, 22%));
    border-radius: var(--radius-md);
    padding: 44px 48px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--sh-lg);
}
.pricing-cta-content h3 {
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 10px;
    font-style: italic;
}
.pricing-cta-content p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.pricing-cta-action { display: flex; justify-content: flex-end; }

/* ==========================================================================
   SOBRE MÍ
   ========================================================================== */
.about-section { background: var(--white); }

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(188, 143, 71, 0.10);
}
.about-img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    object-position: center top;
}

.about-badge {
    position: absolute;
    bottom: -22px; right: -18px;
    background: linear-gradient(135deg, var(--text-main), hsl(20, 18%, 22%));
    color: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--sh-md);
}
.about-badge h4 { color: var(--white); font-size: 0.95rem; font-weight: 500; margin-bottom: 3px; }
.about-badge p  { color: rgba(255,255,255,0.65); font-size: 0.78rem; }

.about-content h2 { margin-bottom: 22px; }

.about-lead {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 32px;
}

/* Maternity callout */
.maternity-callout {
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    margin-bottom: 36px;
    background: var(--gold-lt);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.maternity-callout p {
    font-family: var(--font-title);
    font-size: 1.12rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.value-dot {
    width: 6px; height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
}

/* ==========================================================================
   AGENDA / CONTACTO
   ========================================================================== */
.booking-contact-section { background: var(--bg-secondary); }

.booking-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.booking-card,
.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(188, 143, 71, 0.08);
}

.card-title-header { margin-bottom: 28px; }
.card-title-header h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 6px;
}
.card-title-header p { color: var(--text-muted); font-size: 0.88rem; }

.calendly-wrapper { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px; }

.booking-rules {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid rgba(188, 143, 71, 0.10);
}

/* Contact form */
.contact-form { margin-bottom: 0; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(188, 143, 71, 0.20);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    background: var(--bg-primary);
    color: var(--text-main);
    transition: border-color 0.25s;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; }

.form-group.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.form-group.checkbox-group input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-group.checkbox-group label { text-transform: none; font-size: 0.8rem; font-weight: 400; letter-spacing: 0; }

.error-message { display: none; font-size: 0.78rem; color: #c0392b; margin-top: 3px; }
.form-group.has-error .error-message { display: block; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: #c0392b; }

.success-message-banner {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), hsl(38, 65%, 58%));
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.success-message-banner h3 { font-size: 1.5rem; margin-bottom: 8px; }
.success-message-banner p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.contact-divider { border: none; border-top: 1px solid rgba(188, 143, 71, 0.12); margin: 24px 0 18px; }
.direct-text-title { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }

.direct-links { display: flex; flex-direction: column; gap: 12px; }
.direct-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.25s;
}
.direct-link-item:hover { color: var(--gold); }
.direct-link-item span { text-decoration: underline; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer { background: #2A1F1C; color: rgba(255,255,255,0.65); }

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 44px;
    padding: 60px 0 44px;
}

.footer-brand .logo-text {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-style: normal;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}
.footer-brand .logo-highlight { color: var(--gold); font-style: italic; }
.footer-tagline { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }

.footer-links h4,
.footer-contact-info h4 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--gold); }

.footer-contact-info p { font-size: 0.85rem; margin-bottom: 6px; }
.footer-contact-info a { color: rgba(255,255,255,0.6); }
.footer-contact-info a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 24px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* ==========================================================================
   WHATSAPP FLOATING BTN
   ========================================================================== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 800;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.40);
    transition: var(--transition);
}
.whatsapp-floating-btn:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

.whatsapp-floating-icon { width: 28px; height: 28px; fill: white; }

.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: var(--text-main);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.whatsapp-floating-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 52px;
        text-align: center;
    }
    .hero-visual { justify-content: center; }
    .hero-content { max-width: 600px; margin: 0 auto; }
    .hero-description { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }

    .benefits-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; }

    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-visual { max-width: 400px; margin: 0 auto; }

    .booking-contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }

    .pricing-cta-card {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .pricing-cta-action { justify-content: center; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 640px) {
    :root { --header-height: 62px; }
    section { padding: 72px 0; }

    .hero-title { font-size: 2.4rem; }
    .hero-img { width: 280px; height: 340px; }
    .badge-1 { left: -12px; }
    .badge-2 { right: -12px; }

    /* Mobile nav */
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: 0;
        width: 75vw; max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 24px rgba(60,40,20,0.12);
        padding: 80px 28px 28px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 900;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu ul { flex-direction: column; gap: 4px; }
    .nav-link { font-size: 0.9rem; padding: 12px 0; }

    .footer-container { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .booking-card, .contact-card { padding: 28px 20px; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NUEVAS SECCIONES: PAQUETES & PARA AV
   ========================================================================== */

/* Colores Adicionales - Armonía Cálida Mediterránea (Marrón & Beige) */
:root {
    --rose-empolvado: #D4A5A5;
    --rose-oscuro:    #A85A62;
    --arena:          #C9B99A;
    --arena-oscuro:   #A8926E;
    --arena-claro:    #EDE3D5;
    --blanco-roto:    #FAF7F2;
    --gris-oscuro:    #352522; /* Espresso / Marrón chocolate profundo en vez de gris oscuro */
    --gris-medio:     #8C7C75; /* Taupe / Marrón suave en vez de gris medio */
}

/* Tipografía de cuerpo específica para las nuevas tarjetas */
.packages-section, .para-av-section {
    --font-body-alt: 'Raleway', sans-serif;
}

.packages-section {
    background: var(--bg-primary);
}

/* Áreas de trabajo */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.area-card {
    border-radius: 8px;
    padding: 24px;
    color: var(--white);
    box-shadow: var(--sh-sm);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
}

.area-card .area-tag {
    font-family: var(--font-body-alt);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
    opacity: 0.9;
}

.area-card .area-result {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.area-card .area-desc {
    font-family: var(--font-body-alt);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Variaciones de color en tarjetas */
.card-rose-emp { background-color: var(--rose-empolvado); }
.card-sand-dk  { background-color: var(--arena-oscuro); }
.card-rose-dk  { background-color: var(--rose-oscuro); }
.card-grey-dk  { background-color: var(--gris-oscuro); }

.areas-note, .packages-note {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
    color: var(--text-muted);
    margin-top: 24px;
}

/* Los tres paquetes */
.packages-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.package-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    border-radius: 8px;
    padding: 32px;
    align-items: center;
    box-shadow: var(--sh-sm);
    transition: var(--transition);
}

.package-row:hover {
    transform: scale(1.01);
    box-shadow: var(--sh-md);
}

.pack-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pack-name {
    font-family: var(--font-body-alt);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.pack-price {
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1;
}

.pack-period {
    font-size: 1rem;
    font-weight: 300;
}

.pack-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pack-result {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.3;
}

.pack-desc {
    font-family: var(--font-body-alt);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Variaciones de paquetes */
.pack-rose-emp {
    background-color: var(--rose-empolvado);
    color: var(--white);
}
.pack-rose-emp .pack-price, .pack-rose-emp .pack-result {
    color: var(--white);
}

.pack-sand {
    background-color: var(--arena);
    color: var(--gris-oscuro);
}
.pack-sand .pack-price, .pack-sand .pack-result {
    color: var(--gris-oscuro);
}

.pack-grey-dk {
    background-color: var(--gris-oscuro);
    color: var(--white);
}
.pack-grey-dk .pack-price, .pack-grey-dk .pack-result {
    color: var(--white);
}

/* SECCIÓN PARA AV */
.para-av-section {
    background: var(--white);
    padding: 0 0 96px;
}

.para-av-intro {
    background-color: var(--arena-claro);
    padding: 80px 0;
    margin-bottom: 64px;
}

.para-av-subtitle {
    font-family: var(--font-body-alt);
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.para-av-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.av-card {
    position: relative;
    border-radius: 8px;
    box-shadow: var(--sh-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.av-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
}

.card-left {
    background-color: var(--blanco-roto);
    border-top: 3px solid var(--rose-empolvado);
}

.card-right {
    background-color: var(--gris-oscuro);
}

.av-card-badge-top {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--rose-oscuro);
    color: var(--white);
    font-family: var(--font-body-alt);
    font-size: 0.68rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 10;
}

.av-card-content {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.av-badge-category {
    align-self: flex-start;
    font-family: var(--font-body-alt);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--white);
    margin-bottom: 20px;
}

.bg-rose-emp { background-color: var(--rose-empolvado); }
.bg-sand-dk  { background-color: var(--arena-oscuro); }

.av-card-title {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.av-card-subtitle {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 18px;
}

.text-arena { color: var(--arena); }

.av-card-desc {
    font-family: var(--font-body-alt);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.text-muted-light {
    color: rgba(255, 255, 255, 0.7);
}

.av-card-list {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.av-card-list li {
    font-family: var(--font-body-alt);
    font-weight: 300;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.av-card-list .check-icon {
    font-weight: bold;
}

.list-rose .check-icon { color: var(--rose-empolvado); }
.list-arena .check-icon { color: var(--arena); }

.av-price-box {
    margin-top: auto;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.av-price {
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text-main);
}

.av-price-note {
    font-family: var(--font-body-alt);
    font-size: 0.75rem;
    color: var(--text-light);
}

.av-soon-text {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--arena);
}

.para-av-footer-note {
    background-color: var(--arena-claro);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

.para-av-footer-note p {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0;
}

/* Ajustes responsivos para las nuevas secciones */
@media (max-width: 992px) {
    .package-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .para-av-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .av-card-badge-top {
        right: 16px;
    }
}

@media (max-width: 640px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .area-card {
        padding: 20px;
    }
    .package-row {
        padding: 24px;
    }
    .av-card-content {
        padding: 32px 20px;
    }
}

/* ==========================================================================
   BOTÓN ROSADO — "Quiero saber cuál es el mío"
   ========================================================================== */
.btn-rosado {
    background: linear-gradient(135deg, var(--rose-empolvado), var(--rose-oscuro));
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.35);
}
.btn-rosado:hover {
    box-shadow: 0 8px 28px rgba(212, 165, 165, 0.5);
}

/* ==========================================================================
   CONTACTO DIRECTO (sin formulario) — debajo del calendario
   ========================================================================== */
.booking-contact-single {
    display: block;
    max-width: 640px;
    margin: 0 auto;
}
.contact-direct-info-standalone {
    margin-top: 8px;
}
.contact-direct-info-standalone .direct-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}
.contact-direct-info-standalone .direct-links .btn-whatsapp-secondary,
.contact-direct-info-standalone .direct-links .direct-link-item {
    flex: 1 1 220px;
    justify-content: center;
}
@media (max-width: 640px) {
    .contact-direct-info-standalone .direct-links {
        flex-direction: column;
    }
}

/* ==========================================================================
   MENÚ MÓVIL — FONDO OSCURO
   ========================================================================== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(31, 24, 22, 0.45);
    z-index: 890;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   POPUP: ¿Quieres ser Asistente Virtual?
   ========================================================================== */
.av-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 24, 22, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.av-popup-overlay.is-visible { display: flex; opacity: 1; }

.av-popup-box {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    max-width: 420px;
    width: 100%;
    padding: 40px 32px 32px;
    position: relative;
    text-align: center;
    box-shadow: var(--sh-lg);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.25s ease;
}
.av-popup-overlay.is-visible .av-popup-box { transform: translateY(0) scale(1); }

.av-popup-close {
    position: absolute;
    top: 12px; right: 14px;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
}
.av-popup-badge {
    display: inline-block;
    background: var(--rose-empolvado);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.av-popup-title {
    font-family: var(--font-title);
    font-size: 1.7rem;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.25;
}
.av-popup-title em { color: var(--rose-oscuro); font-style: italic; }
.av-popup-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.6;
}
.av-popup-cta {
    display: inline-block;
    background: var(--rose-empolvado);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}
.av-popup-cta:hover { background: var(--rose-oscuro); color: var(--white); }
.av-popup-dismiss {
    display: block;
    margin: 14px auto 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   CALENDLY — evita desbordes en pantallas estrechas
   ========================================================================== */
.calendly-wrapper { width: 100%; overflow: hidden; }
.calendly-inline-widget { width: 100% !important; }

/* ==========================================================================
   RESPONSIVE — REFUERZO MÓVIL PEQUEÑO (≤480px)
   ========================================================================== */
@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .hero-img { width: 100%; max-width: 240px; height: 300px; }
    .section-title { font-size: 1.7rem; }
    .av-popup-box { padding: 32px 22px 24px; }
    .av-popup-title { font-size: 1.4rem; }
    .package-row, .area-card, .av-card-content { padding: 20px; }
    .pricing-cta-card { padding: 32px 24px; }
    .calendly-inline-widget { min-width: 0 !important; height: 640px !important; }
}

