/* ==========================================================================
   DENTAL SHINE — VARIANTE 1: BOUTIQUE ARCHITECTURAL LUXURY (ALTO CONTRASTE)
   Tipografía: Plus Jakarta Sans
   Colores: Negro #0A0A0C | Dorado #C9A227 | Beige Claro #EEE7E5 | 
            Blanco #FFFFFF | Verde Pasto #5B8C3E | Beige #D9CFC4 | Marrón #6B4F3A
   ========================================================================== */

@import url('../fonts/fonts.css');
@import url('prefijo-telefono.css');

:root {
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Paleta Oficial */
    --negro-fondo: #0A0A0C;
    --negro-fondo-alt: #121218;
    --negro-superficie: #181822;
    --negro-elevado: #20202E;
    
    --dorado: #C9A227;
    --dorado-claro: #E5C358;
    --dorado-hondo: #916E31;
    --dorado-soft: rgba(201, 162, 39, 0.14);
    --dorado-borde: rgba(201, 162, 39, 0.38);
    
    --beige-claro: #EEE7E5;
    --beige-superficie: #FFFFFF;
    --beige-medio: #D9CFC4;
    --blanco: #FFFFFF;
    
    --verde: #5B8C3E;
    --verde-luz: #6CA54A;
    --verde-glow: rgba(91, 140, 62, 0.35);
    
    --marron: #6B4F3A;
    --marron-suave: #8A684E;
    
    --texto-blanco: #FFFFFF;
    --texto-claro: #EDE7E3;
    --texto-suave: #A9AEB6;
    --texto-tenue: #7E848D;
    
    --texto-oscuro: #14141A;
    --texto-oscuro-suave: #5C5C68;
    
    --borde-dark: rgba(255, 255, 255, 0.1);
    --borde-dark-strong: rgba(255, 255, 255, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-pill: 9999px;
    
    --sombra-card-dark: 0 10px 30px rgba(0, 0, 0, 0.45);
    --sombra-card-light: 0 10px 30px rgba(20, 20, 26, 0.06);
    --sombra-dorada: 0 0 35px rgba(201, 162, 39, 0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-main);
    background-color: var(--negro-fondo);
    color: var(--texto-claro);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ── BOTONES CTA VERDE PASTO ── */
.btn-cta-shine {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--verde-luz) 0%, var(--verde) 100%);
    color: #FFFFFF;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 22px var(--verde-glow);
    transition: all 0.25s ease;
    text-align: center;
}

.btn-cta-shine:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #78b853 0%, var(--verde) 100%);
    box-shadow: 0 10px 30px rgba(91, 140, 62, 0.5);
}

.btn-cta-shine svg { width: 18px; height: 18px; stroke-width: 2.2; flex-shrink: 0; }

.badge-gold-v1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dorado-soft);
    border: 1px solid var(--dorado-borde);
    color: var(--dorado-claro);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.badge-gold-v1 svg { width: 15px; height: 15px; color: var(--dorado); flex-shrink: 0; }

.section-tag-v1 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--dorado);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.section-tag-v1 svg { width: 14px; height: 14px; }

.section-title-v1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--texto-blanco);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc-v1 {
    text-align: center;
    font-size: 1.05rem;
    color: var(--texto-suave);
    max-width: 620px;
    margin: 0 auto 48px;
    font-weight: 400;
}

/* ── HEADER SUPERIOR FINO Y SIMÉTRICO ── */
.site-header-v1 {
    padding: 8px 0;
    border-bottom: 1px solid var(--borde-dark);
    background: rgba(10, 10, 12, 0.96);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap-v1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.brand-logo-v1 img {
    height: 32px;
    width: auto;
    display: block;
}

.header-meta-v1 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-city-v1,
.btn-header-cta {
    height: 32px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 0.8rem;
    line-height: 1;
    border-radius: var(--radius-pill);
    box-sizing: border-box;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
}

.badge-city-v1 {
    background: var(--negro-superficie);
    border: 1px solid var(--borde-dark);
    color: var(--texto-claro);
    font-weight: 600;
}

.badge-city-v1 svg {
    width: 13px;
    height: 13px;
    color: var(--dorado-claro);
    flex-shrink: 0;
}

.btn-header-cta {
    background: linear-gradient(135deg, var(--verde-luz) 0%, var(--verde) 100%);
    color: #FFFFFF;
    font-weight: 700;
    border: none;
    box-shadow: 0 3px 12px rgba(91, 140, 62, 0.35);
    cursor: pointer;
}

.btn-header-cta:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #78b853 0%, var(--verde) 100%);
    box-shadow: 0 6px 18px rgba(91, 140, 62, 0.5);
}

.btn-header-cta svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.2;
    flex-shrink: 0;
}

/* ── SECCIONES 100VH ── */
.hero-v1,
.pricing-section-v1,
.benefits-section-beige-v1,
.roadmap-section-v1,
.stories-section-v1,
.form-section-beige-v1 {
    min-height: calc(100svh - 54px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
}

/* ── HERO ── */
.hero-v1 {
    position: relative;
    background: radial-gradient(circle at 85% 30%, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
}

.hero-grid-v1 {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 46px;
    align-items: center;
}

.hero-title-v1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 16px 0 16px;
    color: #FFFFFF;
}

.hero-title-v1 .highlight-gold {
    color: var(--dorado-claro);
}

.hero-subtitle-v1 {
    font-size: 1.12rem;
    color: var(--texto-claro);
    line-height: 1.6;
    margin-bottom: 26px;
}

.hero-checklist-v1 {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-bottom: 30px;
}

.hero-checklist-v1 li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(24, 24, 34, 0.85);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--borde-dark);
}

.check-pill-v1 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(91, 140, 62, 0.2);
    border: 1px solid var(--verde);
    color: var(--verde-luz);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-pill-v1 svg { width: 14px; height: 14px; stroke-width: 2.5; }

.check-txt-v1 {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.check-txt-v1 strong {
    font-size: 0.92rem;
    color: #FFFFFF;
    font-weight: 700;
}

.check-txt-v1 small {
    font-size: 0.78rem;
    color: var(--texto-suave);
    margin-top: 2px;
    font-weight: 500;
}

.hero-legal-note-v1 {
    font-size: 0.82rem;
    color: var(--texto-suave);
    margin-top: 14px;
    font-style: italic;
}

.hero-card-visual-v1 {
    background: linear-gradient(145deg, var(--negro-superficie) 0%, #101016 100%);
    border: 1.5px solid var(--dorado-borde);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    text-align: center;
    position: relative;
    box-shadow: var(--sombra-card-dark), var(--sombra-dorada);
    aspect-ratio: 1 / 1;
    width: 100%;
}

.hero-card-visual-v1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: inherit;
    transition: transform 0.4s ease;
}

.hero-card-visual-v1:hover img {
    transform: scale(1.02);
}

.hero-card-badge-v1 {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 12, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid var(--dorado);
    color: var(--dorado-claro);
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.hero-card-badge-v1 svg { width: 14px; height: 14px; color: var(--dorado); }

/* ── PRECIOS ── */
.pricing-section-v1 {
    background: var(--negro-fondo-alt);
    border-top: 1px solid var(--borde-dark);
}

.pricing-grid-v1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.price-card-v1 {
    background: var(--negro-superficie);
    border: 1px solid var(--borde-dark-strong);
    border-radius: var(--radius-lg);
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--sombra-card-dark);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card-v1:hover {
    transform: translateY(-6px);
    border-color: var(--dorado-borde);
}

.price-card-v1.featured {
    background: linear-gradient(180deg, #1C1C28 0%, #121218 100%);
    border: 2px solid #E5C358;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(201, 162, 39, 0.2);
}

.featured-ribbon-v1 {
    position: absolute;
    top: -13px;
    right: 20px;
    background: linear-gradient(135deg, #FFE894 0%, #D4A017 28%, #FFF5C0 50%, #9E7400 78%, #DFB024 100%);
    color: #151005;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.featured-ribbon-v1 svg {
    width: 12px;
    height: 12px;
    fill: #151005;
}

.price-icon-wrap-v1 {
    width: 68px;
    height: 68px;
    background: var(--dorado-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1.5px solid var(--dorado-borde);
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.price-icon-wrap-v1 img { width: 100%; height: 100%; object-fit: cover; display: block; }

.price-icon-wrap-dual-v1 {
    width: auto;
    height: 68px;
    display: inline-flex;
    gap: 8px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.price-icon-wrap-dual-v1 img {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--dorado-borde);
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.price-card-v1 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.price-amount-v1 {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--dorado-claro);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    white-space: nowrap;
    line-height: 1.15;
}

.price-card-v1.featured .price-amount-v1 {
    background: linear-gradient(135deg, #FFF6C7 0%, #F5D364 30%, #FFFFFF 55%, #DFB024 80%, #FFE585 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(217, 160, 24, 0.3));
    white-space: nowrap;
}

.price-eval-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dorado-claro);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--dorado-borde);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
    white-space: nowrap;
}

.price-eval-badge svg {
    width: 13px;
    height: 13px;
    color: var(--verde-luz);
    stroke-width: 2.5;
    flex-shrink: 0;
}

.price-desc-v1 {
    font-size: 0.92rem;
    color: var(--texto-suave);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ── BENEFICIOS BEIGE CLARO ── */
.benefits-section-beige-v1 {
    background-color: var(--beige-claro);
    color: var(--texto-oscuro);
    border-top: 1px solid var(--beige-medio);
    border-bottom: 1px solid var(--beige-medio);
}

.benefits-section-beige-v1 .section-title-v1 {
    color: var(--marron);
}

.benefits-section-beige-v1 .section-desc-v1 {
    color: var(--texto-oscuro-suave);
}

.benefits-grid-v1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.benefit-card-white-v1 {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: 26px 20px;
    border: 1px solid var(--beige-medio);
    box-shadow: var(--sombra-card-light);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-white-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(20, 20, 26, 0.1);
}

.benefit-card-img-v1 {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #FAF7F5;
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(217, 207, 196, 0.5);
}

.benefit-card-img-v1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.benefit-card-white-v1:hover .benefit-card-img-v1 img {
    transform: scale(1.04);
}

.benefit-card-white-v1 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--marron);
    margin-bottom: 8px;
}

.benefit-card-white-v1 p {
    font-size: 0.88rem;
    color: var(--texto-oscuro-suave);
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.benefit-tag-pill-v1 {
    align-self: flex-start;
    background: rgba(91, 140, 62, 0.14);
    color: var(--verde);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.benefit-tag-pill-v1 svg { width: 12px; height: 12px; }

/* ── PUENTE FACTUAL DE RITMO ── */
.roadmap-section-v1 {
    background: var(--negro-fondo);
}

.roadmap-timeline-v1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 40px;
}

.roadmap-step-v1 {
    background: var(--negro-superficie);
    border: 1px solid var(--borde-dark-strong);
    border-radius: var(--radius-lg);
    padding: 36px 26px;
    border-top: 3px solid var(--dorado);
    box-shadow: var(--sombra-card-dark);
}

.step-header-flex-v1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.step-num-v1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dorado);
    line-height: 1;
}

.step-icon-badge-v1 {
    width: 44px;
    height: 44px;
    background: var(--dorado-soft);
    border: 1px solid var(--dorado-borde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dorado-claro);
}

.step-icon-badge-v1 svg { width: 22px; height: 22px; stroke-width: 2; }

.roadmap-step-v1 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.roadmap-step-v1 p {
    font-size: 0.92rem;
    color: var(--texto-suave);
    line-height: 1.6;
}

/* ── SECCIÓN TESTIMONIOS (4 COLS DESKTOP / 2 COLS MÓVIL / GAP MÍNIMO) ── */
.stories-section-v1 {
    background: var(--negro-fondo-alt);
    border-top: 1px solid var(--borde-dark);
}

.stories-grid-v1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.story-item-v1 {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #14141C;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    display: flex;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-item-v1:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
    z-index: 5;
}

.story-item-v1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.story-video-wrap-v1 {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.story-video-wrap-v1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    background: #000;
}

.story-play-overlay-v1 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
}

.story-play-icon-v1 {
    width: 44px;
    height: 44px;
    background: rgba(201, 162, 39, 0.95);
    color: #0A0A0C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.6);
}

.story-play-icon-v1 svg {
    width: 20px;
    height: 20px;
    fill: #0A0A0C;
    margin-left: 2px;
}

.story-badge-top-v1 {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(10, 10, 12, 0.88);
    backdrop-filter: blur(6px);
    border: 1px solid var(--borde-dark);
    color: var(--dorado-claro);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    pointer-events: none;
}

.story-badge-top-v1 svg { width: 11px; height: 11px; }

/* ── FAQ ── */
.faq-section-v1 {
    padding: 80px 0;
    background: var(--negro-fondo);
    border-top: 1px solid var(--borde-dark);
}

.faq-list-v1 {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-v1 {
    background: var(--negro-superficie);
    border: 1px solid var(--borde-dark-strong);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item-v1:hover { border-color: var(--dorado-borde); }

.faq-trigger-v1 {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon-cross-v1 {
    width: 20px;
    height: 20px;
    color: var(--dorado);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-v1.active .faq-icon-cross-v1 { transform: rotate(45deg); }

.faq-body-v1 { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; }
.faq-item-v1.active .faq-body-v1 { max-height: 350px; }

.faq-content-v1 {
    padding: 0 24px 22px;
    color: var(--texto-claro);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ── FORMULARIO ── */
.form-section-beige-v1 {
    background: var(--beige-claro);
    color: var(--texto-oscuro);
    border-top: 1px solid var(--beige-medio);
}

.form-box-white-v1 {
    max-width: 600px;
    margin: 0 auto;
    background: var(--blanco);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    box-shadow: 0 18px 50px rgba(20, 20, 26, 0.08);
    border: 1px solid var(--beige-medio);
}

.form-box-white-v1 h2 {
    font-size: 1.9rem;
    font-weight: 800;
    text-align: center;
    color: var(--marron);
    margin-bottom: 8px;
    line-height: 1.2;
}

.form-box-white-v1 .form-sub-v1 {
    font-size: 0.95rem;
    color: var(--texto-oscuro-suave);
    text-align: center;
    margin-bottom: 28px;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--texto-oscuro);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--beige-medio);
    background: #FAF7F5;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--texto-oscuro);
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--dorado);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px var(--dorado-soft);
}

.form-consent {
    margin: 8px 0 24px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--texto-oscuro-suave);
    line-height: 1.5;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--verde);
}

.form-note-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.84rem;
    color: var(--texto-oscuro-suave);
    text-align: center;
}

.form-note-clean svg {
    width: 16px;
    height: 16px;
    color: var(--dorado);
    flex-shrink: 0;
}

/* ── VALIDACIÓN DE FORMULARIO: ERROR, VIBRACIÓN Y TOOLTIPS ── */
@keyframes fieldShakeAnim {
    0%, 100% { transform: translateX(0); }
    15%, 45%, 75% { transform: translateX(-6px); }
    30%, 60%, 90% { transform: translateX(6px); }
}

.shake-field {
    animation: fieldShakeAnim 0.4s ease-in-out !important;
}

.form-group input.has-error {
    border: 1.5px solid #E53935 !important;
    background-color: #FFF8F8 !important;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.18) !important;
}

.form-consent.has-error label {
    border: 1.5px solid #E53935 !important;
    background-color: #FFF5F5 !important;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.18) !important;
    transition: all 0.25s ease;
}

.field-tooltip-error {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #181412;
    color: #FFA4A4;
    border: 1px solid rgba(229, 57, 53, 0.45);
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
    position: relative;
    z-index: 5;
    animation: tooltipFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.field-tooltip-error::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 14px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #181412;
}

.field-tooltip-error svg {
    width: 15px;
    height: 15px;
    stroke: #FF5252;
    flex-shrink: 0;
}

@keyframes tooltipFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ── WIDGET WHATSAPP NINJA FLOTANTE ESTILO WORDPRESS ── */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999999;
    font-family: var(--font-main);
}

.whatsapp-float-btn {
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseNinja 2.5s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
    background-color: #1fad54;
}

.whatsapp-float-btn svg { width: 30px; height: 30px; fill: currentColor; }

.whatsapp-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 310px;
    background: #181822;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: bottom right;
    z-index: 10000000;
    pointer-events: none;
}

.whatsapp-box.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

@keyframes popupNinjaIn {
    from { opacity: 0; transform: translateY(12px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-header {
    background: #00762d;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.whatsapp-header-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-header-icon svg { width: 20px; height: 20px; fill: #fff; }

.whatsapp-title { font-weight: 700; font-size: 0.95rem; margin: 0; color: #fff; }
.whatsapp-subtitle { font-size: 0.8rem; margin: 2px 0 0; opacity: 0.9; color: #fff; }

.whatsapp-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.85;
}
.whatsapp-close:hover { opacity: 1; }

.whatsapp-body {
    padding: 12px;
    background: #101016;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1A1A26;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: #FFFFFF !important;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}
.whatsapp-option:last-child { margin-bottom: 0; }
.whatsapp-option:hover {
    border-color: #25D366;
    transform: translateY(-1px);
    background: #222234;
}

.whatsapp-option-icon {
    width: 34px;
    height: 34px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    flex-shrink: 0;
}

.whatsapp-option-icon svg { width: 18px; height: 18px; stroke-width: 2.2; }

.whatsapp-option-text span { display: block; font-weight: 600; font-size: 0.9rem; color: #FFFFFF; }
.whatsapp-option-text small { display: block; color: var(--texto-suave); font-size: 0.78rem; }

.whatsapp-footer {
    background: #181822;
    padding: 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.whatsapp-footer p {
    font-size: 0.75rem;
    color: var(--texto-suave);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.whatsapp-footer p svg { width: 14px; height: 14px; color: var(--dorado-claro); }


@keyframes pulseNinja {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── LIGHTBOX MODAL PARA EXPANDIR IMÁGENES AL HACER CLIC ── */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 7, 0.94);
    backdrop-filter: blur(10px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomInLight 0.25s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px var(--dorado-soft);
    border: 1.5px solid var(--dorado-borde);
}

.lightbox-close {
    position: absolute;
    top: -42px;
    right: 0;
    background: rgba(20, 20, 26, 0.85);
    border: 1px solid var(--borde-dark);
    color: #FFFFFF;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover {
    background: var(--dorado);
    color: #0A0A0C;
}

@keyframes zoomInLight {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ── FOOTER EXACTO DE LA AGENCIA ── */
.agency-footer-exact {
    background: #050507;
    color: #EDE7E3;
    padding: 44px 20px 36px;
    text-align: center;
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid var(--borde-dark);
}
.agency-footer-exact__inner { max-width: 720px; margin: 0 auto; }
.agency-footer-exact__logo { display: block; height: 48px; width: auto; margin: 0 auto 14px; max-width: 200px; object-fit: contain; }
.agency-footer-exact__name { color: #FFFFFF; margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.agency-footer-exact__address { margin: 0 0 4px; color: var(--texto-suave); }
.agency-footer-exact__locality { margin: 0 0 4px; color: var(--texto-suave); font-size: 13px; }
.agency-footer-exact__copyright { margin: 16px 0 6px; color: var(--texto-tenue); font-size: 12px; }
.agency-footer-exact__developer { margin: 0; font-size: 12px; color: var(--texto-suave); }
.agency-footer-exact__developer a {
    color: var(--dorado);
    text-decoration: none;
    border-bottom: 1px dashed rgba(201, 162, 39, 0.4);
    padding-bottom: 1px;
    font-weight: 600;
}
.agency-footer-exact__developer a:hover { color: var(--dorado-claro); border-bottom-color: var(--dorado-claro); }

/* ── MEDIA QUERIES TABLET & MÓVIL ── */
@media (max-width: 900px) {
    .hero-grid-v1 { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .hero-title-v1 { font-size: 2.3rem; }
    .pricing-grid-v1 { grid-template-columns: 1fr; }
    .benefits-grid-v1 { grid-template-columns: repeat(2, 1fr); }
    .roadmap-timeline-v1 { grid-template-columns: 1fr; }
    .stories-grid-v1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

@media (max-width: 540px) {
    .site-header-v1 { padding: 6px 0; }
    .brand-logo-v1 img { height: 26px; }
    .badge-city-v1,
    .btn-header-cta {
        height: 28px;
        padding: 0 10px;
        font-size: 0.74rem;
        gap: 4px;
    }
    .badge-city-v1 svg,
    .btn-header-cta svg {
        width: 11px;
        height: 11px;
    }
    
    .hero-v1 {
        min-height: calc(100svh - 44px);
        padding: 12px 0 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-content-v1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .badge-gold-v1 {
        font-size: 0.72rem;
        padding: 4px 12px;
        margin-bottom: 6px;
    }
    .hero-title-v1 {
        font-size: 1.65rem;
        margin: 6px 0 6px;
        line-height: 1.15;
    }
    .hero-subtitle-v1 {
        font-size: 0.88rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .hero-checklist-v1 {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-bottom: 14px;
        width: 100%;
    }
    .hero-checklist-v1 li {
        padding: 6px 8px;
        text-align: left;
        border-radius: var(--radius-sm);
        gap: 8px;
    }
    .check-pill-v1 {
        width: 22px;
        height: 22px;
    }
    .check-pill-v1 svg {
        width: 12px;
        height: 12px;
    }
    .check-txt-v1 strong {
        font-size: 0.8rem;
    }
    .check-txt-v1 small {
        font-size: 0.7rem;
    }
    .btn-cta-shine {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.92rem;
    }
    .hero-legal-note-v1 {
        font-size: 0.72rem;
        margin-top: 6px;
        line-height: 1.3;
    }
    .hero-card-visual-v1 {
        display: block;
        width: 100%;
        max-width: 380px;
        margin: 18px auto 6px;
        aspect-ratio: 1 / 1;
        border-radius: var(--radius-lg);
    }
    .hero-card-badge-v1 {
        font-size: 0.74rem;
        padding: 5px 14px;
        bottom: 10px;
    }
    
    .benefits-grid-v1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 24px;
    }
    .benefit-card-white-v1 {
        padding: 14px 12px;
    }
    .benefit-card-img-v1 {
        height: 96px;
        margin-bottom: 10px;
    }
    .benefit-card-white-v1 h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    .benefit-card-white-v1 p {
        font-size: 0.78rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .benefit-tag-pill-v1 {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .stories-grid-v1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .form-group input {
        padding: 12px 12px !important;
        font-size: 0.92rem !important;
    }
    .form-group label {
        font-size: 0.82rem !important;
    }
    .form-box-white-v1 {
        padding: 26px 16px !important;
    }
    
    
    .whatsapp-widget {
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 310px;
    background: #181822;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: bottom right;
    z-index: 10000000;
    pointer-events: none;
}

}
