:root {
    --primary-color: #EF5A2A;
    --primary-dark: #C74717;
    --primary-light: #FF7647;
    --secondary-color: #2A2A2A;
    --accent-color: #FFB088;
    --bg-light: #FFF8F5;
    --bg-soft: #FFEFE4;
    --text-dark: #1A1A1A;
    --text-gray: #6B6B6B;
    --success: #10b981;
    --danger: #ef4444;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ─────────────────────────────────────────────────
   Navbar
   ───────────────────────────────────────────────── */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 0.85rem 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 4px 25px rgba(0,0,0,0.09);
    padding: 0.6rem 0;
}

.navbar-brand img { height: 44px; transition: transform 0.3s ease; }
.navbar-brand:hover img { transform: scale(1.05); }

.brand-text {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}
.brand-text-accent { color: var(--primary-color); }

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.6rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--primary-color) !important; }

/* ─────────────────────────────────────────────────
   Botones reutilizables
   ───────────────────────────────────────────────── */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white !important;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 90, 42, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 90, 42, 0.4);
    color: white !important;
}

.btn-lg-custom { padding: 14px 38px !important; font-size: 1.05rem !important; }

.btn-ghost-custom {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color) !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-ghost-custom:hover {
    background: var(--secondary-color);
    color: white !important;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color) !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-custom:hover {
    background: var(--secondary-color);
    color: white !important;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #FFF8F5 0%, #FFE8DC 100%);
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(239, 90, 42, 0.1) 0%, transparent 70%);
    top: -200px; right: -200px;
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 118, 71, 0.08) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    border-radius: 50%;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(239, 90, 42, 0.1);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.3rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.2rem;
    line-height: 1.6;
}

.hero-trust {
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust i { color: var(--success); }

.hero-image { position: relative; animation: float 6s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.hero-image img { max-width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); border-radius: 20px; }

/* ─────────────────────────────────────────────────
   Phone mockup para hero (placeholder de Google Wallet)
   ───────────────────────────────────────────────── */
.phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 9 / 18;
    background: #1A1A1A;
    border-radius: 38px;
    padding: 14px;
    box-shadow:
        0 0 0 2px #2A2A2A,
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 12px 30px rgba(239, 90, 42, 0.15);
    animation: float 6s ease-in-out infinite;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 22px;
    background: #0A0A0A;
    border-radius: 12px;
    z-index: 2;
}

.phone-mockup .phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #FAFAFA 0%, #F0F0F0 100%);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 30px;
    text-align: center;
}

.phone-mockup .phone-screen img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 26px;
}

.phone-mockup .phone-placeholder-content {
    color: var(--text-gray);
}

.phone-mockup .phone-placeholder-content .ph-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(239, 90, 42, 0.3);
}

.phone-mockup .phone-placeholder-content .ph-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.phone-mockup .phone-placeholder-content .ph-sub {
    color: var(--text-gray);
    font-size: 0.82rem;
    line-height: 1.4;
}

.phone-mockup .phone-card-preview {
    width: 100%;
    aspect-ratio: 4 / 2.5;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 14px;
    padding: 18px;
    color: white;
    text-align: left;
    box-shadow: 0 8px 20px rgba(239, 90, 42, 0.25);
    margin-top: 16px;
}

.phone-mockup .phone-card-preview .pcp-brand {
    font-size: 0.7rem;
    opacity: 0.85;
    margin-bottom: 4px;
}

.phone-mockup .phone-card-preview .pcp-balance {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.phone-mockup .phone-card-preview .pcp-unit {
    font-size: 0.72rem;
    opacity: 0.85;
    margin-top: 2px;
}

/* ─────────────────────────────────────────────────
   Stats banda
   ───────────────────────────────────────────────── */
.stats-section {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #F0E8E0;
}

.stat-card {
    text-align: center;
    padding: 20px 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.stat-source {
    color: var(--text-gray);
    font-size: 0.78rem;
    font-style: italic;
}

/* ─────────────────────────────────────────────────
   Primeros clientes / social proof temprano
   ───────────────────────────────────────────────── */
.early-clients-section {
    padding: 70px 0;
    background: white;
    border-bottom: 1px solid #F0E8E0;
}

.early-clients-section .section-subtitle {
    margin-bottom: 2.5rem;
}

.client-logo-card {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(239, 90, 42, 0.12);
}

.client-logo-card .client-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 1.7rem;
}

.client-logo-card .client-name {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.client-logo-card .client-type {
    color: var(--text-gray);
    font-size: 0.86rem;
}

.client-logo-card.placeholder {
    background: transparent;
    border-style: dashed;
    border-color: #D8D0C8;
    color: var(--text-gray);
}

.client-logo-card.placeholder .client-icon {
    background: #F0E8E0;
    color: var(--text-gray);
}

.early-offer-banner {
    background: linear-gradient(135deg, #FFF8F0, #FFE8DC);
    border: 2px dashed var(--primary-color);
    border-radius: 20px;
    padding: 30px 28px;
    margin-top: 40px;
    text-align: center;
}

.early-offer-banner h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.early-offer-banner h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.early-offer-banner p {
    color: var(--text-dark);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.55;
}

.early-offer-banner .badge-spots {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* ─────────────────────────────────────────────────
   Para quién (targets)
   ───────────────────────────────────────────────── */
.target-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.target-card {
    background: white;
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    cursor: default;
}

.target-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 30px rgba(239, 90, 42, 0.12);
}

.target-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--bg-soft), var(--accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.target-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.target-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ─────────────────────────────────────────────────
   Cómo funciona
   ───────────────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 45px 30px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #F5F5F5;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(239, 90, 42, 0.15);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(239, 90, 42, 0.4);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 15px;
    color: var(--secondary-color);
}

.step-text {
    color: var(--text-gray);
    line-height: 1.55;
    font-size: 0.95rem;
}

/* ─────────────────────────────────────────────────
   Features / Beneficios
   ───────────────────────────────────────────────── */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-card {
    background: white;
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(239, 90, 42, 0.13);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-4deg);
}

.feature-icon i { font-size: 1.9rem; color: white; }

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.55;
    font-size: 0.94rem;
}

/* ─────────────────────────────────────────────────
   Pricing único
   ───────────────────────────────────────────────── */
.pricing-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.pricing-card-unique {
    background: white;
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 25px 60px rgba(239, 90, 42, 0.18);
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card-unique:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(239, 90, 42, 0.25);
}

.pricing-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 9px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 25px;
    box-shadow: 0 6px 18px rgba(239, 90, 42, 0.35);
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.pricing-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-price {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-period {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-left: 4px;
}

.pricing-equivalent {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 11px 0;
    color: var(--text-dark);
    border-bottom: 1px solid #F5F0EB;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features i {
    color: var(--success);
    margin-right: 12px;
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-fineprint {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────
   Comparativa
   ───────────────────────────────────────────────── */
.compare-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.compare-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.compare-card:hover { transform: translateY(-5px); }

.compare-before { border-color: #FEE2E2; }
.compare-after { border-color: #D1FAE5; box-shadow: 0 12px 30px rgba(16, 185, 129, 0.1); }

.compare-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F5F5F5;
}

.compare-header i { font-size: 2rem; }
.compare-before .compare-header i { color: var(--danger); }
.compare-after .compare-header i { color: var(--success); }

.compare-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-card li {
    padding: 11px 0;
    color: var(--text-gray);
    border-bottom: 1px solid #F5F5F5;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.compare-card li:last-child { border-bottom: none; }

.compare-card li i {
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.compare-before li i { color: var(--danger); }
.compare-after li i { color: var(--success); }

/* ─────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────── */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-section .accordion-item {
    border: none;
    background: var(--bg-light);
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 8px 20px rgba(239, 90, 42, 0.08);
}

.faq-section .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 22px 25px;
    font-size: 1.02rem;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: rgba(239, 90, 42, 0.05) !important;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EF5A2A'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-section .accordion-body {
    padding: 0 25px 22px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.97rem;
}

/* ─────────────────────────────────────────────────
   CTA final
   ───────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #D04A20 0%, #E5612F 100%);
    padding: 90px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -200px; right: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: -150px; left: -50px;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.18rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.btn-white-custom {
    background: white;
    color: var(--primary-color) !important;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-white-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    color: var(--primary-dark) !important;
}

/* ─────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────── */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.94rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--primary-light);
    margin-right: 12px;
    width: 18px;
}

.footer-contact p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.94rem;
}

.social-links { margin-top: 1.5rem; }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 35px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
}

/* ─────────────────────────────────────────────────
   WhatsApp Float
   ───────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    width: 62px; height: 62px;
    bottom: 28px; right: 28px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50%      { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7); }
}

/* ─────────────────────────────────────────────────
   Accesibilidad: focus visible para navegación por teclado
   ───────────────────────────────────────────────── */
.btn-primary-custom:focus-visible,
.btn-ghost-custom:focus-visible,
.btn-outline-custom:focus-visible,
.btn-white-custom:focus-visible,
.btn-outline-white:focus-visible,
.nav-link:focus-visible,
.footer-links a:focus-visible,
.social-links a:focus-visible,
.whatsapp-float:focus-visible,
.accordion-button:focus-visible {
    outline: 3px solid #FFB088;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(239, 90, 42, 0.25);
}

/* ─────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────── */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        margin-top: 12px;
        padding: 18px;
        border-radius: 14px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    .nav-link { margin: 6px 0; }
    .btn-ghost-custom, .btn-primary-custom { width: 100%; margin-top: 8px; }
}

@media (max-width: 768px) {
    .hero-section { padding: 100px 0 60px; }
    .hero-title { font-size: 2.3rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .section-title { font-size: 1.95rem; }
    .section-subtitle { font-size: 1rem; }
    .stat-number { font-size: 2.3rem; }
    .pricing-price { font-size: 4rem; }
    .pricing-card-unique { padding: 35px 25px; }
    .cta-title { font-size: 1.85rem; }
    .compare-card { padding: 28px 22px; }
    .step-card { padding: 40px 22px 25px; }
    .whatsapp-float {
        width: 56px; height: 56px;
        font-size: 1.65rem;
        bottom: 18px; right: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .pricing-price { font-size: 3.5rem; }
    .pricing-currency { font-size: 1.6rem; }
}

/* ─────────────────────────────────────────────────
   Respeta prefers-reduced-motion del sistema operativo
   ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .whatsapp-float {
        animation: none !important;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
