/* ═══════════════════════════════════════════════════════════════
   arreglalo.cl — Apple Ultra-Premium Design System
   Aesthetic: Apple SF Minimalist, Monochrome, High-CRO
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties (Apple Design Tokens) ─── */
:root {
    /* Monochromatic Apple Palette */
    --color-apple-black: #1d1d1f;
    --color-apple-grey: #86868b;
    --color-apple-light-grey: #f5f5f7;
    --color-apple-bg: #fbfbfd;
    --color-apple-card-bg: #ffffff;
    --color-apple-border: #f5f5f7;
    --color-apple-border-subtle: rgba(0, 0, 0, 0.05);

    /* Text Colors */
    --color-text: #1d1d1f;
    --color-text-secondary: #86868b;
    --color-text-muted: #a1a1a6;

    /* EXCLUSIVE CTA Color — WhatsApp Green ONLY */
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1EBE5A;
    --color-whatsapp-dark: #128C48;

    /* Typography */
    --font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.75rem;
    --font-size-5xl: 3.5rem;

    /* Spacing — Generous Apple Breathing Room */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6.5rem;
    --space-32: 8rem;

    /* Borders & Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;  /* 20px */
    --radius-2xl: 1.5rem;  /* 24px */
    --radius-full: 9999px;

    /* Soft Apple Shadows & Borders */
    --shadow-apple-card: 0 4px 30px rgba(0, 0, 0, 0.02);
    --shadow-apple-card-hover: 0 12px 40px rgba(0, 0, 0, 0.06);
    --shadow-apple-float: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 150ms var(--ease-out);
    --transition-base: 250ms var(--ease-out);
    --transition-slow: 400ms var(--ease-out);

    /* Layout */
    --navbar-height: 64px;
    --container-max: 1120px;
    --container-padding: 1.5rem;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--navbar-height) + 1rem);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-secondary);
    background-color: var(--color-apple-bg);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ─── Typography & Section Headers ─── */
.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-apple-black);
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--color-apple-grey);
    line-height: 1.6;
    max-width: 620px;
    margin-top: var(--space-3);
}

.text-accent {
    color: var(--color-apple-black);
}

/* ─── Buttons (WhatsApp Exclusive Green, Apple Monochrome Rest) ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: var(--font-size-base);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn--whatsapp {
    background-color: var(--color-whatsapp);
    color: white;
    font-size: var(--font-size-sm);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
}

.btn--hero-cta {
    background-color: var(--color-whatsapp);
    color: white;
    font-size: var(--font-size-lg);
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    letter-spacing: -0.01em;
}

.btn--hero-cta:hover {
    background-color: var(--color-whatsapp-hover);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn--submit {
    background: var(--color-whatsapp);
    color: white;
    font-size: var(--font-size-lg);
    padding: 1.1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    width: 100%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
    opacity: 0.4;
    pointer-events: none;
    transition: all var(--transition-base);
}

.btn--submit.active {
    opacity: 1;
    pointer-events: auto;
}

.btn--submit.active:hover {
    background: var(--color-whatsapp-hover);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.btn--whatsapp-outline {
    background: transparent;
    color: var(--color-whatsapp-dark);
    border: 1.5px solid var(--color-whatsapp);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn--whatsapp-outline:hover {
    background-color: var(--color-whatsapp);
    color: white;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   1. CABECERA CON EFECTO CRISTAL (NAVBAR)
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: var(--navbar-height);
    transition: background var(--transition-base);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    z-index: 10;
}

.navbar__logo-icon {
    flex-shrink: 0;
}

.navbar__logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-apple-black);
    letter-spacing: -0.03em;
}

.navbar__logo-dot {
    color: var(--color-apple-grey);
}

.navbar__nav {
    display: none;
    align-items: center;
    gap: var(--space-8);
}

.navbar__link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-apple-grey);
    transition: color var(--transition-fast);
}

.navbar__link:hover {
    color: var(--color-apple-black);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: 10;
}

.navbar__cta {
    display: none;
}

/* Hamburger */
.navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--radius-md);
}

.navbar__hamburger span {
    display: block;
    height: 1.5px;
    background: var(--color-apple-black);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.navbar__mobile-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-6) var(--container-padding) var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-slow);
    z-index: 49;
}

.navbar__mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.navbar__mobile-link {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--color-apple-black);
    border-radius: var(--radius-lg);
}

.navbar__mobile-cta {
    margin-top: var(--space-4);
    text-align: center;
    font-size: var(--font-size-base);
    padding: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════════
   2. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    padding-top: var(--space-20);
    padding-bottom: var(--space-24);
    background: var(--color-apple-bg);
    position: relative;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-apple-black);
    background: var(--color-apple-light-grey);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    width: fit-content;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-apple-black);
    border-radius: 50%;
}

.hero__title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--color-apple-black);
}

.hero__title-accent {
    color: var(--color-apple-black);
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-apple-grey);
    max-width: 540px;
}

.hero__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.hero__cta-wrapper .btn--hero-cta {
    width: fit-content;
}

.hero__micro-trust {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    padding-left: var(--space-2);
}

.hero__visual {
    width: 100%;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-apple-card);
    border: 1px solid var(--color-apple-border);
}

.hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero__image-badge {
    position: absolute;
    bottom: var(--space-5);
    left: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-apple-black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   3. BARRA DE VALOR (TRUST BAR) — MONOCHROME APPLE ICONS
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
    padding: var(--space-16) 0;
    background: var(--color-apple-card-bg);
    border-top: 1px solid var(--color-apple-border);
    border-bottom: 1px solid var(--color-apple-border);
}

.trust-bar__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    text-align: left;
}

.trust-bar__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-apple-light-grey);
    border-radius: var(--radius-lg);
    color: var(--color-apple-black);
}

.trust-bar__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-bar__text strong {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-apple-black);
    letter-spacing: -0.01em;
}

.trust-bar__text span {
    font-size: var(--font-size-xs);
    color: var(--color-apple-grey);
}

.trust-bar__divider {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   4. ASISTENTE DE CONTACTO RÁPIDO — PREMIUM CARDS
   ═══════════════════════════════════════════════════════════════ */
.assistant {
    padding: var(--space-24) 0;
    background: var(--color-apple-bg);
}

.assistant__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.assistant__header .section-subtitle {
    margin: var(--space-3) auto 0;
}

.assistant__card {
    max-width: 660px;
    margin: 0 auto;
    background: var(--color-apple-card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-apple-card);
    border: 1px solid var(--color-apple-border);
}

.assistant__step {
    margin-bottom: var(--space-10);
}

.assistant__step:last-of-type {
    margin-bottom: var(--space-8);
}

.assistant__step-label {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--color-apple-black);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.assistant__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-apple-black);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Platform Cards */
.assistant__platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.assistant__platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--color-apple-border);
    background: var(--color-apple-card-bg);
    transition: all var(--transition-base);
    color: var(--color-apple-black);
}

.assistant__platform-card:hover {
    border-color: var(--color-apple-black);
    background: var(--color-apple-light-grey);
}

.assistant__platform-card.selected {
    border-color: var(--color-apple-black);
    background: var(--color-apple-light-grey);
    color: var(--color-apple-black);
    box-shadow: 0 0 0 1px var(--color-apple-black);
}

.assistant__platform-name {
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--color-apple-black);
}

.assistant__platform-desc {
    font-size: var(--font-size-xs);
    color: var(--color-apple-grey);
}

/* Problem Buttons */
.assistant__problems {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.assistant__problem-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-apple-border);
    background: var(--color-apple-card-bg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-apple-black);
    transition: all var(--transition-base);
    text-align: left;
    width: 100%;
}

.assistant__problem-btn:hover {
    border-color: var(--color-apple-black);
    background: var(--color-apple-light-grey);
}

.assistant__problem-btn.selected {
    border-color: var(--color-apple-black);
    background: var(--color-apple-light-grey);
    color: var(--color-apple-black);
    font-weight: 600;
    box-shadow: 0 0 0 1px var(--color-apple-black);
}

.assistant__problem-btn svg {
    flex-shrink: 0;
    color: var(--color-apple-black);
}

/* Submit Summary */
.assistant__submit-wrapper {
    margin-bottom: var(--space-6);
}

.assistant__submit-summary {
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--color-apple-grey);
    margin-top: var(--space-3);
    min-height: 20px;
}

/* Footnote */
.assistant__footnote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xs);
    color: var(--color-apple-grey);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-apple-border);
    line-height: 1.6;
}

.assistant__footnote svg {
    flex-shrink: 0;
    color: var(--color-apple-black);
}

.assistant__serial-link {
    color: var(--color-apple-black);
    font-weight: 600;
    font-size: var(--font-size-xs);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: opacity var(--transition-fast);
}

.assistant__serial-link:hover {
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   MODAL (APPLE MINIMALIST)
   ═══════════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--color-apple-card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--color-apple-border);
    transform: translateY(12px) scale(0.98);
    transition: transform var(--transition-base);
}

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

.modal__close {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-apple-light-grey);
    color: var(--color-apple-black);
    transition: all var(--transition-fast);
}

.modal__close:hover {
    background: #e5e5e7;
}

.modal__title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-apple-black);
    margin-bottom: var(--space-6);
    padding-right: var(--space-8);
    letter-spacing: -0.02em;
}

.modal__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.modal__method {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.modal__method-number {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-apple-light-grey);
    color: var(--color-apple-black);
    border-radius: 50%;
    font-size: var(--font-size-xs);
    font-weight: 700;
}

.modal__method strong {
    font-size: var(--font-size-sm);
    color: var(--color-apple-black);
    display: block;
    margin-bottom: 2px;
}

.modal__method p {
    font-size: var(--font-size-sm);
    color: var(--color-apple-grey);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   5. NUESTROS SERVICIOS — MONOCHROME APPLE CARDS
   ═══════════════════════════════════════════════════════════════ */
.services {
    padding: var(--space-24) 0;
    background: var(--color-apple-card-bg);
    border-top: 1px solid var(--color-apple-border);
}

.services__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.services__header .section-subtitle {
    margin: var(--space-3) auto 0;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.service-card {
    position: relative;
    padding: var(--space-8);
    background: var(--color-apple-card-bg);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-apple-border);
    box-shadow: var(--shadow-apple-card);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--color-apple-black);
    box-shadow: var(--shadow-apple-card-hover);
    transform: translateY(-3px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-5);
    background: var(--color-apple-light-grey);
    color: var(--color-apple-black);
}

.service-card__title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
    color: var(--color-apple-black);
    letter-spacing: -0.02em;
}

.service-card__desc {
    font-size: var(--font-size-base);
    color: var(--color-apple-grey);
    line-height: 1.65;
}

.service-card__tag {
    display: inline-flex;
    margin-top: var(--space-4);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-apple-black);
    background: var(--color-apple-light-grey);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════
   6. POR QUÉ CONFIAR EN NOSOTROS (TRUST SECTION)
   ═══════════════════════════════════════════════════════════════ */
.trust {
    padding: var(--space-24) 0;
    background: var(--color-apple-bg);
}

.trust__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.trust__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.trust__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.trust__text p {
    font-size: var(--font-size-lg);
    color: var(--color-apple-grey);
    line-height: 1.7;
}

.trust__commitment {
    color: var(--color-apple-black) !important;
    font-size: var(--font-size-xl) !important;
    font-weight: 700 !important;
}

.trust__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.trust__value {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-apple-black);
}

.trust__value svg {
    flex-shrink: 0;
    color: var(--color-apple-black);
}

.trust__visual {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-apple-card);
    border: 1px solid var(--color-apple-border);
}

.trust__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   7. PREGUNTAS FRECUENTES (FAQ)
   ═══════════════════════════════════════════════════════════════ */
.faq {
    padding: var(--space-24) 0;
    background: var(--color-apple-card-bg);
    border-top: 1px solid var(--color-apple-border);
}

.faq__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.faq__header .section-subtitle {
    margin: var(--space-3) auto 0;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq__item {
    background: var(--color-apple-card-bg);
    border: 1px solid var(--color-apple-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq__item:hover {
    border-color: var(--color-apple-black);
}

.faq__item[open] {
    border-color: var(--color-apple-black);
    box-shadow: var(--shadow-apple-card);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-apple-black);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    display: none;
    content: '';
}

.faq__chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-apple-black);
}

.faq__item[open] .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 var(--space-6) var(--space-6);
}

.faq__answer p {
    font-size: var(--font-size-base);
    color: var(--color-apple-grey);
    line-height: 1.65;
}

.faq__cta {
    text-align: center;
    margin-top: var(--space-12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.faq__cta p {
    font-size: var(--font-size-base);
    color: var(--color-apple-grey);
}

/* ═══════════════════════════════════════════════════════════════
   8. PIE DE PÁGINA (FOOTER)
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: #111111;
    color: #86868b;
    padding-top: var(--space-20);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-16);
}

.footer__logo {
    margin-bottom: var(--space-4);
}

.footer__logo .navbar__logo-text {
    color: white;
}

.footer__tagline {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: #86868b;
}

.footer__heading {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-sm);
    color: #86868b;
}

.footer__list li svg {
    flex-shrink: 0;
    color: #86868b;
}

.footer__list a {
    color: #86868b;
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: white;
}

.footer__bottom {
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
    font-size: var(--font-size-xs);
    color: #666666;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON (EXCLUSIVE GREEN)
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-3);
}

.whatsapp-float__tooltip {
    background: var(--color-apple-black);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 500;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 220px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    pointer-events: none;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.whatsapp-float__tooltip.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 22px;
    width: 10px;
    height: 10px;
    background: var(--color-apple-black);
    transform: rotate(45deg);
}

.whatsapp-float__tooltip-close {
    font-size: 16px;
    color: #86868b;
    line-height: 1;
    flex-shrink: 0;
    padding: 2px;
}

.whatsapp-float__tooltip-close:hover {
    color: white;
}

.whatsapp-float__btn {
    width: 58px;
    height: 58px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
}

.whatsapp-float__btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL & ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET & DESKTOP
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    :root {
        --container-padding: 2.5rem;
    }

    .section-title {
        font-size: var(--font-size-4xl);
    }

    .hero {
        padding-top: var(--space-24);
        padding-bottom: var(--space-32);
    }

    .hero__title {
        font-size: var(--font-size-5xl);
    }

    .trust-bar__grid {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-12);
    }

    .trust-bar__divider {
        display: block;
        width: 1px;
        height: 36px;
        background: var(--color-apple-border);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }

    .trust__inner {
        flex-direction: row;
        align-items: center;
        gap: var(--space-16);
    }

    .trust__content {
        flex: 1;
    }

    .trust__visual {
        flex: 1;
    }

    .footer__inner {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .navbar__nav {
        display: flex;
    }

    .navbar__cta {
        display: inline-flex;
    }

    .navbar__hamburger {
        display: none;
    }

    .hero__inner {
        flex-direction: row;
        align-items: center;
        gap: var(--space-16);
    }

    .hero__content {
        flex: 1;
        max-width: 560px;
    }

    .hero__visual {
        flex: 1;
    }
}

body.menu-open {
    overflow: hidden;
}
