:root {
    --bitel-yellow: #FFE600;
    --bitel-blue: #00549A;
    --bitel-blue-dark: #00549A;
    --bitel-green: #00A54F;
    --bitel-green-dark: #008f43;
    --gray-bg: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --whatsapp-green: #25D366;
    --icon-blue: #005F85;
    --icon-yellow: #FFD600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--gray-bg);
    color: #333;
    padding-bottom: 70px;
}

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

@media(min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* ═══════════════════════════════════════
   URGENCY BAR
═══════════════════════════════════════ */
.urgency-bar {
    background: #00549A;
    color: white;
    font-size: 0.8rem;
    padding: 7px 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

@keyframes urgencyShimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.urgency-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.urgency-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF4757;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 71, 87, 0);
    }
}

/* ═══════════════════════════════════════
   NAVBAR CTA
═══════════════════════════════════════ */
.nav-cta {
    background: #00549A !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-weight: 700 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(0, 30, 90, 0.35) !important;
    background: linear-gradient(135deg, #003DA5, #0056cc) !important;
}

/* ═══════════════════════════════════════
   HERO PROMO BADGE & BULLETS
═══════════════════════════════════════ */
.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 84, 154, 0.85);
    border: 1.5px solid rgba(0, 84, 154, 0.5);
    color: #FFD100;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    animation: badgePop 0.5s ease-out;
    letter-spacing: 0.3px;
}

@keyframes badgePop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.hero-bullets span {
    font-size: 0.8rem;
    color: #00549A;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 84, 154, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF SECTION
═══════════════════════════════════════ */
.social-proof-section {
    background: #00549A;
    padding: 1.5rem 1rem;
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.sp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 2rem;
    text-align: center;
    animation: fadeUp 0.6s ease-out backwards;
}

.sp-stat:nth-child(1) {
    animation-delay: 0.1s;
}

.sp-stat:nth-child(3) {
    animation-delay: 0.2s;
}

.sp-stat:nth-child(5) {
    animation-delay: 0.3s;
}

.sp-stat:nth-child(7) {
    animation-delay: 0.4s;
}

.sp-number {
    font-size: 1.9rem;
    font-weight: 900;
    color: #FFD100;
    line-height: 1;
    letter-spacing: -1px;
}

.sp-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
    .sp-divider {
        display: none;
    }

    .social-proof-inner {
        gap: 0.5rem;
    }

    .sp-stat {
        padding: 0.5rem 1rem;
    }

    .sp-number {
        font-size: 1.4rem;
    }
}

/* ═══════════════════════════════════════
   SECTION SUBTITLE & PROMO LIVE
═══════════════════════════════════════ */
.section-subtitle {
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 4px;
    font-weight: 500;
}

.promo-live {
    color: #EF4444;
    font-weight: 700;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ═══════════════════════════════════════
   BENEFIT ITEMS — FADE-IN ON SCROLL
═══════════════════════════════════════ */
.benefit-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease,
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s;
}

.benefit-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item.visible:hover {
    transform: translateY(-8px);
}

.benefit-item:nth-child(1) {
    transition-delay: 0.05s;
}

.benefit-item:nth-child(2) {
    transition-delay: 0.15s;
}

.benefit-item:nth-child(3) {
    transition-delay: 0.25s;
}

.benefit-item:nth-child(4) {
    transition-delay: 0.35s;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(90deg, var(--bitel-yellow) 0%, #FFC107 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-img.small {
    height: 35px;
}

.logo-footer {
    filter: brightness(0) invert(1);
}

.logo-text {
    margin-left: 10px;
    font-weight: bold;
    color: var(--bitel-blue);
    font-size: 1.25rem;
    display: none;
}

@media(min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.nav-btn {
    background: none;
    border: none;
    font-weight: bold;
    color: var(--bitel-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.desktop-menu {
    display: none;
    gap: 1rem;
}

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

.mobile-menu-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--bitel-blue);
    cursor: pointer;
}

@media(min-width: 768px) {
    .mobile-menu-icon {
        display: none;
    }
}

/* MOBILE DROPDOWN */
.mobile-dropdown {
    background: white;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
}

.mobile-dropdown.hidden {
    display: none;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: var(--bitel-blue);
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    background: #f3f4f6;
    cursor: pointer;
}

.mobile-link:hover {
    background: #e5e7eb;
}

@media(min-width: 1024px) {
    .mobile-dropdown {
        display: none;
    }
}

/* HERO */
.hero-section {
    background: linear-gradient(135deg, var(--bitel-yellow) 0%, #FFC107 100%);
    width: 100%;
}

/* SLIDER STYLES */
.hero-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 20;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--bitel-yellow);
    border-color: var(--bitel-yellow);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.5);
}

.hero-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

@media(min-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.hero-text {
    text-align: left;
    max-width: 600px;
    z-index: 20;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bitel-blue);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

@media(min-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
}

.hero-tag {
    background: #E91E63;
    color: white;
    padding: 0 10px;
    transform: skewX(-6deg);
    display: inline-block;
}

.hero-text p {
    font-size: 1.1rem;
    color: #00549A;
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-blue {
    background: linear-gradient(135deg, var(--bitel-blue) 0%, #003d73 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 84, 154, 0.3);
}

.btn-white {
    background: white;
    color: var(--bitel-blue);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* MINI FORM — Premium Style */
.hero-mini-form {
    background: #00549A;
    border: 2px solid rgba(255, 209, 0, 0.4);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    max-width: 550px;
    width: 100%;
    animation: fadeUp 0.8s ease-out;
}

.hero-mini-form h3 {
    color: #FFD100;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.hero-mini-form p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: normal;
}

.inline-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

@media(min-width: 640px) {
    .inline-form {
        flex-direction: row;
    }
}

.input-group {
    position: relative;
    flex: 1;
}

.input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    color: #1E293B;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group input:focus {
    border-color: #FFD100;
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.2);
}

.input-group input::placeholder {
    color: #94A3B8;
}

.btn-green-inline {
    background: linear-gradient(135deg, #FFD100, #FFC107);
    color: #00549A;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-green-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 209, 0, 0.4);
}

@media(max-width: 640px) {
    .btn-green-inline {
        width: 100%;
    }
}

.legal-text-inline {
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
}

/* ROUTER IMAGE */
.hero-router-container {
    display: none;
    position: relative;
    z-index: 10;
}

@media(min-width: 1024px) {
    .hero-router-container {
        display: block;
        margin-right: -50px;
    }
}

/* ── CONTROL ESTRICTO MOBILE/DESKTOP para imágenes del hero ──────── */
/* En móvil (<768px): SOLO mostrar imagen inline, NUNCA la columna derecha */
@media (max-width: 767px) {
    .hero-desktop-only,
    .hero-router-container {
        display: none !important;
    }
    .hero-banner-mobile {
        display: block !important;
    }
}

/* En desktop (≥768px): mostrar columna derecha, ocultar imagen inline */
@media (min-width: 768px) {
    .hero-banner-mobile {
        display: none !important;
    }
    .hero-desktop-only {
        display: flex !important;
    }
}

.hero-router-img {
    width: 350px;
    height: auto;
    transform: rotate(-5deg);
    animation: floatRouter 6s ease-in-out infinite;
}

@media(min-width: 768px) {
    .hero-router-img {
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    }
}

/* BIPAY */
/* ═══════════════════════════════════════
   BIPAY SECTION — Premium Banner
═══════════════════════════════════════ */
.bipay-section {
    background: #00549A;
    color: white;
    padding: 1.5rem 0;
    position: relative;
    z-index: 20;
    margin-top: -2rem;
    border-bottom: 2px solid rgba(255, 209, 0, 0.3);
    overflow: hidden;
}

/* Brillo sutil decorativo */
.bipay-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 209, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bipay-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.bipay-content h2 {
    color: var(--bitel-yellow);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
}

.bipay-content p {
    font-size: 0.9rem;
    color: rgba(219, 234, 254, 0.9);
}

.bipay-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 209, 0, 0.15);
    border: 1px solid rgba(255, 209, 0, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bitel-yellow);
    flex-shrink: 0;
}

/* BENEFICIOS */
/* ═══════════════════════════════════════
   BENEFITS SECTION — Glassmorphism Premium
═══════════════════════════════════════ */
.benefits-section {
    background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFC 50%, #FFFFFF 100%);
    padding: 4rem 0 4.5rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--bitel-blue);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.divider {
    width: 5rem;
    height: 4px;
    background: var(--bitel-yellow);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    text-align: center;
    padding: 0 1rem;
}

@media(min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Card glassmorphism para cada beneficio */
.benefit-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 30, 90, 0.08);
    border-radius: 16px;
    padding: 2rem 1.25rem 1.75rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s;
    box-shadow: 0 2px 12px rgba(0, 30, 90, 0.04);
    cursor: default;
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 30, 90, 0.12);
    border-color: rgba(0, 61, 165, 0.18);
}

/* Ícono circle premium */
.benefit-item .icon-circle {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover .icon-circle {
    transform: scale(1.1);
}

.blue-light {
    background: #dbeafe;
    color: var(--bitel-blue);
    box-shadow: 0 4px 16px rgba(0, 61, 165, 0.12);
}

.green-light {
    background: #dcfce7;
    color: var(--bitel-green);
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.12);
}

.yellow-light {
    background: #fef9c3;
    color: #ca8a04;
    box-shadow: 0 4px 16px rgba(202, 138, 4, 0.12);
}

.purple-light {
    background: #f3e8ff;
    color: #9333ea;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.12);
}

.benefit-item h3 {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--bitel-blue);
    letter-spacing: -0.2px;
}

.benefit-item p {
    font-size: 0.82rem;
    color: #64748B;
    line-height: 1.5;
}

/* PLANES */
.planes-section {
    padding: 2.5rem 0 3rem;
    background: #FFFFFF;
}

@media(min-width: 768px) {
    .planes-section {
        padding: 3rem 0 3.5rem;
    }
}

/* Chip Plans — fondo sutilmente distinto */
.planes-section:not(.bg-blue-50) {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 40%, #F0F4FF 100%);
}

/* Fibra Plans — fondo azul claro con gradiente */
.bg-blue-50 {
    background: linear-gradient(180deg, #EFF6FF 0%, #F0F4FF 50%, #F8FAFC 100%);
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.icon-box-blue {
    background: var(--bitel-blue);
    color: white;
    padding: 8px;
    border-radius: 8px;
}

.icon-box-yellow {
    background: var(--bitel-yellow);
    color: var(--bitel-blue);
    padding: 8px;
    border-radius: 8px;
}

.section-title-row h2 {
    margin-top: 0.5rem;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

/* CARD */
.plan-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    overflow: visible;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    animation: fadeUp 0.6s ease-out backwards;
}

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

/* ══ Card Recomendada / Más Popular ══ */
.plan-card.recommended {
    border: 2px solid #FFD100;
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 209, 0, 0.2),
        0 4px 16px rgba(0, 84, 154, 0.08);
    z-index: 5;
    position: relative;
}

.plan-card.recommended:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 209, 0, 0.3),
        0 8px 24px rgba(0, 84, 154, 0.1);
}

.recommended-badge {
    background: #00549A !important;
    color: #FFD100 !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    padding: 5px 14px !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 12px rgba(0, 84, 154, 0.3) !important;
    animation: pulse 2s infinite !important;
    top: -12px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    white-space: nowrap;
}

.card-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bitel-yellow);
    color: var(--bitel-blue);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 4px 12px;
    border-bottom-right-radius: 0.5rem;
    border-top-left-radius: 1rem;
    z-index: 10;
    letter-spacing: 0.2px;
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #E91E63;
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 20;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.card-header {
    background: #00549A;
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.router-float {
    position: absolute;
    width: 70px;
    top: -10px;
    left: -20px;
    z-index: 20;
    transform: rotate(-15deg);
    animation: floatRouter 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatRouter {

    0%,
    100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
}

.fibra-card .card-tag {
    left: auto;
    right: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0.5rem;
}

.fibra-card .card-header {
    padding-top: 3rem;
}

.speed-row i {
    color: var(--bitel-yellow);
}

.speed-row span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.card-price {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    background: rgba(249, 250, 251, 0.5);
}

.card-price .regular {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 0.875rem;
}

.price-large {
    color: var(--bitel-blue);
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: bold;
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.price-month {
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: 4px;
}

/* ══ Promo Pill — Legibilidad mejorada ══ */
.promo-pill {
    background: rgba(0, 165, 79, 0.1);
    color: #007A3D;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 9999px;
    display: inline-block;
    margin-top: 6px;
    border: 1px solid rgba(0, 165, 79, 0.15);
    line-height: 1.4;
}

.card-features {
    padding: 1.25rem;
    flex-grow: 1;
}

.feature-row {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-row i {
    color: var(--bitel-green);
    margin-top: 4px;
}

.feature-row p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
}

.card-cta {
    padding: 1.5rem;
    padding-top: 0;
    text-align: center;
}

.btn-card {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bitel-green) 0%, #008f43 100%);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 165, 79, 0.2);
}

.btn-card:hover {
    background: linear-gradient(135deg, #008f43 0%, #006d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 165, 79, 0.3);
}

/* FOOTER */
.main-footer {
    background-color: var(--bitel-blue);
    color: white;
    padding: 3rem 0 6rem;
    width: 100%;
}

@media(min-width: 768px) {
    .main-footer {
        padding-bottom: 3rem;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1.5fr;
    }
}

.footer-col h4 {
    color: var(--bitel-yellow);
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    color: #dbeafe;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: white;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dbeafe;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--bitel-yellow);
    width: 20px;
    text-align: center;
}

.capture-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.capture-box h4 {
    color: #FFD100;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.capture-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.footer-form {
    display: flex;
    gap: 0.5rem;
}

.footer-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    outline: none;
    font-size: 0.9rem;
    color: #1E293B;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-form input:focus {
    border-color: #FFD100;
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.2);
}

.footer-form input::placeholder {
    color: #94A3B8;
}

/* FOOTER FORM BUTTON */
.footer-form button {
    background: linear-gradient(135deg, #FFD100, #FFC107);
    color: #00549A;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: auto;
    height: auto;
    display: inline-block;
    box-shadow: none;
    animation: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.4);
}

/* MOBILE BOTTOM BAR */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    display: flex;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    align-items: stretch;
    z-index: 100;
    height: 70px;
    padding: 0;
}

@media(min-width: 768px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.call-cta {
    display: flex;
    flex-direction: column;
}

.call-cta span {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: bold;
    text-transform: uppercase;
}

.call-cta a {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--bitel-blue);
    text-decoration: none;
}

.wsp-btn-mobile {
    background: var(--bitel-green);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}


/* MODAL */
.modal.hidden {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 84, 154, 0.8);
    backdrop-filter: blur(6px);
}

.modal-card {
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.35s ease-out;
}

.modal-header {
    background: #00549A;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #FFD100;
}

.modal-header h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-header button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-header button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 1.5rem;
}

.promo-alert {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border: 1.5px solid #BFDBFE;
    color: #00549A;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-alert::before {
    content: '🛒';
    font-size: 1.2rem;
    flex-shrink: 0;
}

.promo-alert strong {
    color: #003DA5;
}

/* Form field redesign */
#purchaseForm label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 5px;
}

#purchaseForm input,
#purchaseForm select {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border: 1.5px solid #CBD5E1;
    border-radius: 10px;
    margin-bottom: 0.85rem;
    outline: none;
    background: #F1F5F9;
    font-size: 0.9rem;
    color: #1E293B;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}

#purchaseForm select {
    padding-left: 14px;
    cursor: pointer;
}

#purchaseForm input:focus,
#purchaseForm select:focus {
    border-color: #00549A;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 84, 154, 0.08);
}

#purchaseForm .btn-submit {
    width: 100%;
    padding: 13px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

#purchaseForm .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

#purchaseForm .btn-submit:active {
    transform: translateY(0);
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .row-2 {
        grid-template-columns: 1fr;
    }
}

/* ── MODAL SUCCESS SCREEN ── */
.modal-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.12);
    animation: successPulse 1.5s ease-out forwards;
}

.modal-success-icon i {
    color: white;
    font-size: 2rem;
}

@keyframes successPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 16px rgba(16, 185, 129, 0);
    }
}

.modal-success-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #001E5A;
    margin-bottom: 0.75rem;
}

.modal-success-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.modal-success-wsp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 0.75rem;
    box-sizing: border-box;
}

.modal-success-wsp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.modal-success-wsp i {
    font-size: 1.3rem;
}

.modal-success-close {
    display: block;
    width: 100%;
    padding: 10px;
    background: #F1F5F9;
    border: 1.5px solid #CBD5E1;
    border-radius: 10px;
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-success-close:hover {
    background: #E2E8F0;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
    background: #f9fafb;

    margin: 0 -1.5rem -1.5rem;
    padding: 1rem 1.5rem;
}

.btn-cancel {
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 8px 16px;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-submit {
    background: var(--bitel-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    box-shadow: 0 8px 16px rgba(0, 30, 80, 0.2);
}

/* CAROUSEL NAV */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

/* Wrapper del carrusel con flechas */
.carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 40px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid rgba(0, 30, 90, 0.1);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 30, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--bitel-blue);
    font-size: 1.1rem;
}

.nav-arrow:hover {
    background: var(--bitel-blue);
    color: var(--bitel-yellow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 30, 80, 0.2);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-arrow.left {
    left: 0;
}

.nav-arrow.right {
    right: 0;
}

@media (max-width: 768px) {
    .nav-arrow {
        display: none;
    }
}

/* TOAST */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: white;
    color: #1f2937;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    min-width: 300px;
    max-width: 400px;
    border-left: 6px solid var(--bitel-blue);
    pointer-events: auto;
    font-weight: 500;
}

.toast.success {
    border-left-color: var(--bitel-green);
}

.toast.error {
    border-left-color: #ef4444;
}

.toast i {
    font-size: 1.5rem;
}

.toast.success i {
    color: var(--bitel-green);
}

.toast.error i {
    color: #ef4444;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

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


@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}

/* FAQ SECTION */
.faq-section {
    background: #fff;
    padding: 3rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-weight: bold;
    color: var(--bitel-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

/* FOOTER TRUST ICONS */
.footer-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 20px auto;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Segoe UI', sans-serif;
    color: var(--bitel-blue);
    line-height: 1.2;
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trust-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--bitel-blue);
}

.svg-icon {
    width: 56px;
    height: 56px;
}

.carousel-container .plan-card:first-child {
    margin-left: auto;
}

.carousel-container .plan-card:last-child {
    margin-right: auto;
}

/* Fix for hero form spacing */
.hero-mini-form {
    margin-bottom: 4rem;
}

/* RESTORED FOOTER BOTTOM & MOBILE BAR */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* MOBILE BOTTOM BAR (Visible on all screens as per request) */
/* ═══════════════════════════════════════
   MOBILE BOTTOM BAR — Compact + Blur
═══════════════════════════════════════ */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    box-shadow: 0 -2px 20px rgba(0, 30, 90, 0.1);
    border-top: 1px solid rgba(0, 30, 90, 0.08);
    align-items: stretch;
    z-index: 1000;
    height: 52px;
    padding: 0;
}

.btn-whatsapp {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebc57;
}

.badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #25D366;
    z-index: 10;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.btn-call {
    background: #00A54F;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    border-top: none;
    gap: 6px;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-call:hover {
    background: #008f43;
}

.btn-call i {
    font-size: 1rem;
    transform: rotate(0deg);
    color: white;
}

.btn-plan {
    background: rgba(255, 255, 255, 0.6);
    color: #00A54F;
    border: none;
    border-left: 1px solid rgba(0, 30, 90, 0.08);
    flex: 1.5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    gap: 6px;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-plan:hover {
    background: #f9fafb;
}

/* ═══════════════════════════════════════
   FAQ SECTION — Premium Card Design
═══════════════════════════════════════ */
.faq-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 4rem 0 5rem;
}

.faq-section .section-header h2 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Cada pregunta es una card independiente */
.faq-item {
    background: white;
    border: 1px solid rgba(0, 30, 90, 0.08);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 30, 90, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    border-bottom: none;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 30, 90, 0.1);
    transform: translateY(-2px);
    border-color: rgba(0, 61, 165, 0.15);
}

/* Botón de pregunta */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.1rem 1.25rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--bitel-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    gap: 12px;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(0, 61, 165, 0.03);
}

/* Chevron con animación suave */
.faq-question i {
    font-size: 0.8rem;
    color: #94A3B8;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.3s;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 30, 90, 0.05);
}

/* Respuesta: oculta con transición */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #475569;
    line-height: 1.7;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 30, 90, 0.06);
    margin-top: 0;
    padding-top: 1rem;
}

/* Estado ACTIVO */
.faq-item.active {
    border-color: rgba(0, 61, 165, 0.2);
    box-shadow: 0 4px 20px rgba(0, 61, 165, 0.1);
    border-left: 3px solid #FFD100;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-question {
    background: rgba(0, 61, 165, 0.03);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #FFD100;
    background: rgba(255, 209, 0, 0.15);
}

/* FIX TRUST ICONS CONTRAST */
.trust-text {
    color: var(--bitel-blue) !important;
}

.trust-item svg path[fill="#FFFFFF"] {
    fill: var(--bitel-blue);
}

/* WHATSAPP FLOAT OMNICHANNEL PREMIUM */
.wsp-float-desktop {
    display: flex;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 10px 18px 10px 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.wsp-float-desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.wsp-float-desktop:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.6);
}

.wsp-float-desktop:hover::before {
    opacity: 1;
}

.wsp-float-desktop i {
    font-size: 1.5rem;
    background: white;
    color: #128C7E;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.wsp-float-desktop .wsp-text {
    display: flex;
    flex-direction: column;
}

.wsp-float-desktop .wsp-text span:first-child {
    font-size: 0.65rem;
    font-weight: normal;
    opacity: 0.9;
}

.wsp-float-desktop .wsp-text span:last-child {
    font-size: 0.85rem;
    line-height: 1.2;
}

.wsp-float-desktop::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: pingWsp 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@media(min-width: 768px) {
    .wsp-float-desktop {
        bottom: 30px;
        right: 30px;
        padding: 12px 24px 12px 18px;
    }

    .wsp-float-desktop i {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .wsp-float-desktop .wsp-text span:first-child {
        font-size: 0.75rem;
    }

    .wsp-float-desktop .wsp-text span:last-child {
        font-size: 1rem;
    }

    .wsp-float-desktop::after {
        left: 17px;
        width: 42px;
        height: 42px;
    }
}

@keyframes pingWsp {

    75%,
    100% {
        transform: translateY(-50%) scale(1.8);
        opacity: 0;
    }
}

/* PROMO ALERT (Marketing Optimized) */
.promo-alert {
    background: #dcfce7;
    color: var(--bitel-green);
    padding: 1rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 2px solid #bbf7d0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    animation: pulse 3s infinite ease-in-out;
}

/* ═══════════════════════════════════════
   MOBILE FULL OPTIMIZATIONS (<= 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
    /* 1. Reducir ligeramente la tarjeta para que no se corte por el lado derecho */
    .plan-card {
        flex: 0 0 270px;
    }
    
    /* 2. Reducir padding horizontal del slider para que respire más la miniatura */
    .carousel-wrapper {
        padding: 0 20px;
    }
    
    /* 3. Evitar que el label de "Oferta Limitada" se desborde fuera del celular */
    .plan-card .badge-limited {
        right: 0px !important; 
        font-size: 0.70rem !important;
    }

    /* 4. Transformar el Footer-Barra en 2 Botones Flotantes Circulares */
    .mobile-bottom-bar {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: none; /* Deja pasar los clics */
        height: auto !important;
    }
    .mobile-bottom-bar .btn-plan {
        display: none !important; /* Desaparece solicitar plan */
    }
    .mobile-bottom-bar .btn-call {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        pointer-events: auto;
        box-shadow: 0 6px 16px rgba(0, 165, 79, 0.4);
        font-size: 0; /* Oculta el texto */
        justify-content: center;
        z-index: 9999;
    }
    .mobile-bottom-bar .btn-call i {
        font-size: 1.5rem !important;
        margin: 0 !important;
    }

    /* 5. Transformar la pastilla ancha de WhatsApp en un círculo idéntico flotante */
    .wsp-float-desktop {
        bottom: 20px !important;
        right: 20px !important;
        padding: 0 !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        justify-content: center !important;
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4) !important;
    }
    .wsp-text {
        display: none !important; /* Oculta texto de dudas atencion inmediata */
    }
    .wsp-float-desktop::after {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    /* 6. Aumentar el espacio vacío DEBAJO del carrusel para que las tarjetas no sean tapadas por los botones */
    .carousel-section {
        padding-bottom: 90px !important;
    }
}