/* ============ DESIGN TOKENS ============ */
:root {
    /* Paleta basada en logo de Prevenia + pedido de Sabri */
    --navy-900: #1E1B4B;
    --navy-800: #2D2A6E;
    --navy-700: #3A3795;
    --navy-600: #4C1D95;
    --purple-deep: #4C1D95;

    --sky-50: #F0F9FF;
    --sky-100: #E0F2FE;
    --sky-200: #BAE6FD;
    --sky-400: #38BDF8;
    --sky-500: #0EA5E9;
    --sky-600: #0284C7;

    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    --gray-900: #0F172A;

    --white: #FFFFFF;

    /* Tipografía */
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body: 'Manrope', system-ui, sans-serif;

    /* Spacing */
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(30, 27, 75, 0.05);
    --shadow-md: 0 4px 16px rgba(30, 27, 75, 0.08);
    --shadow-lg: 0 12px 40px rgba(30, 27, 75, 0.12);
    --shadow-xl: 0 24px 60px rgba(30, 27, 75, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

/* ============ NAV ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
    border-bottom: 1px solid var(--gray-200);
    background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    line-height: 1;
}

.nav-logo-tag {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--sky-600);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--navy-700);
}

.nav-links a.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-900);
    color: #FFFFFF !important;
    padding: 11px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.nav-links a.nav-cta:hover {
    background: var(--navy-700);
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-cta svg {
    color: #FFFFFF;
}

.nav-mobile-toggle {
    display: none;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, var(--sky-100) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, var(--gray-100) 0%, transparent 60%),
        var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--gray-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.25;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--sky-200);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-700);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-tagline::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--navy-900);
    margin-bottom: 28px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--navy-600);
}

.hero h1 .highlight {
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 4px;
    height: 14px;
    background: var(--sky-200);
    z-index: -1;
    border-radius: 2px;
}

.hero-sub {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15.5px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--navy-900);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(30, 27, 75, 0.25);
}

.btn-primary:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 27, 75, 0.35);
}

.btn-primary svg {
    transition: transform 0.25s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    color: var(--navy-900);
    border: 1.5px solid var(--gray-300);
    background: var(--white);
}

.btn-secondary:hover {
    border-color: var(--navy-700);
    color: var(--navy-700);
}

.hero-trust {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-700);
    font-weight: 500;
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--sky-600);
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin-left: auto;
}

.hero-photo-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--sky-100);
    box-shadow: var(--shadow-xl);
}

.hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-photo-bg {
    position: absolute;
    inset: -16px -16px 16px 16px;
    background: linear-gradient(135deg, var(--sky-200), var(--sky-100));
    border-radius: var(--radius-xl);
    z-index: -1;
}

.hero-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 600;
    z-index: 2;
}

/* Badge 1: abajo a la derecha — sobre el cuerpo, no la cara */
.hero-badge-1 {
    bottom: 24px;
    right: -32px;
    color: var(--navy-900);
    max-width: 240px;
}

.hero-badge-1 .dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-400), var(--sky-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.hero-badge-1 .dot svg {
    width: 20px;
    height: 20px;
}

.hero-badge-1 .small {
    display: block;
    font-weight: 500;
    color: var(--gray-500);
    font-size: 12px;
    margin-top: 2px;
}

/* Badge 2: arriba a la izquierda — fuera de la foto, no tapa cara */
.hero-badge-2 {
    top: 36px;
    left: -44px;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    padding: 16px 22px;
    line-height: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.hero-badge-2 small {
    display: block;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============ SECTION GENERIC ============ */
section {
    padding: 100px 0;
    position: relative;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sky-600);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    margin-bottom: 20px;
    max-width: 780px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--navy-600);
}

.section-sub {
    font-size: 17.5px;
    color: var(--gray-700);
    max-width: 680px;
    line-height: 1.6;
}

.section-head {
    margin-bottom: 56px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head.center .section-title,
.section-head.center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ============ DOLOR ============ */
.dolor {
    background: var(--gray-50);
    position: relative;
}

.dolor::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gray-300));
}

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

.dolor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.25s ease;
}

.dolor-card:hover {
    border-color: var(--sky-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dolor-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--sky-100);
    color: var(--navy-700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dolor-icon svg {
    width: 22px;
    height: 22px;
}

.dolor-text {
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--gray-900);
    font-weight: 500;
}

.dolor-cta {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--sky-400);
}

.dolor-cta p {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 500;
    color: var(--navy-900);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.dolor-cta p em {
    font-style: italic;
    color: var(--navy-600);
}

/* ============ PROPUESTA DE VALOR ============ */
.propuesta {
    position: relative;
    background: var(--white);
}

.propuesta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.propuesta-img {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.propuesta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.propuesta-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(30, 27, 75, 0.35) 100%);
}

.propuesta-quote {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: white;
    z-index: 2;
}

.propuesta-quote-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.propuesta-quote-name {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    font-weight: 600;
}

/* Mockup conceptual de gestión digital */
.propuesta-visual {
    position: relative;
    padding: 30px 30px 60px 30px;
}

.propuesta-mockup {
    position: relative;
}

.mockup-window {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    position: relative;
    z-index: 2;
}

.mockup-window-header {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mockup-url {
    margin-left: 12px;
    font-size: 11.5px;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mockup-body {
    padding: 16px 18px;
}

.mockup-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr;
    gap: 12px;
    align-items: center;
    padding: 10px 4px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 12.5px;
}

.mockup-row:last-of-type {
    border-bottom: none;
}

.mockup-row-head {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    padding-bottom: 6px;
}

.mockup-emp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy-900);
}

.mockup-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.badge-ok {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: #DCFCE7;
    color: #15803D;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
}

.mockup-amount {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy-900);
    text-align: right;
    font-size: 13px;
}

.mockup-status {
    margin-top: 12px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(76, 29, 149, 0.06));
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--sky-200);
}

.mockup-status-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-400), var(--navy-700));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-status-icon svg {
    width: 20px;
    height: 20px;
}

.mockup-status strong {
    display: block;
    font-size: 13px;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.mockup-status span {
    font-size: 11.5px;
    color: var(--gray-700);
}

.mockup-deco {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.mockup-deco-1 {
    bottom: -28px;
    left: -22px;
    max-width: 200px;
}

.mockup-deco-1 .eyebrow {
    font-size: 10px;
    margin-bottom: 4px;
    color: var(--sky-600);
    display: block;
}

.mockup-deco-1 strong {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--navy-900);
    font-weight: 600;
    display: block;
    line-height: 1.15;
    margin-bottom: 4px;
}

.mockup-deco-sub {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.35;
}

.mockup-deco-2 {
    top: -16px;
    right: -16px;
    text-align: center;
    padding: 12px 18px;
}

.mockup-deco-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.mockup-deco-2 span {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    font-weight: 700;
}

.propuesta-content h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    margin-bottom: 24px;
}

.propuesta-content h2 em {
    font-style: italic;
    color: var(--navy-600);
}

.propuesta-content p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 18px;
}

.propuesta-content strong {
    color: var(--navy-900);
    font-weight: 600;
}

.propuesta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.propuesta-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -0.02em;
}

.propuesta-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 6px;
    line-height: 1.4;
}

/* ============ DIFERENCIADORES ============ */
.dif {
    background: var(--navy-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.dif::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-deep) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.dif::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--sky-600) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.dif .container {
    position: relative;
    z-index: 1;
}

.dif .eyebrow {
    color: var(--sky-200);
}

.dif .section-title {
    color: white;
}

.dif .section-title em {
    color: var(--sky-200);
}

.dif-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dif-card {
    background: var(--navy-900);
    padding: 36px;
    transition: background 0.3s ease;
    position: relative;
}

.dif-card:hover {
    background: var(--navy-800);
}

.dif-card-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--sky-200);
    margin-bottom: 20px;
    font-weight: 500;
}

.dif-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 14px;
    color: white;
    letter-spacing: -0.01em;
}

.dif-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.dif-card .example {
    display: block;
    margin-top: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--sky-400);
    border-radius: 4px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.dif-card .example strong {
    color: white;
    font-style: normal;
}

/* ============ SERVICIOS ============ */
.servicios {
    background: var(--gray-50);
}

.servicio-star {
    background: linear-gradient(135deg, var(--white), var(--sky-50));
    border: 1px solid var(--sky-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.servicio-star::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--sky-100) 0%, transparent 70%);
    pointer-events: none;
}

.servicio-star-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-900);
    color: white;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    position: relative;
}

.servicio-star-tag svg {
    width: 14px;
    height: 14px;
}

.servicio-star h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.15;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    position: relative;
}

.servicio-star>p {
    font-size: 17px;
    color: var(--gray-700);
    margin-bottom: 32px;
    position: relative;
}

.servicio-star-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
    position: relative;
}

.servicio-star-grid li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--gray-900);
    line-height: 1.5;
}

.servicio-star-grid li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--sky-600);
    margin-top: 2px;
}

.servicio-star-asesor {
    margin-top: 28px;
    padding: 24px;
    background: rgba(14, 165, 233, 0.06);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--sky-500);
    position: relative;
}

.servicio-star-asesor strong {
    display: block;
    color: var(--navy-900);
    font-size: 15.5px;
    margin-bottom: 6px;
}

.servicio-star-asesor p {
    font-size: 14.5px;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.55;
}

.servicio-star-note {
    margin-top: 28px;
    text-align: center;
    font-style: italic;
    color: var(--navy-700);
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.otros-servicios-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    color: var(--navy-900);
    margin: 56px 0 24px;
    letter-spacing: -0.01em;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.servicio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
}

.servicio-card:hover {
    border-color: var(--navy-700);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.servicio-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--sky-100);
    color: var(--navy-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.servicio-card-icon svg {
    width: 22px;
    height: 22px;
}

.servicio-card h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.servicio-card p {
    font-size: 14.5px;
    color: var(--gray-700);
    line-height: 1.55;
}

.servicio-card .extra-cost {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============ PROCESO ============ */
.proceso {
    background: var(--white);
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.proceso-grid::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(to right, var(--sky-200), var(--sky-400), var(--sky-200));
    z-index: 0;
}

.proceso-step {
    background: var(--white);
    text-align: center;
    padding: 28px 24px;
    position: relative;
    z-index: 1;
}

.proceso-step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--navy-900);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 8px var(--white);
}

.proceso-step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.proceso-step p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.proceso-cta {
    text-align: center;
    margin-top: 56px;
}

/* ============ ABOUT (Sobre Sabri) ============ */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-img-wrap {
    position: sticky;
    top: 100px;
}

.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-xl);
    background: var(--sky-100);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-deco {
    position: absolute;
    inset: 24px -24px -24px 24px;
    border: 1.5px solid var(--navy-700);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-content .section-title {
    font-size: clamp(28px, 3.5vw, 40px);
}

.about-content p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 18px;
}

.about-content .lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 19px;
    color: var(--navy-700);
    line-height: 1.5;
    padding-left: 20px;
    border-left: 2px solid var(--sky-400);
    margin: 28px 0;
}

.about-final {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--navy-900);
    line-height: 1.4;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-sm);
}

/* ============ TESTIMONIOS ============ */
.testimonios {
    background: var(--white);
}

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

.testimonio-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
}

.testimonio-card:hover {
    background: var(--white);
    border-color: var(--sky-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.testimonio-quote-mark {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 1;
    color: var(--sky-200);
    font-weight: 600;
}

.testimonio-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonio-stars svg {
    width: 18px;
    height: 18px;
    color: #FBBF24;
    fill: #FBBF24;
}

.testimonio-text {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--gray-900);
    margin-bottom: 24px;
    font-weight: 500;
    position: relative;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonio-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-700), var(--purple-deep));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
}

.testimonio-author-name {
    font-weight: 700;
    color: var(--navy-900);
    font-size: 14.5px;
}

.testimonio-author-role {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ============ FAQ ============ */
.faq {
    background: var(--gray-50);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--sky-200);
}

.faq-item[open] {
    border-color: var(--navy-700);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.4;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--navy-700);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
    background: var(--navy-900);
    transform: rotate(180deg);
}

.faq-item[open] .faq-icon svg {
    color: white;
}

.faq-answer {
    padding: 0 28px 24px;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--gray-700);
}

/* ============ CTA FINAL ============ */
.cta-final {
    background: var(--navy-900);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, var(--purple-deep) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, var(--sky-600) 0%, transparent 50%);
    opacity: 0.4;
    pointer-events: none;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.cta-final .btn-primary {
    background: var(--white);
    color: var(--navy-900);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
    font-size: 16.5px;
    padding: 18px 32px;
}

.cta-final .btn-primary:hover {
    background: var(--sky-100);
    transform: translateY(-2px);
}

.cta-final-trust {
    margin-top: 28px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
}

.footer-brand-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--sky-200);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.footer-tagline {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 360px;
}

.footer h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 14.5px;
}

.footer ul li a:hover {
    color: var(--sky-200);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social:hover {
    background: var(--sky-500);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============ POPUP ============ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 460px;
    width: 100%;
    padding: 48px 40px 40px;
    position: relative;
    transform: scale(0.96) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xl);
}

.popup-overlay.active .popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: var(--gray-200);
    color: var(--navy-900);
}

.popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sky-400), var(--navy-700));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.popup-icon svg {
    width: 30px;
    height: 30px;
}

.popup h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    color: var(--navy-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.popup p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.55;
    margin-bottom: 24px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup-form input:focus {
    outline: none;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 4px rgba(76, 29, 149, 0.1);
}

.popup-form button {
    width: 100%;
    padding: 14px;
    background: var(--navy-900);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    margin-top: 6px;
}

.popup-form button:hover {
    background: var(--navy-700);
}

.popup-trust {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.25s ease;
    animation: pulseWA 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulseWA {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* ============ FADE IN ANIMATION ============ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ MOBILE ============ */
@media (max-width: 980px) {
    .nav-logo-name {
        font-size: 21px;
    }

    .nav-logo-tag {
        font-size: 9.5px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 24px;
        gap: 18px;
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        z-index: 101;
    }

    .nav-links.active a.nav-cta {
        width: fit-content;
    }

    .about-img-deco {
        inset: initial;
    }

    .nav-mobile-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        color: var(--navy-900);
    }

    .nav-mobile-toggle svg {
        width: 24px;
        height: 24px;
    }

    /* Hero */
    .hero {
        padding: 110px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 .highlight {
        white-space: normal;
    }

    .hero-visual {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-badge-2 {
        left: -8px;
        top: 16px;
        padding: 12px 16px;
        font-size: 22px;
    }

    .hero-badge-1 {
        right: -8px;
        bottom: 16px;
        max-width: 200px;
        padding: 12px 14px;
        font-size: 12.5px;
    }

    .hero-badge-1 .dot {
        width: 32px;
        height: 32px;
    }

    .hero-badge-1 .dot svg {
        width: 16px;
        height: 16px;
    }

    /* Sections */
    section {
        padding: 70px 0;
    }

    /* Dolor */
    .dolor-grid {
        grid-template-columns: 1fr;
    }

    .dolor-card[style*="grid-column"] {
        grid-column: auto !important;
    }

    /* Propuesta */
    .propuesta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .propuesta-img {
        max-width: 420px;
        margin: 0 auto;
    }

    .propuesta-visual {
        padding: 20px 0;
        max-width: 100%;
        margin: 0 auto;
    }

    .mockup-deco-1 {
        left: -8px;
        bottom: -20px;
        max-width: 180px;
        padding: 12px 14px;
    }

    .mockup-deco-2 {
        right: -4px;
        top: -12px;
        padding: 10px 14px;
    }

    .mockup-deco-num {
        font-size: 22px;
    }

    .propuesta-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .propuesta-stat-num {
        font-size: 28px;
    }

    /* Diferenciadores */
    .dif-grid {
        grid-template-columns: 1fr;
    }

    .dif-card[style*="grid-column"] {
        grid-column: auto !important;
    }

    /* Servicios */
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio-star {
        padding: 32px 24px;
    }

    .servicio-star-grid {
        grid-template-columns: 1fr;
    }

    /* Proceso */
    .proceso-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proceso-grid::before {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrap {
        position: static;
        max-width: 380px;
        margin: 0 auto;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 56px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero h1 .highlight::after {
        height: 10px;
        bottom: 2px;
    }

    .hero-sub {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-tagline {
        font-size: 12.5px;
        padding: 7px 14px;
        margin-bottom: 20px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        gap: 16px;
        margin-top: 32px;
    }

    .hero-trust-item {
        font-size: 12.5px;
    }

    .hero-visual {
        max-width: 100%;
    }

    .hero-badge-2 {
        left: 0;
        top: 12px;
        padding: 10px 14px;
        font-size: 20px;
    }

    .hero-badge-2 small {
        font-size: 9px;
    }

    .hero-badge-1 {
        right: 0;
        bottom: 12px;
        max-width: 180px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .hero-badge-1 .dot {
        width: 28px;
        height: 28px;
    }

    .hero-badge-1 .dot svg {
        width: 14px;
        height: 14px;
    }

    .hero-photo-bg {
        inset: -10px -10px 10px 10px;
    }

    /* Section generic */
    section {
        padding: 56px 0;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .section-sub {
        font-size: 15.5px;
    }

    .eyebrow {
        font-size: 12px;
        margin-bottom: 12px;
    }

    /* Dolor */
    .dolor-card {
        padding: 20px;
        gap: 14px;
    }

    .dolor-icon {
        width: 38px;
        height: 38px;
    }

    .dolor-icon svg {
        width: 18px;
        height: 18px;
    }

    .dolor-text {
        font-size: 14.5px;
    }

    .dolor-cta {
        padding: 24px 20px;
    }

    .dolor-cta p {
        font-size: 20px;
    }

    /* Propuesta */
    .propuesta-content h2 {
        font-size: 24px;
    }

    .propuesta-content p {
        font-size: 15px;
    }

    .propuesta-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .propuesta-stat-num {
        font-size: 24px;
    }

    .propuesta-stat-label {
        font-size: 11.5px;
    }

    /* Diferenciadores */
    .dif-card {
        padding: 24px 20px;
    }

    .dif-card h3 {
        font-size: 19px;
    }

    .dif-card p {
        font-size: 13.5px;
    }

    .dif-card .example {
        font-size: 12.5px;
        padding: 12px;
    }

    /* Servicios */
    .servicio-star {
        padding: 24px 18px;
    }

    .servicio-star h3 {
        font-size: 22px;
    }

    .servicio-star>p {
        font-size: 15px;
    }

    .servicio-star-grid li {
        font-size: 14px;
    }

    .servicio-star-asesor {
        padding: 18px;
    }

    .servicio-star-asesor strong {
        font-size: 14.5px;
    }

    .servicio-star-asesor p {
        font-size: 13.5px;
    }

    .servicio-card {
        padding: 22px 18px;
    }

    .servicio-card h4 {
        font-size: 17px;
    }

    .servicio-card p {
        font-size: 13.5px;
    }

    /* Proceso */
    .proceso-step {
        padding: 20px 16px;
    }

    .proceso-step-num {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .proceso-step h3 {
        font-size: 19px;
    }

    .proceso-step p {
        font-size: 14px;
    }

    .proceso-cta {
        margin-top: 36px;
    }

    /* About */
    .about-img-wrap {
        max-width: 100%;
    }

    .about-content .section-title {
        font-size: 24px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-content .lead {
        font-size: 17px;
        padding-left: 16px;
    }

    .about-final {
        padding: 20px;
        font-size: 17px;
    }

    /* Testimonios */
    .testimonio-card {
        padding: 24px 20px;
    }

    .testimonio-text {
        font-size: 15px;
    }

    .testimonio-quote-mark {
        font-size: 60px;
        top: 14px;
        right: 20px;
    }

    /* FAQ */
    .faq-item summary {
        padding: 18px 20px;
        font-size: 15px;
        gap: 16px;
    }

    .faq-answer {
        padding: 0 20px 20px;
        font-size: 14.5px;
    }

    /* CTA Final */
    .cta-final h2 {
        font-size: 28px;
    }

    .cta-final p {
        font-size: 16px;
    }

    .cta-final .btn-primary {
        font-size: 15px;
        padding: 16px 28px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-brand img {
        height: 40px;
    }

    .footer-brand-name {
        font-size: 22px;
    }

    .footer-tagline {
        font-size: 13.5px;
    }

    .footer h4 {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .footer ul li {
        font-size: 13.5px;
    }

    .footer-bottom {
        font-size: 12px;
        gap: 12px;
        padding-top: 24px;
    }

    /* Popup */
    .popup-overlay {
        padding: 16px;
    }

    .popup {
        padding: 32px 20px 24px;
        border-radius: var(--radius-lg);
    }

    .popup h3 {
        font-size: 21px;
    }

    .popup p {
        font-size: 14px;
    }

    .popup-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .popup-icon svg {
        width: 26px;
        height: 26px;
    }

    .popup-form input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .popup-form button {
        padding: 13px;
        font-size: 14px;
    }

    /* WhatsApp float */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}