/* ===== VARIABLES & RESET ===== */
:root {
    --primary-red: #f97316; /* Changed to orange */
    --primary-dark: #000000;
    --primary-blue: #002ff5; /* Match banner blue */
    --accent-yellow: var(--primary-red);
    --bg-light: #f4f5f7;
    --bg-white: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

/* ===== PAGE LOAD TRANSITION ===== */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--primary-blue);
    z-index: 9999;
    animation: pageExit 0.6s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
    pointer-events: none;
}

@keyframes pageExit {
    from { transform: translateY(0); }
    to   { transform: translateY(-100%); }
}

/* ===== SCROLL-REVEAL BASE ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER (VERIZON STYLE) ===== */
.top-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}

.top-nav .container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.top-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 10px;
    position: relative;
    transition: color 0.25s;
}

.top-nav a.active {
    color: var(--primary-red);
}

.top-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
}

.main-nav {
    background-color: var(--bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.5s ease-out forwards;
}

.main-nav .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {

    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    text-decoration: none;
    letter-spacing: -1px;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

/* ===== HERO SECTION (TIGO STYLE) ===== */
.hero-section {
    width: 100%;
    height: 300px;
    background: var(--primary-blue);
    background: linear-gradient(90deg, #001a99 0%, #002ff5 100%);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 20px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-slide {
    width: 33.3333%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hero-content {
    color: white;
    padding: 0 50px;
    z-index: 2;
    max-width: 42%;
}

.hero-content h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 5px;
    animation: fadeUp 0.7s ease-out 0.3s both;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeUp 0.7s ease-out 0.45s both;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
    animation: fadeUp 0.7s ease-out 0.6s both;
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
    animation: orange-pulse 2s infinite;
    pointer-events: none;
    z-index: -1;
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 62%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-section:hover .hero-image {
    transform: scale(1.04);
}

.hero-section:hover .btn-primary {
    background-color: #ea580c;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
}

@keyframes caretBlink {
    from, to { opacity: 0 }
    50% { opacity: 1 }
}

@keyframes orange-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.75);
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 0 14px rgba(249, 115, 22, 0);
        opacity: 0;
    }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    color: var(--primary-dark);
    transition: background-color 0.3s, color 0.3s;
}

.hero-arrow:hover {
    background-color: var(--primary-red);
    color: white;
}

.hero-arrow.left { left: 20px; }
.hero-arrow.right { right: 20px; }

/* ===== QUICK ACTIONS ===== */
.quick-actions-section {
    padding: 30px 0;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .quick-actions-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.action-card {
    background: linear-gradient(135deg, #001a99 0%, #002ff5 100%);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.action-card:hover {
    background: #ffedd5 !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.2) !important;
}

.action-card i {
    font-size: 1.8rem;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

.action-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.action-card:hover i,
.action-card:hover span {
    color: #ea580c !important;
}

/* ===== TABS FOR SUBPAGES ===== */
.page-tabs {
    display: flex;
    gap: 10px;
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--border);
}

.page-tab {
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: var(--text-muted);
}

.page-tab.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PLANS GRID ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.plan-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.plan-card.highlight {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.plan-card.highlight::before {
    content: 'MÃS VENDIDO';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-blue);
    color: white;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 0;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 10px;
}

.plan-speed {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin: 10px 0;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: #10b981; /* Green check */
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-dark);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-block:hover {
    background: var(--primary-red);
}

/* ===== BUSINESS SECTIONS ===== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.business-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.business-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.12);
    transform: translateY(-6px);
}

.business-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

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

.modal-box {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

/* WhatsApp Lead Modals less wide */
#wa-modal-overlay .modal-box,
#footer-wa-modal .modal-box {
    max-width: 400px;
}

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

i.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

@media (max-width: 991.98px) {
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 0;
        z-index: 1000;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .mobile-menu-btn {
        display: block !important;
        margin-left: auto;
    }
    .main-nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .logo {
        flex: 1;
    }
    .top-nav .container {
        flex-direction: column;
        gap: 10px;
    }
    .hero-section { height: auto; min-height: 360px; }
    .hero-slide { flex-direction: column; justify-content: flex-start; align-items: stretch; padding-top: 20px; }
    .hero-image { position: relative; width: 100%; height: 190px; clip-path: none; margin-top: auto; }
    .hero-content { max-width: 100%; padding: 10px 20px; text-align: center; }
    .hero-content h2 { font-size: 1rem; margin-bottom: 2px; }
    .hero-content h1 { font-size: 1.65rem; word-wrap: break-word; margin-bottom: 10px; }
    .hero-content p { font-size: 0.82rem; margin-bottom: 12px; }
    .hero-content .btn-primary { padding: 8px 20px; font-size: 0.85rem; }
}

/* ===== CLARO-STYLE CARDS (ORANGE THEME) & TOGGLE ===== */
.plan-toggle-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}
.plan-toggle {
    background: #111827; /* Dark background matching footer */
    padding: 6px;
    border-radius: 40px;
    display: inline-flex;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}
.plan-toggle-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 35px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
.plan-toggle-btn.active {
    color: #ffffff;
    background: var(--primary-red); /* Site's orange */
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}
.hidden {
    display: none !important;
}

.claro-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    margin-top: 30px;
}
.claro-carousel {
    display: flex;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    scroll-behavior: smooth;
}
.claro-carousel::-webkit-scrollbar {
    display: none;
}
.claro-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.claro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Page Dots styling */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    background: #d1d5db; /* Grey inactive dot */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-dot.active {
    width: 28px; /* Active capsule */
    border-radius: 5px;
    background: var(--primary-red); /* Orange active pill */
}

/* PC View: Display centered side-by-side, no scroll, no arrows/dots */
@media (min-width: 769px) {
    .claro-carousel-wrapper {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .claro-carousel {
        justify-content: center;
        overflow-x: visible;
        scroll-snap-type: none;
        flex-wrap: nowrap;
        gap: 24px;
        padding-bottom: 0;
    }
    .claro-card {
        flex: 0 0 320px;
    }
    .claro-carousel-arrow {
        display: none !important;
    }
    .carousel-dots {
        display: none !important;
    }
}

/* Mobile View: Horizontal scrolling active, overlapping centered arrows, dots visible */
@media (max-width: 768px) {
    .claro-carousel-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .claro-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        flex-direction: row;
        gap: 16px;
        padding: 10px 20px 20px;
    }
    .claro-card {
        flex: 0 0 80%; /* Main card takes 80%, next card peeks in */
        scroll-snap-align: center;
    }
    .claro-carousel-arrow {
        display: flex !important;
        top: 40%; /* Centered vertically relative to the cards */
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .claro-arrow-left {
        left: 5px;
    }
    .claro-arrow-right {
        right: 5px;
    }
    .carousel-dots {
        display: flex;
    }
}
.claro-header {
    background: #f97316; /* Solid orange background */
    color: white;
    padding: 38px 20px 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.claro-tag {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: #000000;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0;
}
.claro-header-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
}
.claro-header i,
.claro-header-icons i {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 2px;
}
.claro-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    color: white;
    line-height: 1.2;
}
.claro-header p {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.3;
    margin: 0;
    color: white;
}
.claro-table {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
}
.claro-table-right {
    color: #111827;
    font-weight: 800;
}
.claro-details-trigger {
    padding: 16px 20px;
    color: #007685; /* Teal color matching the image */
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s;
}
.claro-details-trigger:hover {
    background-color: #f8fafc;
}
.claro-details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}
.claro-details-content.open {
    max-height: 300px;
    border-bottom: 1px solid #e2e8f0;
}
.claro-details-content ul {
    list-style: none;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.claro-details-content li {
    font-size: 0.85rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    line-height: 1.3;
}
.claro-details-content li i {
    color: #f97316; /* Orange checkmark */
    font-size: 0.95rem;
}
.claro-price-box {
    padding: 24px 20px;
    text-align: center;
}
.claro-price-box .lbl {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4b5563;
}
.claro-price-box .price {
    font-size: 2.6rem;
    font-weight: 900;
    color: #f97316;
    margin: 5px 0;
    line-height: 1;
}
.claro-price-box .sub {
    font-size: 0.85rem;
    color: #6b7280;
}
.claro-yellow-box {
    background: linear-gradient(135deg, #001a99 0%, #002ff5 100%); /* Match banner gradient */
    padding: 15px;
    margin: 0 20px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
}
.claro-btn {
    display: block;
    margin: 0 20px 20px;
    background: #f97316;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}
.claro-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
}
.claro-carousel-arrow {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
    position: absolute;
    z-index: 10;
    transition: all 0.2s ease;
}
.claro-carousel-arrow:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}
.claro-arrow-left { left: -20px; }
.claro-arrow-right { right: -20px; }

/* Modal Responsive Fix for Mobile */
@media (max-width: 768px) {
    .modal-box {
        width: 85%;
        max-width: 380px;
        padding: 15px;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .claro-arrow-left { left: 5px; }
    .claro-arrow-right { right: 5px; }
}

/* CHATBOT WIDGET STYLES */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

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

.chatbot-header {
    background: var(--primary-blue);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chatbot-header i {
    margin-right: 10px;
}

.chatbot-close {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-body {
    height: 350px;
    background: #f4f5f7;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-msg.bot {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chat-msg.user {
    background: var(--primary-blue);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chatbot-input {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.chatbot-input button {
    background: var(--primary-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chatbot-input button:hover {
    background: #e65c00;
}

.chatbot-trigger-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s;
}

.chatbot-trigger-btn:hover {
    transform: scale(1.1);
}

.chatbot-quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding: 0 5px;
}

.chat-opt-pill {
    background: white;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.chat-opt-pill:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 47, 245, 0.15);
}

/* =========================================
   BRAND LOGO DYNAMIC STYLES
   ========================================= */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 2.2rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
    text-decoration: none;
}
.brand-logo i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}
.brand-logo .mega-text {
    color: #000000; /* Black for light backgrounds */
}
.brand-logo-img {
    height: 42px;
    width: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
    animation: logo-pulse 3s infinite ease-in-out;
    transition: transform 0.2s ease;
}
.brand-logo-img:hover {
    animation-play-state: paused;
    transform: scale(1.06);
}
@keyframes logo-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}
@media (max-width: 768px) {
    .brand-logo-img {
        height: 35px;
    }
}
/* =========================================
   CARD HOVER MICRO-ANIMATIONS (MOVIMIENTO)
   ========================================= */
.action-card:hover, .plan-card:hover, .business-card:hover, .claro-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-radius: 20px !important; /* Más curvas las esquinas al pasar el mouse */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    z-index: 10;
}

/* ===== NOSOTROS PAGE STYLE ===== */
.about-hero {
    background-image: url('../img/nosotros-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    height: 420px;
}
.about-section {
    padding: 60px 0;
}
.about-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}
.about-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 10px auto 0;
    border-radius: 2px;
}
.about-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 768px) {
    .about-grid-2, .about-grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-hero {
        height: 220px;
    }
}
.about-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-red);
}
.about-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.about-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.about-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}
.about-history-content {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
}
.about-history-content p {
    margin-bottom: 15px;
}
.about-history-visual {
    background: linear-gradient(135deg, #001a99 0%, #002ff5 100%); /* Match banner gradient */
    color: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.about-history-visual h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.milestones-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.milestone-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.milestone-year {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-red);
    background: white;
    padding: 4px 10px;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
}
.milestone-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* =========================================
   QUICK ACTIONS OVERHAUL & UPGRADER WIZARD MODALS
   ========================================= */

/* Benefits list styling */
.benefits-list {
    margin-top: 15px;
}
.benefit-item {
    transition: transform 0.2s ease;
}
.benefit-item:hover {
    transform: translateX(4px);
}
.benefit-icon {
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.15);
    transition: transform 0.3s ease;
}
.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Upgrade option buttons (Step 1 Selection) */
.upgrade-option-btn {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-dark);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    outline: none;
    box-sizing: border-box;
}
.upgrade-option-btn:hover {
    background: #fff7ed;
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.12);
}
.upgrade-option-btn:active {
    transform: translateY(0);
}
.upgrade-option-btn .plan-name {
    display: flex;
    align-items: center;
    gap: 10px;
}
.upgrade-option-btn i {
    color: var(--primary-red);
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}
.upgrade-option-btn:hover i {
    transform: translateX(3px);
}

/* Recommendation cards (Step 2 Suggestions) */
.recommendation-card {
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}
.recommendation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}
.recommendation-card.selected {
    border-color: var(--primary-red);
    background: #fff7ed;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}
.recommendation-card .rec-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-blue);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 20px;
}
.recommendation-card .rec-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.recommendation-card .rec-speed {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 6px;
}
.recommendation-card .rec-speed i,
.recommendation-card .rec-benefit i {
    font-size: 0.8rem;
}
.recommendation-card .rec-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.recommendation-card .rec-benefit {
    font-size: 0.78rem;
    font-weight: 500;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}


/* Form input styles in modal */
#upgrade-contact-form input[readonly] {
    cursor: not-allowed;
}

/* =========================================
   TECNOLOGÍA SLIDER STYLES
   ========================================= */
.tech-slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    box-sizing: border-box;
}

.tech-slides-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%; /* 3 slides */
}

.tech-slide {
    width: 33.33333%;
    display: flex;
    flex-direction: column-reverse; /* Image on top, text below */
    align-items: stretch;
    box-sizing: border-box;
}

.tech-slide-content {
    width: 100%;
    padding: 30px 30px 55px; /* Leave space at bottom for centered dots */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

.tech-slide-icon {
    display: none;
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.tech-slide-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.tech-slide-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
}

.tech-slide-image {
    width: 100%;
    aspect-ratio: 8 / 5; /* Exact natural aspect ratio of the 800x500 images */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto;
    height: auto;
}

/* Navigation dots */
.tech-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.tech-dot {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--primary-blue);
}

/* Responsive Styles for Tech Slider */
@media (max-width: 768px) {
    .tech-slide-content {
        padding: 24px 20px 50px;
    }
    
    .tech-slide-content h3 {
        font-size: 1.2rem;
    }
    
    .tech-slide-content p {
        font-size: 0.9rem;
    }
}

/* =========================================
   HELP CENTER (SOPORTE.HTML) STYLES
   ========================================= */
.soporte-hero {
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.soporte-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.soporte-hero p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.soporte-search-box {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.soporte-search-box input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    outline: none;
    transition: all 0.3s ease;
}

.soporte-search-box input:focus {
    box-shadow: 0 8px 30px rgba(0, 47, 245, 0.25);
    transform: scale(1.02);
}

/* Category menu buttons */
.soporte-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    width: 100%;
}

.soporte-category-btn {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm);
}

.soporte-category-btn:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.12);
}

.soporte-category-btn i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.soporte-category-btn span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.soporte-category-btn.active {
    background: linear-gradient(135deg, #001a99 0%, #002ff5 100%) !important;
    border-color: #001a99 !important;
    box-shadow: 0 8px 20px rgba(0, 47, 245, 0.3);
}

.soporte-category-btn.active i,
.soporte-category-btn.active span {
    color: #ffffff !important;
}

/* Problem Cards */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.problem-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.problem-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-red);
}

.problem-card-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f1f5f9;
}

.problem-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    text-align: left;
}

.problem-card-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.problem-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

/* Solution Steps Accordion in Modal */
.solution-accordion-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.solution-accordion-header {
    background: #f8fafc;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.solution-accordion-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.solution-accordion-header i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.solution-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.solution-accordion-content.open {
    max-height: 600px;
    border-top: 1px solid var(--border);
}

.solution-accordion-body {
    padding: 16px 20px;
}

.solution-accordion-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.solution-step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: block;
    margin: 10px 0;
}

.solution-accordion-header.active i {
    transform: rotate(180deg);
}

/* FAQ Accordion Section */
.faq-accordion-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    transition: background-color 0.2s ease;
}

.faq-accordion-header:hover {
    background-color: #f8fafc;
}

.faq-accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.faq-accordion-header i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-content p {
    padding: 0 20px 20px 20px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-accordion-header.active i {
    transform: rotate(180deg);
}

/* Contact cards style */
.contacto-cards-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.contacto-opcion-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
}

.contacto-opcion-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary-red);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.12);
}

.contacto-opcion-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.contacto-opcion-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.contacto-opcion-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
}

/* Advisor choice selection cards */
.advisor-choice-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.advisor-choice-card:hover {
    border-color: var(--primary-red);
    background: #fff7ed;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.1);
}

.advisor-choice-card h4 {
    margin: 10px 0 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* CSS Media Query updates for Mobile Help Center */
@media (max-width: 768px) {
    .soporte-hero {
        padding: 40px 20px;
    }
    
    .soporte-hero h1 {
        font-size: 2rem;
    }
    
    .soporte-hero p {
        font-size: 1rem;
    }
    
    .soporte-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .soporte-category-btn {
        padding: 12px 8px;
    }
    
    .soporte-category-btn i {
        font-size: 1.5rem;
    }
    
    .soporte-category-btn span {
        font-size: 0.8rem;
    }
}

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

.btn-blue {
    background: linear-gradient(135deg, #001a99 0%, #002ff5 100%) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-blue:hover {
    background: #ffedd5 !important;
    color: #ea580c !important;
    border: 1px solid var(--primary-red) !important;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2) !important;
}

/* =========================================
   CONSULTA DE COBERTURA STYLES
   ========================================= */
.cobertura-card {
    border-radius: 20px;
    padding: 50px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-md);
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.cobertura-split {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cobertura-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    flex: 1 1 350px;
    max-width: 480px;
}

.cobertura-border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 40px;
}

/* Autocomplete suggestions dropdown list */
.cobertura-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    max-height: 220px;
    overflow-y: auto;
    margin-top: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-sizing: border-box;
}

/* Custom scrollbar for suggestions list */
.cobertura-suggestions::-webkit-scrollbar {
    width: 6px;
}
.cobertura-suggestions::-webkit-scrollbar-track {
    background: transparent;
}
.cobertura-suggestions::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
.cobertura-suggestions::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.cobertura-suggestion-item {
    padding: 14px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
    border-left: 3px solid transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cobertura-suggestion-item i {
    color: #94a3b8;
    transition: color 0.25s ease;
}

.cobertura-suggestion-item:last-child {
    border-bottom: none;
}

.cobertura-suggestion-item:hover {
    background-color: #f8fafc;
    color: var(--primary-blue);
    border-left: 3px solid var(--primary-blue);
    padding-left: 24px;
}

.cobertura-suggestion-item:hover i {
    color: var(--primary-blue);
}

/* Status Alert boxes */
.cobertura-status-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cobertura-card {
        padding: 40px 20px;
    }
    .cobertura-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cobertura-border-left {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 30px;
    }
}

/* Cobertura Flow Highlights */
@keyframes pulse-highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7), 0 4px 15px rgba(239, 68, 68, 0.3);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0), 0 4px 15px rgba(239, 68, 68, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0), 0 4px 15px rgba(239, 68, 68, 0.3);
    }
}

.pulse-highlight {
    animation: pulse-highlight 1.8s infinite !important;
    border: 2px solid #ffffff !important;
    background: #ff3b30 !important;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 237, 213, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 237, 213, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 237, 213, 0);
    }
}


.input-error-shake {
    border: 2px solid #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* =========================================
   CATÁLOGO DE PRODUCTOS Y SERVICIOS
   ========================================= */
.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.catalog-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.catalog-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #f1f5f9;
}

.catalog-card-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 47, 245, 0.3);
}

.catalog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.catalog-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.catalog-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.service-tag {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Modal Stepper & Multi-step form styles */
.catalog-opt-btn {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #f8fafc;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.catalog-opt-btn:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: var(--primary-blue);
    transform: translateX(4px);
}

.catalog-nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #f1f5f9;
    color: #475569;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.catalog-nav-btn:hover {
    background: #e2e8f0;
    color: var(--primary-dark);
}

.catalog-contact-opt:hover, .catalog-contact-opt.active {
    border-color: var(--primary-blue) !important;
    background: #eff6ff !important;
}

.stepper-step {
    border: 2px solid #e2e8f0;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #94a3b8;
    transition: all 0.3s;
}

.stepper-step.active {
    border-color: var(--primary-blue) !important;
    color: var(--primary-blue) !important;
}

/* =========================================
   PLAN RECOMMENDER SECTION STYLES
   ========================================= */
.recommender-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 60px 40px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.recommender-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 47, 245, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.rec-section-step {
    position: relative;
    z-index: 2;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rec-icon-header {
    font-size: 3.5rem;
    color: #38bdf8;
    margin-bottom: 20px;
    animation: bounceSlow 3s infinite alternate;
}

@keyframes bounceSlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.recommender-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.recommender-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.recommender-card p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-rec-primary {
    font-weight: 700;
    padding: 16px 45px;
    border-radius: 30px;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 47, 245, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-rec-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 47, 245, 0.5);
}

.rec-step-indicator {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #38bdf8;
    font-weight: 700;
    margin-bottom: 15px;
}

.rec-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 35px;
}

@media (min-width: 576px) {
    .rec-options-grid {
        grid-template-columns: 1fr 1fr;
    }
    .rec-options-grid.full-width {
        grid-template-columns: 1fr;
    }
}

/* Custom Radio & Checkbox Cards */
.rec-radio-option, .rec-checkbox-option {
    background: rgba(30, 41, 59, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    position: relative;
    text-align: left;
}

.rec-radio-option input, .rec-checkbox-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.rec-radio-option:hover, .rec-checkbox-option:hover {
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(30, 41, 59, 0.9);
}

.rec-radio-option input:checked ~ .option-label,
.rec-checkbox-option input:checked ~ .option-label {
    color: #38bdf8;
}

.rec-radio-option input:checked, 
.rec-radio-option:has(input:checked),
.rec-checkbox-option:has(input:checked) {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #64748b;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.rec-radio-option input:checked ~ .custom-radio {
    border-color: #38bdf8;
}

.rec-radio-option input:checked ~ .custom-radio::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #38bdf8;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #64748b;
    border-radius: 6px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.rec-checkbox-option input:checked ~ .custom-checkbox {
    border-color: #38bdf8;
    background: #38bdf8;
}

.rec-checkbox-option input:checked ~ .custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    color: #0f172a;
    font-size: 0.75rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-label {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-label i {
    font-size: 1.1rem;
    color: #64748b;
    transition: color 0.25s;
}

.rec-radio-option:hover .option-label i,
.rec-checkbox-option:hover .option-label i,
.rec-radio-option input:checked ~ .option-label i,
.rec-checkbox-option input:checked ~ .option-label i {
    color: #38bdf8;
}

/* Nav Buttons */
.rec-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-rec-nav {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-rec-back {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-rec-back:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.btn-rec-next {
    background: #38bdf8;
    color: #0f172a;
}

.btn-rec-next:hover {
    background: #0ea5e9;
    transform: translateX(2px);
}

.btn-rec-finish {
    background: #10b981;
    color: white;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.btn-rec-finish:hover {
    background: #059669;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* Result Box Styles */
.rec-result-box {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    margin-bottom: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.rec-result-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 10px;
    text-align: left;
}

.rec-result-box p {
    margin: 0 0 25px 0;
    text-align: left;
    max-width: 100%;
}

.rec-benefits-container h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rec-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

.rec-benefit-item {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.rec-benefit-item i {
    color: #10b981;
    margin-top: 3px;
    font-size: 1rem;
}

/* TV Extra Card */
.rec-tv-extra {
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rec-tv-extra-header {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fb923c;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rec-tv-extra-header i {
    font-size: 1.25rem;
}

.rec-tv-extra p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
}

/* Result Actions */
.rec-result-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

@media (min-width: 576px) {
    .rec-result-actions {
        flex-direction: row;
    }
}

.btn-rec-action {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-rec-apply {
    background: #f97316;
    color: white;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.btn-rec-apply:hover {
    background: #ea580c;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.55);
    transform: translateY(-2px);
}

.btn-rec-chat {
    background: #002ff5;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 47, 245, 0.35);
}

.btn-rec-chat:hover {
    background: #001a99;
    box-shadow: 0 12px 30px rgba(0, 47, 245, 0.55);
    transform: translateY(-2px);
}

/* Benefit Cards in feature section */
.benefit-card {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
    margin-top: 0;
}

.benefit-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    margin: 0;
}

/* =========================================
   CONTACT PAGE GRID & CARDS
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr; /* Info card is narrower, form card is wider */
    gap: 40px;
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
    align-items: start;
    box-sizing: border-box;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

/* Responsive adjustments for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 30px;
        margin: 20px auto;
        padding: 0 15px;
    }
}






