:root {
    --naranja: #f97316;
    --naranja-dark: #ea580c;
    --naranja-soft: #fff7ed;
    --naranja-light: #ffedd5;

    --azul: #1d4ed8;
    --azul-dark: #1e3a8a;

    --dark: #1e293b;
    --darker: #0f172a;
    --slate: #94a3b8;

    --white: #ffffff;
    --gray-light: #f1f5f9;
    --border: #e2e8f0;

    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;

    --t-fast: 0.2s ease;
    --t-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --sh-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    --sh-md: 0 10px 20px -3px rgba(0, 0, 0, 0.1);
    --sh-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.12);
    --sh-naranja: 0 8px 20px -3px rgba(249, 115, 22, 0.4);
}

/* ===== UTILS ===== */
.hidden {
    display: none !important;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-b);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-h);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

textarea {
    resize: vertical;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.center {
    text-align: center;
}

.section-head {
    margin-bottom: 3.5rem;
}

.section-head.center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-head p {
    font-size: 1.125rem;
    color: #64748b;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

/* ===== COLORS ===== */
.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--gray-light);
}

.bg-dark {
    background: var(--darker);
}

.bg-naranja {
    background: var(--naranja);
}

.bg-naranja-soft {
    background: var(--naranja-soft);
}

.text-white {
    color: var(--white) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.8);
}

.text-slate {
    color: var(--slate);
}

.text-naranja {
    color: var(--naranja);
}

.text-dark {
    color: var(--darker);
}

/* ===== EYEBROWS / LABELS ===== */
.eyebrow {
    display: inline-block;
    color: var(--naranja);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.eyebrow-light {
    display: inline-block;
    color: var(--naranja);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.eyebrow-dark {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--t-smooth);
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--naranja);
    color: white;
}

.btn-primary:hover {
    background: var(--naranja-dark);
    transform: translateY(-2px);
    box-shadow: var(--sh-naranja);
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-dark {
    background: var(--darker);
    color: white;
}

.btn-dark:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--naranja);
    border-color: var(--naranja);
}

.btn-ghost:hover {
    background: var(--naranja-light);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--t-smooth);
}

.header.scrolled {
    box-shadow: var(--sh-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-h);
    font-size: 1.45rem;
    color: var(--darker);
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text strong {
    font-weight: 900;
    color: var(--naranja);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;
}

.nav-desktop a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    padding: 0.25rem 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--naranja);
    transition: width var(--t-smooth);
}

.nav-desktop a:hover {
    color: var(--naranja);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-wa {
    margin-left: 1.5rem;
    font-size: 0.875rem;
    padding: 0.6rem 1.1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--darker);
    cursor: pointer;
    margin-left: auto;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    padding: 0.75rem 0;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: var(--naranja);
}

/* ===== HERO ===== */
.hero {
    padding: 8.5rem 0 5rem;
    background: linear-gradient(160deg, #fff7ed 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
}

.blob-1 {
    width: 550px;
    height: 550px;
    background: var(--naranja);
    top: -200px;
    right: -150px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #fb923c;
    bottom: -180px;
    left: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--darker);
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: 1.25rem;
    color: var(--darker);
}

.hero-content h1 span {
    color: var(--naranja);
}

.hero-sub {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.hero-chips span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--naranja-light);
    color: var(--naranja-dark);
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-chips i {
    font-size: 0.7rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-micro {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

/* Glassmorphism Hero Card */
.hero-visual {
    position: relative;
    height: 480px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: var(--sh-md);
}

.card-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 360px;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.card-top-stripe {
    height: 8px;
    background: linear-gradient(90deg, var(--naranja), #fb923c);
}

.card-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--naranja);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 1.75rem auto 1.25rem;
    box-shadow: var(--sh-naranja);
}

.card-body-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.card-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-name {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--naranja);
}

.card-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.card-price strong {
    color: var(--naranja);
    font-size: 1.2rem;
}

.card-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1.5rem 1.75rem;
}

.card-chip,
.card-chips span {
    background: var(--naranja-light);
    color: var(--naranja-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--darker);
    z-index: 3;
}

.float-badge i {
    font-size: 1.5rem;
    color: var(--naranja);
}

.float-badge-1 {
    top: 8%;
    right: 0;
    animation: float-side 4s ease-in-out infinite;
}

.float-badge-2 {
    bottom: 5%;
    left: 0;
    animation: float-side 5s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

@keyframes float-side {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== ABOUT / TWO COL ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-side h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.info-side p {
    color: #475569;
    margin-bottom: 1.25rem;
}

.trust-seals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.seal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: var(--naranja-light);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--naranja-dark);
}

.seal i {
    font-size: 1.25rem;
    color: var(--naranja);
    flex-shrink: 0;
}

.image-side .visual-box {
    background: linear-gradient(135deg, var(--naranja), var(--naranja-dark));
    border-radius: 20px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: var(--sh-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--sh-md);
    border-top: 4px solid var(--naranja);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-num {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 900;
    color: var(--naranja);
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark);
}

/* ===== PROFILES GRID ===== */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
}

.profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1.75rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--darker);
    transition: var(--t-smooth);
    text-align: center;
    box-shadow: var(--sh-sm);
}

.profile-item i {
    font-size: 2rem;
    color: var(--naranja);
}

.profile-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: var(--naranja-light);
}

/* ===== PROBLEM (DARK SECTION) ===== */
.messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.message-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
}

.message-card i {
    font-size: 2.5rem;
    color: var(--naranja);
    display: block;
    margin-bottom: 1rem;
}

.message-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--gray-light);
    padding: 2.25rem 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--t-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--naranja);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--t-smooth);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    background: white;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--naranja-light);
    color: var(--naranja);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--t-smooth);
}

.benefit-card:hover .benefit-icon {
    background: var(--naranja);
    color: white;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: #64748b;
}

/* ===== HOW IT WORKS (STEPS) ===== */
.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 1.5rem 1rem;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--naranja);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--sh-naranja);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: white;
    color: var(--naranja);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--sh-md);
}

.step-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.step-item p {
    font-size: 0.8rem;
    color: #64748b;
}

.step-connector {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: var(--border);
    align-self: center;
    margin-top: -2rem;
}

/* ===== TRUST / NETWORK ===== */
.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.network-item {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--t-smooth);
}

.network-item:hover {
    border-color: var(--naranja);
    box-shadow: var(--sh-sm);
}

.network-item i {
    font-size: 2rem;
    color: var(--naranja);
    display: block;
    margin-bottom: 0.75rem;
}

.network-item strong {
    display: block;
    color: var(--darker);
    margin-bottom: 0.25rem;
}

.network-item span {
    font-size: 0.8rem;
    color: #64748b;
}

/* ===== REGISTRATION FORM ===== */
.form-wrapper {
    max-width: 740px;
    margin: 0 auto;
}

.form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: var(--t-smooth);
}

.step-indicator.active {
    opacity: 1;
}

.ind-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-h);
    color: white;
}

.step-indicator.active .ind-num {
    background: white;
    color: var(--naranja);
    border-color: white;
}

.ind-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.step-indicator-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 1rem;
    max-width: 80px;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--sh-lg);
}

.form-step {}

.form-step.hidden {
    display: none;
}

.form-step-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--naranja-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-b);
    font-size: 0.95rem;
    color: var(--darker);
    background: var(--gray-light);
    transition: var(--t-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--naranja);
    background: white;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.consents {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #475569;
    cursor: pointer;
}

.consent-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    accent-color: var(--naranja);
    flex-shrink: 0;
    margin-top: 2px;
}

.link-dark {
    color: var(--naranja);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions .btn-ghost {
    flex-shrink: 0;
}

/* Success state */
.success-msg {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.success-msg h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-msg p {
    color: #475569;
    font-size: 1.05rem;
}

/* ===== WHATSAPP SECTION ===== */
.alt-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.alt-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate);
    font-weight: 600;
    font-size: 0.9rem;
}

.alt-contact a:hover {
    color: var(--naranja);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--darker);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--t-fast);
}

.faq-q:hover {
    background: var(--naranja-soft);
}

.faq-q[aria-expanded="true"] {
    color: var(--naranja);
}

.faq-q[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-q i {
    transition: transform var(--t-smooth);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker);
    color: var(--slate);
    padding-top: 4rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer-links h4,
.footer-contact-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-links ul,
.footer-contact-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-contact-col a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--slate);
    transition: color var(--t-fast);
}

.footer-links a:hover,
.footer-contact-col a:hover {
    color: var(--naranja);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-legal-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-legal-inner p {
    font-size: 0.8rem;
    color: var(--slate);
}

.legal-note {
    max-width: 600px;
    margin: 0 auto;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: #64748b;
}

.footer-legal-links a:hover {
    color: var(--naranja);
}

/* ===== STICKY WHATSAPP ===== */
.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--t-smooth);
    animation: pulse-wa 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.12);
    }
}

/* ===== AOS-like animations ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-chips {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        margin: 0 auto;
        max-width: 400px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .image-side .visual-box {
        height: 280px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-desktop,
    .header-wa {
        display: none;
    }

    .header-inner {
        justify-content: center;
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 1.5rem;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 7rem 0 4rem;
    }

    .hero-visual {
        display: none;
    }

    .section {
        padding: 3.5rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        align-self: auto;
        margin: 0;
    }

    .trust-seals {
        grid-template-columns: 1fr 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}