/* =========================================
   DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
    --bg-dark: #000000;
    --bg-accent: #0a0a0a;
    --text-white: #ffffff;
    --text-cyan: #00bcd4;
    --text-red: #ff3d00;
    --primary-cyan: #00acc1;
    --secondary-gold: #a3a517;
    /* Olive/Gold from the image */

    /* Tipografías */
    --font-logo: 'Signika', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-main: var(--font-body);

    /* Escala de titulares (rem) — ajusta una vez, aplica a h1–h6 */
    --fs-h1: clamp(2rem, 4vw + 1rem, 3.5rem);
    --fs-h2: clamp(1.5rem, 2.5vw + 0.75rem, 2.5rem);
    --fs-h3: clamp(1.25rem, 1.5vw + 0.85rem, 1.8rem);
    --fs-h4: 1.35rem;
    --fs-h5: 1.15rem;
    --fs-h6: 1rem;
    --fw-heading-default: 700;
    --lh-heading: 1.2;
    --lh-heading-tight: 1.1;
    --lh-body: 1.6;

    /* Logo: tamaño de toda la línea (we. grow ADS) */
    --logo-size: clamp(2rem, 5vw, 3.25rem);
    /* Ajuste fino del punto respecto al centro óptico (negativo = sube un poco) */
    --logo-dot-nudge: -0.08em;

    /* Bloque izquierdo (.info-box): sube sobre el hero (equivale al efecto de “padding-top” negativo) */
    --info-box-overlap: clamp(-3.5rem, -6vw, -1.75rem);
    /* Velo negro sobre toda la sección invisibilidad (0–1) */
    --invisibilidad-overlay-alpha: 0.52;
    /* Encuadre del bg (gráfico/monedas hacia la derecha) */
    --invisibilidad-bg-position: 68% center;
    /* Columnas de la sección: izquierda / derecha (40% / 60% → 2fr 3fr) */
    --invisibilidad-grid-cols: minmax(0, 2fr) minmax(0, 3fr);

    /*
     * Metodología — tamaños y líneas (todo en un solo sitio)
     * .outer-ring: borde discontinuo que GIRA (animation rotateRing)
     * --metodologia-ring-spin-duration: más segundos = giro más lento
     */
    --metodologia-outer-size: 144px;
    --metodologia-inner-size: 98px;
    --metodologia-dashed-stroke: 3px;
    --metodologia-ring-spin-duration: 20s;
    --metodologia-timeline-stroke: 4px;
    --metodologia-vertical-width: 3px;
    --metodologia-vertical-height: 50px;
    --metodologia-dot-size: 14px;

    /* Escala compartida: caja invisibilidad + botones CTA (legible en móvil) */
    --inbox-line: clamp(0.95rem, 3.4vw, 1.22rem);
    --inbox-lead: clamp(1.05rem, 3.8vw, 1.35rem);
    --inbox-highlight: clamp(1.2rem, 4.6vw, 1.85rem);
    --cta-one-line: clamp(0.66rem, 2.2vw + 0.44rem, 1.8rem);
}

/* =========================================
   BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: var(--lh-body);
    overflow-x: hidden;
}

/* =========================================
   TIPOGRAFÍA: ESTRUCTURA h1–h6
   Signika para titulares; Poppins solo en cuerpo (.subtitle, párrafos, botones heredan body)
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-heading-default);
    line-height: var(--lh-heading);
    margin: 0;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

h5 {
    font-size: var(--fs-h5);
}

h6 {
    font-size: var(--fs-h6);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.italic {
    font-style: italic;
}

.italic-light {
    font-style: italic;
    font-weight: 300;
    font-size: 40px;
}

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

.text-red {
    color: var(--text-red);
    font-weight: 800;
}

/* =========================================
   LAYOUT & BACKGROUND
   ========================================= */
.main-wrapper {
    position: relative;
    min-height: 100vh;
    padding-bottom: 0;
}

.bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.15;
}

.bar-chart {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, var(--primary-cyan), transparent);
    width: 40px;
}

.bg-bar-1 {
    height: 20%;
    left: 10%;
}

.bg-bar-2 {
    height: 35%;
    left: 15%;
}

.bg-bar-3 {
    height: 25%;
    left: 20%;
}

.bg-bar-4 {
    height: 45%;
    left: 25%;
}

.bg-bar-5 {
    height: 30%;
    left: 30%;
}

/* =========================================
   HEADER / HERO
   ========================================= */
.logo-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

/* Logo de marca: solo Signika — tamaño global con --logo-size */
.logo-container {
    display: flex;
    align-items: center;
    font-family: var(--font-logo);
    font-size: var(--logo-size);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.4));
}

.logo-slogan {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.82);
    border-left: 2px solid rgba(0, 188, 212, 0.85);
    padding-left: 0.55rem;
}

.logo-white {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLogo 0.8s forwards;
}

/* Punto centrado en altura respecto a «we» (ajusta --logo-dot-nudge si hace falta) */
.logo-we-text {
    display: inline-block;
}

.logo-dot {
    display: inline-block;
    line-height: 1;
    font-size: 1em;
    transform: translateY(var(--logo-dot-nudge, -0.08em));
}

.logo-cyan {
    color: var(--text-cyan);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLogo 0.8s 0.2s forwards;
}

.logo-ads {
    font-family: var(--font-logo);
    font-size: 0.4em;
    font-weight: 600;
    margin-left: 0.35em;
    opacity: 0;
    color: #fff;
    animation: fadeInLogo 1s 1s forwards;
    letter-spacing: 0.18em;
    align-self: center;
    line-height: 1;
}

@keyframes slideInLogo {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    width: 100%;
    min-height: clamp(26rem, 78vh, 48rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    background-color: #000;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Evita que el h1 centrado suba bajo el logo (position absolute + z-index alto) */
    padding-top: max(
        clamp(7.5rem, 20vw, 10.5rem),
        calc(env(safe-area-inset-top, 0px) + clamp(6.75rem, 18vw, 9.75rem))
    );
    padding-bottom: clamp(1.5rem, 5vh, 3rem);
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
}

.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(14px, 3.5vw, 40px) 0;
    padding-top: max(
        clamp(14px, 3.5vw, 40px),
        env(safe-area-inset-top, 0px)
    );
    z-index: 5;
}

.hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
    max-width: 100%;
}

/* =========================================
   INVISIBILIDAD SECTION
   ========================================= */
.invisibilidad-section {
    margin-top: 0;
    padding: 48px 0 100px;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #050505;
    overflow: visible;
    min-height: clamp(380px, 52vh, 640px);
}

/* Imagen de fondo: cubre toda la sección (ancho completo) */
.invisibilidad-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.invisibilidad-bg-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--invisibilidad-bg-position);
    display: block;
}

.invisibilidad-section-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgb(0 0 0 / var(--invisibilidad-overlay-alpha));
    pointer-events: none;
}

.invisibilidad-section > .container {
    position: relative;
    z-index: 2;
}

.main-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-style: italic;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: var(--lh-heading-tight);
    text-transform: none;
}

.light-line {
    font-weight: 300;
    display: block;
}

.bold-line {
    font-weight: 800;
    display: block;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.2;
    padding: 20px 0;
}

.hero-kicker {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    max-width: 36rem;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.5;
}

.content-grid {
    display: grid;
    grid-template-columns: var(--invisibilidad-grid-cols);
    gap: 40px;
    align-items: stretch;
    text-align: left;
}

/* LEFT SIDE: Info Box — se monta sobre el hero; legible sobre el bg + velo */
.info-box {
    border: 2px solid rgba(255, 255, 255, 0.95);
    padding: 60px 40px 40px;
    border-radius: 12px;
    position: relative;
    z-index: 3;
    background: rgb(0 0 0 / 0.42);
    backdrop-filter: blur(6px);
    align-self: start;
    margin-top: var(--info-box-overlap);
}

/* ... LEFT SIDE: Info Box ... */
.icon-header {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
}

.main-icon {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--text-cyan);
    border: 3px solid black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    border: 2px solid white;
}

.info-text {
    text-align: left;
    text-align-last: left;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
}

.impact-text {
    font-size: var(--inbox-lead);
    line-height: 1.38;
    margin-bottom: clamp(1rem, 3vw, 1.75rem);
    color: white;
}

.impact-text strong {
    font-size: var(--inbox-highlight);
    font-weight: 900;
    line-height: 1.15;
}

.detail-text {
    font-size: var(--inbox-line);
    line-height: 1.52;
    color: white;
    opacity: 0.95;
}

.detail-text strong {
    font-size: clamp(1.02rem, 3.5vw, 1.2rem);
    font-weight: 800;
}

/* RIGHT SIDE: CTA ancho sobre el fondo común de la sección */
.cta-column {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 0.5rem 0;
    min-height: 0;
}

.btn-vender-mas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00a8c1;
    color: var(--text-white);
    padding: 0;
    border-radius: 12px;
    border: 2px solid #fff;
    text-decoration: none;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38), 0 0 24px rgba(0, 188, 212, 0.22);
    text-align: center;
    width: auto;
    max-width: min(100%, calc(100vw - 2rem));
    box-sizing: border-box;
}

.cta-column .btn-vender-mas {
    width: auto;
    min-width: 0;
}

.btn-inner-border {
    padding: clamp(12px, 2.6vw, 20px) clamp(14px, 4vw, 52px);
    border-radius: inherit;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    font-family: var(--font-heading);
    font-size: var(--cta-one-line);
    line-height: 1.12;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-vender-mas:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.42), 0 0 28px rgba(0, 188, 212, 0.3);
    filter: brightness(1.06);
}

.btn-text-row-1 {
    font-size: 0.92em;
    font-weight: 600;
    font-style: normal;
    line-height: 1.1;
    margin: 0;
}

.btn-text-row-2 {
    font-size: 1em;
    font-weight: 700;
    font-style: normal;
    line-height: 1.1;
    margin: 0;
}

.btn-text-row-2 strong {
    font-weight: 900;
}

.btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    color: var(--text-white);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-cyan {
    background: #00bcd4;
    font-size: 1.4rem;
    line-height: 1.1;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.btn-cyan-outline {
    background: transparent;
    color: var(--text-cyan);
    border: 2px solid var(--text-cyan);
    font-size: 1.25rem;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
}

.btn-cyan-outline:hover {
    background: rgba(0, 188, 212, 0.12);
    transform: scale(1.05);
}

/* =========================================
   METODOLOGIA SECTION
   ========================================= */
.metodologia-section {
    padding: 100px 0;
    text-align: center;
    background: #000;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: var(--lh-heading);
    margin-bottom: 80px;
    text-transform: uppercase;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 50px;
}

/* Horizontal Connector Line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: calc(var(--metodologia-outer-size) / 2);
    left: 20px;
    right: 20px;
    height: var(--metodologia-timeline-stroke);
    border-top: var(--metodologia-timeline-stroke) dotted rgba(255, 255, 255, 0.4);
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    width: 18%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Visual Components */
.step-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.outer-ring {
    width: var(--metodologia-outer-size);
    height: var(--metodologia-outer-size);
    border: var(--metodologia-dashed-stroke) dashed rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    animation: rotateRing var(--metodologia-ring-spin-duration) linear infinite;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
}

/* V, N, E: anillo blanco → hover cyan */
.step-item:hover .outer-ring {
    border-color: var(--text-cyan);
    box-shadow: 0 0 0 1px rgba(0, 188, 212, 0.35);
    transform: scale(1.1);
}

/* E, D: anillo animado en color (cyan) por defecto → hover blanco */
.step-item:has(.white-bg) .outer-ring {
    border-color: var(--text-cyan);
    box-shadow: 0 0 0 1px rgba(0, 188, 212, 0.3);
}

.step-item:has(.white-bg):hover .outer-ring {
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.step-circle {
    font-family: var(--font-heading);
    width: var(--metodologia-inner-size);
    height: var(--metodologia-inner-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.85rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    animation: counterRotate var(--metodologia-ring-spin-duration) linear infinite;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* V, N, E: círculo cyan + letra blanca | hover: invertido (blanco + letra cyan) */
.cyan-bg {
    background: var(--text-cyan);
    color: #fff;
}

.step-item:hover .step-circle.cyan-bg {
    background: #fff;
    color: var(--text-cyan);
    box-shadow: 0 0 24px rgba(0, 188, 212, 0.45);
}

/* E, D: círculo blanco + letra negra | hover: invertido respecto a cyan (cyan + letra blanca) */
.white-bg {
    background: #fff;
    color: #000;
}

.black-text {
    color: #000;
}

.step-item:hover .step-circle.white-bg {
    background: var(--text-cyan);
    color: #fff;
}

.step-item:hover .step-circle.white-bg.black-text {
    color: #fff;
}

.vertical-line {
    width: var(--metodologia-vertical-width);
    height: var(--metodologia-vertical-height);
    border-left: var(--metodologia-vertical-width) dotted rgba(255, 255, 255, 0.6);
    margin: 5px 0;
    transition: border-left-color 0.35s ease;
}

.step-item:hover .vertical-line {
    border-left-color: var(--text-cyan);
}

.small-dot {
    width: var(--metodologia-dot-size);
    height: var(--metodologia-dot-size);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.step-item:hover .small-dot {
    background: var(--text-cyan);
    box-shadow: 0 0 14px rgba(0, 188, 212, 0.65);
}

/* Content Styling */
.step-content {
    text-align: center;
}

.step-name {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.step-desc {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 400;
}

.step-desc .cyan-text {
    font-weight: 800;
}

/* Animations */
@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }
    .timeline-container::before {
        display: none;
    }
    .step-item {
        width: 100%;
    }
}

/* =========================================
   IDEAL CLIENTE + OFERTA
   ========================================= */
.ideal-section {
    padding: 80px 0 90px;
    background: var(--bg-accent);
    text-align: left;
}

.section-title--left {
    text-align: left;
    margin-bottom: 1rem;
}

.ideal-intro {
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 46rem;
    margin: 0 0 1.5rem;
}

.offer-line {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.55;
    color: var(--text-white);
    padding: 1.2rem 1.3rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 188, 212, 0.35);
    border-left: 4px solid var(--text-cyan);
    background: linear-gradient(180deg, rgb(0 0 0 / 0.7) 0%, rgb(0 0 0 / 0.45) 100%);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.offer-line strong {
    color: var(--text-cyan);
    font-weight: 700;
}

.ideal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem 2.5rem;
    align-items: start;
}

.ideal-col {
    position: relative;
    padding: 1.45rem 1.35rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 188, 212, 0.26);
    background: linear-gradient(180deg, rgb(0 0 0 / 0.68) 0%, rgb(0 0 0 / 0.4) 100%);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.ideal-col:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.85);
    box-shadow: 0 18px 30px rgba(0, 188, 212, 0.16);
}

.ideal-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ideal-col--yes .ideal-subtitle {
    color: var(--text-cyan);
}

.ideal-col--no .ideal-subtitle {
    color: rgba(255, 255, 255, 0.82);
}

.ideal-list {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    padding-left: 1.25rem;
    margin: 0;
}

.ideal-list li {
    margin-bottom: 0.75rem;
}

.ideal-list li::marker {
    color: var(--text-cyan);
}

.ideal-list--muted {
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonios-section {
    padding: 90px 0;
    background: #000;
    text-align: center;
}

.section-lead {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 40rem;
    margin: -2rem auto 2.5rem;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.testimonio-card {
    position: relative;
    margin: 0;
    padding: 1.5rem 1.35rem;
    background: linear-gradient(180deg, rgb(0 0 0 / 0.7) 0%, rgb(0 0 0 / 0.45) 100%);
    border: 1px solid rgba(0, 188, 212, 0.35);
    border-radius: 16px;
    min-height: 100%;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.testimonio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.85);
    box-shadow: 0 18px 30px rgba(0, 188, 212, 0.16);
}

.testimonio-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1rem;
    font-style: italic;
}

.testimonio-meta {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-cyan);
}

.testimonio-footer {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.testimonio-stars {
    display: inline-flex;
    gap: 0.2rem;
    color: #fbbc05;
    font-size: 0.82rem;
    line-height: 1;
}

.testimonios-cta-wrap {
    margin-top: 2rem;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-google-review i {
    font-size: 1.05rem;
}

/* =========================================
   PROCESO (3 PASOS)
   ========================================= */
.proceso-section {
    padding: 90px 0;
    background: var(--bg-accent);
    text-align: center;
}

.proceso-intro {
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 44rem;
    margin: -2rem auto 2.4rem;
}

.proceso-steps {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    text-align: left;
    counter-reset: none;
}

.proceso-step {
    position: relative;
    padding: 1.7rem 1.35rem 1.4rem;
    background: linear-gradient(180deg, rgb(0 0 0 / 0.7) 0%, rgb(0 0 0 / 0.45) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 188, 212, 0.35);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.proceso-step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.85);
    box-shadow: 0 18px 30px rgba(0, 188, 212, 0.16);
}

.proceso-step:not(:last-child)::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(0, 188, 212, 0.75);
    position: absolute;
    right: -1.1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #0b0b0b;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 188, 212, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.proceso-num {
    position: absolute;
    top: -0.8rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: var(--text-cyan);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(0, 188, 212, 0.35);
}

.proceso-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 188, 212, 0.45);
    background: rgb(0 188 212 / 0.1);
    color: var(--text-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0.45rem 0 0.95rem;
}

.proceso-chip {
    display: inline-block;
    margin: 0 0 0.75rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #001417;
    background: rgba(0, 188, 212, 0.92);
    padding: 0.34rem 0.58rem;
    border-radius: 999px;
}

.proceso-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.proceso-desc {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.proceso-cta-wrap {
    margin-top: 0.5rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
    padding: 80px 0 100px;
    background: #000;
    text-align: left;
}

.section-title--faq {
    text-align: center;
}

.faq-list {
    max-width: 46rem;
    margin: 0 auto;
    display: grid;
    gap: 0.95rem;
}

.faq-item {
    background: linear-gradient(180deg, rgb(0 0 0 / 0.7) 0%, rgb(0 0 0 / 0.45) 100%);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 14px;
    padding: 0.1rem 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 212, 0.85);
    box-shadow: 0 18px 30px rgba(0, 188, 212, 0.16);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    padding: 1rem 1rem 1rem 1.05rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-side {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.faq-hint {
    display: none;
}

.faq-toggle-icon {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 188, 212, 0.55);
    position: relative;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--text-cyan);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-toggle-icon::before {
    width: 0.62rem;
    height: 2px;
}

.faq-toggle-icon::after {
    width: 2px;
    height: 0.62rem;
}

.faq-item[open] .faq-question {
    color: var(--text-cyan);
}

.faq-item[open] .faq-hint {
    color: rgba(255, 255, 255, 0.75);
}

.faq-item[open] .faq-toggle-icon {
    background: rgba(0, 188, 212, 0.12);
}

.faq-item[open] .faq-toggle-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
}

.faq-answer {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1.05rem;
    padding: 0 1.05rem;
}

/* =========================================
   SITE FOOTER + STICKY WHATSAPP
   ========================================= */
.site-footer {
    padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom, 0));
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

.site-footer-copy,
.site-footer-credit {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.site-footer-nav {
    flex: 1 1 100%;
    order: 3;
}

@media (min-width: 700px) {
    .site-footer-nav {
        flex: 0 1 auto;
        order: 0;
    }

    .site-footer-inner {
        text-align: left;
    }
}

.site-footer-link {
    color: var(--text-cyan);
    font-size: 0.9rem;
    text-decoration: none;
}

.site-footer-link:hover {
    text-decoration: underline;
}

.site-footer-credit a {
    color: rgba(255, 255, 255, 0.65);
}

.sticky-wa-cta {
    display: inline-flex;
    position: fixed;
    right: 1.1rem;
    bottom: 8.6rem;
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(180deg, rgb(7 94 84 / 0.34) 0%, rgb(18 140 126 / 0.22) 100%);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-wa-cta i {
    font-size: 1.05rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, rgb(255 255 255 / 0.32) 0%, rgb(255 255 255 / 0.14) 100%);
    border: 1px solid rgb(255 255 255 / 0.35);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.28), 0 8px 16px rgb(0 0 0 / 0.2);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.sticky-wa-cta:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.85);
    box-shadow: 0 18px 30px rgba(0, 188, 212, 0.16);
    filter: brightness(1.08);
}

/* =========================================
   BOTTOM BANNER
   ========================================= */
.bottom-banner {
    background: #006064;
    padding: clamp(12px, 3vw, 22px) clamp(12px, 4vw, 24px);
    text-align: center;
    margin-bottom: clamp(24px, 5vw, 40px);
}

.bottom-banner__text {
    margin: 0 auto;
    max-width: min(40rem, 100%);
    padding-inline: clamp(4px, 2vw, 10px);
    text-wrap: balance;
}

/* Misma jerarquía tipográfica que la caja invisibilidad (variables --inbox-*) */
.bottom-banner .bottom-banner__phrase.italic-light {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: var(--inbox-lead);
    line-height: 1.32;
    color: var(--text-white);
}

.bottom-banner .bottom-banner__phrase strong {
    font-weight: 900;
    font-size: var(--inbox-highlight);
    letter-spacing: 0.02em;
    font-style: italic;
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta-section {
    padding-bottom: 100px;
}

/* CTA final: misma escala tipográfica que .btn-vender-mas (--cta-one-line) */
.btn.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-gold);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--cta-one-line);
    line-height: 1.12;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: clamp(12px, 2.6vw, 20px) clamp(14px, 4vw, 52px);
    border: 2px solid #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: min(100%, calc(100vw - 2rem));
    box-sizing: border-box;
}

.btn.btn-gold strong {
    font-weight: 900;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 900px) {
    body {
        padding-bottom: 4.75rem;
    }

    .sticky-wa-cta {
        display: flex;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        border: none;
        padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0));
    }

    .sticky-wa-cta i {
        width: 1.85rem;
        height: 1.85rem;
    }

    .hero-section {
        padding-top: max(
            clamp(8.25rem, 22vw, 11rem),
            calc(env(safe-area-inset-top, 0px) + clamp(7.25rem, 19vw, 10rem))
        );
    }

    .hero-header .container {
        display: flex;
        justify-content: center;
    }

    .logo-block {
        align-items: center;
    }

    .hero-bg-img {
        object-fit: cover;
        object-position: 58% center;
        min-height: 100%;
    }

    .main-title {
        font-size: clamp(1.2rem, 5.2vw + 0.35rem, 2rem);
        line-height: 1.18;
    }

    .subtitle {
        font-size: clamp(1rem, 4vw + 0.25rem, 1.65rem);
        padding: 12px 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .cta-column {
        min-height: auto;
        padding-bottom: 0.35rem;
    }

    :root {
        --inbox-line: clamp(0.88rem, 3.5vw, 1.12rem);
        --inbox-lead: clamp(0.98rem, 3.8vw, 1.28rem);
        --inbox-highlight: clamp(1.08rem, 4.8vw, 1.62rem);
        --cta-one-line: clamp(0.62rem, 2.05vw + 0.42rem, 1.75rem);
    }

    .info-box {
        padding: clamp(44px, 10vw, 52px) clamp(16px, 4vw, 24px) clamp(24px, 5vw, 32px);
    }

    .ideal-grid {
        grid-template-columns: 1fr;
    }

    .section-title--left {
        text-align: center;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .proceso-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .proceso-step:not(:last-child)::after {
        content: "\f063";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -1.35rem;
        transform: translateX(-50%);
    }

    .timeline-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .timeline-line {
        display: none;
    }

    .faq-question {
        align-items: flex-start;
    }

    .faq-question-side {
        margin-top: 0.1rem;
    }

    .faq-hint {
        display: none;
    }

    .step-item {
        width: 100%;
        max-width: 300px;
    }

}

/* Pantallas muy estrechas (p. ej. 320px): más aire y titular más compacto */
@media (max-width: 400px) {
    .hero-section {
        padding-top: max(
            clamp(8.75rem, 28vw, 10.5rem),
            calc(env(safe-area-inset-top, 0px) + clamp(7.5rem, 24vw, 9.5rem))
        );
    }

    .main-title {
        font-size: clamp(1.05rem, 6vw + 0.2rem, 1.45rem);
        line-height: 1.22;
    }

    .main-title .bold-line {
        word-break: break-word;
        hyphens: manual;
    }

    :root {
        --logo-size: clamp(1.55rem, 11vw, 2.15rem);
    }
}