/* ==========================================
   VELOO TELECOM - MODERN ISP WEBSITE
   Design System & Styles
   ========================================== */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Colors */
    --primary-blue: #1E3A8A;
    --primary-blue-dark: #1E3A8A;
    --primary-blue-light: #3B82F6;
    --accent-blue: #60A5FA;
    --secondary-purple: #1E6BF1;
    --gradient-start: #1E3A8A;
    --gradient-end: #1E6BF1;

    --success-green: #22C55E;
    --success-green-dark: #16A34A;

    --blue-highlight: #2C6FFF;

    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-white: #FFFFFF;

    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --bg-dark: #111827;

    --border-color: #E5E7EB;

    /* Typography */
    --font-family: 'Exo 2', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

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

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

/* ==========================================
   CONTAINER
   ========================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

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

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

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple));
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-green) 0%, var(--success-green-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

.btn-ghost {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-light {
    background: var(--text-white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-blue);
}

/* ==========================================
   HERO CAROUSEL
   ========================================== */
.hero {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: calc(80px + 1rem);
    border-radius: 20px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563EB 50%, var(--secondary-purple) 100%);
    overflow: hidden;
}

.carousel-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(124, 58, 237, 0.5) 100%);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #22C55E 100%);
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #A855F7 100%);
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(15px, 15px) rotate(3deg);
    }
}

.carousel-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding-top: 80px;
    gap: 3rem;
}

.carousel-text {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-green {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.badge-purple {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.brand-name {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.city-name {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #FCD34D, #F59E0B, #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-text {
    display: block;
    font-size: 2rem;
    font-weight: 400;
}

.highlight-text {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.speed-number {
    display: block;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
}

.speed-unit {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.3em;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.carousel-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3), transparent 70%);
    animation: pulse 3s infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    animation: floatIcon 3s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.icon-wifi {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-speed {
    top: 50%;
    right: 5%;
    animation-delay: -1s;
}

.icon-cloud {
    bottom: 20%;
    left: 30%;
    animation-delay: -2s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Promo Card */
.promo-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.promo-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.promo-value {
    display: block;
    font-size: 4rem;
    font-weight: 800;
}

.promo-desc {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

/* Speed Meter */
.speed-meter {
    position: relative;
    width: 300px;
    height: 300px;
}

.meter-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.meter-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
}

.meter-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: waveExpand 2s infinite;
}

.wave-1 {
    width: 220px;
    height: 220px;
    animation-delay: 0s;
}

.wave-2 {
    width: 260px;
    height: 260px;
    animation-delay: 0.5s;
}

.wave-3 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: var(--transition-normal);
    cursor: pointer;
}

.carousel-dot.active {
    width: 40px;
    border-radius: var(--radius-full);
    background: var(--text-white);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    z-index: 20;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
}

.carousel:hover .carousel-nav,
.carousel:hover .carousel-arrow {
    opacity: 1;
    visibility: visible;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* ==========================================
   FEATURES BAR
   ========================================== */
.features-bar {
    background: linear-gradient(135deg, #1E6BF1 0%, #3B82F6 100%);
    padding: 1.5rem 2rem;
    padding-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 100;
    margin-top: 1rem;
    border-radius: 20px;
    margin-left: 2rem;
    margin-right: 2rem;
    overflow: hidden;
}

.features-bar>.container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--success-green);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
}

.feature-badge-round {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--success-green);
    color: var(--text-white);
    font-size: 0.6rem;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}



/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius-full);
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   PLANS SECTION
   ========================================== */
.plans-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

/* Plan Toggle Tabs */
.plan-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.plan-toggle-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.plan-toggle-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: var(--transition-normal);
    white-space: nowrap;
}

.plan-toggle-tab:hover {
    color: var(--primary-blue);
    background: rgba(30, 107, 241, 0.1);
}

.plan-toggle-tab.active {
    background: var(--blue-highlight);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.plan-toggle-tab i {
    font-size: 1rem;
}

@media (max-width: 992px) {
    .plan-toggle-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plan-toggle-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .plan-toggle-container {
        width: 100%;
    }

    .plan-toggle-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .plan-toggle-tab {
        justify-content: center;
        padding: 0.65rem 0.5rem;
        font-size: 0.8rem;
    }

    .plan-toggle-tab span {
        display: block;
    }
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    position: relative;
    background: var(--bg-white);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: none;
    transition: var(--transition-normal);
    overflow: visible;
    border: 6px solid var(--blue-highlight);
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    /* Leave space for absolute badge */
}

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

.plan-card.plan-featured {
    border-color: var(--blue-highlight);
    transform: scale(1.05);
    z-index: 10;
}

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

.plan-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--text-white);
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header {
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.plan-badge {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 10px;
    background: var(--blue-highlight);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.plan-badge-ultra {
    background: linear-gradient(135deg, var(--secondary-purple), #A855F7);
}

.plan-speed {
    text-align: center;
}

.plan-speed .speed-value {
    display: block;
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-speed .speed-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

.plan-body {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.5rem;
}

.plan-features {
    margin-bottom: 0.5rem;
    flex-grow: 0;
    min-height: auto;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.plan-features li i {
    color: var(--success-blue);
    font-size: 0.9rem;
}

.plan-price {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0 0.25rem;
}

.plan-price .price-label {
    width: 100%;
    margin-bottom: 0.25rem;
}

/* Streaming Logos Section */
.streaming-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding: 1rem 0.5rem;
    margin-top: 1rem;
    position: relative;
    max-width: 100%;
}

.streaming-logo {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.streaming-logo:hover {
    opacity: 1;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--blue-highlight);
    margin-bottom: 0.5rem;
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price-value .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue-highlight);
    margin-top: 0.5rem;
}

.price-value .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--blue-highlight);
}

.price-value .cents {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--blue-highlight);
}

.price-period {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--blue-highlight);
    align-self: flex-end;
    margin-bottom: 0.5rem;
}



.plan-footer {
    padding-top: 1.5rem;
}

.btn-plan {
    width: 100%;
    padding: 0rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--text-white);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    font-size: 30px;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-plan-featured {
    width: 100%;
    padding: 0rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: var(--text-white);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    font-size: 30px;
}

.btn-plan-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.plans-cta {
    text-align: center;
}

/* Streaming Section */
.streaming-section {
    padding-top: 0.3rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-bottom: 0.1rem;
}



.streaming-included {
    margin-bottom: 0.75rem;
}

.streaming-additional {
    padding-top: 0.5rem;
}

.streaming-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-highlight);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -1.5rem;
    text-align: left;
}

.streaming-additional .streaming-label {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.streaming-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.5rem 0;
}

.streaming-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: var(--transition-normal);
}

.streaming-logo:hover {
    transform: scale(1.1);
}

.streaming-note {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: left;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ==========================================
   WHY SECTION
   ========================================== */
.why-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Grid 4 cards lado a lado */
.why-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}


.why-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.why-card:hover {
    background: var(--bg-white);
    border-color: var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   CORPORATE SECTION
   ========================================== */
.corporate-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(30, 107, 241, 0.85) 0%, rgba(30, 80, 180, 0.85) 100%),
        url('../images/corporativo_background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.corporate-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.corporate-text {
    color: var(--text-white);
}

.corporate-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.corporate-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.corporate-features {
    margin-bottom: 2.5rem;
}

.corporate-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.corporate-features li i {
    color: #34D399;
    font-size: 1.1rem;
}

.corporate-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.corporate-visual {
    display: flex;
    justify-content: center;
}

.corporate-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.corporate-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.corporate-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Corporate Highlights */
.corporate-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.highlight-box h4 i {
    margin-right: 0.5rem;
}

/* Corporate Services */
.corporate-services {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.corporate-services h4,
.corporate-backbone h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.corporate-backbone h4 i {
    margin-right: 0.5rem;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Corporate Backbone */
.corporate-backbone {
    margin-bottom: 1.5rem;
}

.backbone-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.backbone-city {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.backbone-city.backbone-main {
    background: linear-gradient(135deg, #34D399, #10B981);
    color: var(--text-white);
    font-weight: 600;
}

.backbone-city.backbone-main i {
    font-size: 0.75rem;
}

/* ==========================================
   COVERAGE SECTION
   ========================================== */
.coverage-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.coverage-map-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.coverage-states h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.states-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.state-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.state-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.state-card i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.state-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.coverage-cta-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.social-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info p,
.social-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.social-instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.social-facebook {
    background: #1877F2;
}

.social-linkedin {
    background: #0A66C2;
}

.social-whatsapp {
    background: #25D366;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    color: var(--text-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-contact p i {
    color: var(--accent-blue);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Footer Social Section */
.footer-social {
    margin-top: 1.5rem;
}

.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.footer-social>p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-social .social-links {
    display: flex;
    gap: 0.75rem;
}

/* Footer App Download */
.footer-app {
    margin-top: 1.5rem;
}

.footer-app h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.app-links {
    display: flex;
    gap: 0.5rem;
}

.app-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.app-link i {
    font-size: 1rem;
}

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: wa-float 3s ease-in-out infinite;
}

@keyframes wa-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation-play-state: paused;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue-light);
    transform: translateY(-3px);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card.plan-featured {
        transform: scale(1);
        grid-column: span 2;
        max-width: 100%;
        width: 100%;
        justify-self: stretch;
    }

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

    .why-grid,
    .why-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .why-card {
        padding: 2rem;
    }

    .corporate-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .corporate-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
    }

    .btn-outline {
        display: none;
    }

    .hero {
        display: none;
    }

    .features-bar {
        margin-top: calc(80px + 1rem);
    }

    .coverage-map {
        display: none;
    }

    .coverage-content {
        grid-template-columns: 1fr;
    }

    .carousel-content {
        flex-direction: column;
        text-align: center;
        padding: 120px 1rem 100px;
    }

    .carousel-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .brand-name {
        font-size: 3rem;
    }

    .city-name {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 3.5rem;
    }

    .speed-number {
        font-size: 5rem;
    }

    .speed-unit {
        font-size: 2rem;
    }

    .carousel-image {
        display: none;
    }

    .carousel-arrow {
        display: none;
    }

    .features-bar {
        margin-top: calc(80px + 1rem);
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: var(--radius-lg);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .feature-text h4 {
        font-size: 0.9rem;
    }

    .feature-text p {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.plan-featured {
        grid-column: auto;
        max-width: 100%;
    }

    .why-grid,
    .why-grid-4 {
        grid-template-columns: 1fr !important;
    }

    .why-card {
        padding: 1.5rem;
    }

    .why-card h3 {
        font-size: 1.1rem;
    }

    .corporate-title {
        font-size: 2rem;
    }

    .corporate-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .app-links {
        justify-content: center;
    }

    .coverage-states {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .corporate-buttons {
        flex-direction: column;
    }

    .corporate-buttons .btn {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==========================================
   TERMS PAGE
   ========================================== */
.terms-section {
    padding: 10rem 0 4rem;
    background: var(--bg-light);
    min-height: 100vh;
}

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

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.terms-intro {
    color: var(--text-light);
    font-size: 1rem;
}

.terms-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.terms-item {
    margin-bottom: 2.5rem;
}

.terms-item:last-child {
    margin-bottom: 0;
}

.terms-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.terms-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-item ul {
    list-style: disc;
    margin-left: 2rem;
    color: var(--text-dark);
}

.terms-item li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.terms-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 6rem 0 3rem;
    }

    .terms-title {
        font-size: 2rem;
    }

    .terms-content {
        padding: 2rem;
    }

    .terms-item h2 {
        font-size: 1.25rem;
    }
}

/* ==========================================
   PLAN TOGGLES & MOVEL FEATURES (MOVED FROM TV.CSS)
   ========================================== */
TV PACKAGE TOGGLE SWITCH==========================================*/ .tv-package-toggle {
    margin: 0.1rem 0 1.4rem;
    padding-top: 0.15rem;
}

.toggle-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-align: center;
}

.toggle-buttons {
    display: flex;
    background: #f0f4f8;
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
}

.toggle-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.5rem;
    border: none;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.toggle-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.toggle-btn.active {
    background: white;
    border: 1px solid var(--blue-highlight);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-btn .pkg-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}

.toggle-btn.active .pkg-name {
    color: var(--blue-highlight);
}

.toggle-btn.active .pkg-name::before {
    display: none;
}

.toggle-btn .pkg-channels {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 2px;
}

.toggle-btn.active .pkg-channels {
    color: var(--blue-highlight);
}

/* Featured card toggle */
.plan-featured .toggle-buttons {
    background: #f0f4f8;
}

.plan-featured .toggle-btn.active {
    background: white;
}

/* Responsive toggle */
@media (max-width: 576px) {
    .toggle-btn {
        padding: 0.5rem 0.25rem;
    }

    .toggle-btn .pkg-name {
        font-size: 0.75rem;
    }

    .toggle-btn .pkg-channels {
        font-size: 0.65rem;
    }
}

/* Smooth price animation */
.plan-price .amount,
.plan-price .cents {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.plan-price.animating .amount,
.plan-price.animating .cents {
    transform: translateY(-10px);
    opacity: 0;
}

.plan-features li:last-child {
    transition: all 0.3s ease;
}

.plan-features li.animating {
    opacity: 0;
    transform: translateX(-10px);
}

/* Custom Combo Link */
.custom-combo {
    text-align: center;
    margin: 0.5rem 0;
    padding-top: 0.5rem;
}

.custom-combo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-combo-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.custom-combo-link i {
    font-size: 1rem;
}



/* Logo-based Toggle Buttons */
.streaming-logo-toggle .logo-buttons {
    display: flex;
    gap: 0.5rem;
    background: #f0f0f0;
    padding: 0.5rem;
    border-radius: 16px;
}

.streaming-logo-toggle .toggle-btn {
    flex: 1;
    padding: 0.5rem;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.streaming-logo-toggle .toggle-btn .toggle-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.streaming-logo-toggle .toggle-btn:hover .toggle-logo {
    filter: grayscale(50%);
    opacity: 0.7;
}

.streaming-logo-toggle .toggle-btn.active {
    background: white;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(30, 107, 241, 0.3);
    outline: none;
}

.streaming-logo-toggle .toggle-btn.active .toggle-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* Hide the bullet point on logo toggles */
.streaming-logo-toggle .toggle-btn::before,
.streaming-logo-toggle .toggle-btn *::before {
    display: none !important;
    content: none !important;
}

/* Sliding Toggle Indicator */
.toggle-slider {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(30, 107, 241, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.streaming-logo-toggle .toggle-btn {
    position: relative;
    z-index: 1;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.streaming-logo-toggle .toggle-btn.active {
    background: transparent !important;
}

/* ==========================================
   STREAMING CHECKBOX SELECTION
   ========================================== */
.streaming-selection {
    margin: 1rem 0;
    padding-top: 0.5rem;
}

.streaming-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.streaming-checkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 70px;
}

.streaming-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.streaming-checkbox .checkbox-logo {
    height: 35px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.streaming-checkbox .checkbox-price {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
}

.streaming-checkbox:hover .checkbox-logo {
    filter: grayscale(50%);
    opacity: 0.7;
}

.streaming-checkbox.active {
    background: white;
    border-color: rgb(44, 111, 255);
    box-shadow: 0 2px 10px rgba(30, 107, 241, 0.2);
}

.streaming-checkbox.active .checkbox-logo {
    filter: grayscale(0);
    opacity: 1;
}

.streaming-checkbox.active .checkbox-price {
    color: rgb(44, 111, 255);
}

.streaming-checkbox.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: rgb(44, 111, 255);
    border: 2px solid rgb(44, 111, 255);
    box-shadow: 0 2px 10px rgba(30, 107, 241, 0.2);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .streaming-checkbox {
        min-width: 60px;
        padding: 0.4rem;
    }

    .streaming-checkbox .checkbox-logo {
        height: 28px;
    }

    .streaming-checkbox .checkbox-price {
        font-size: 0.6rem;
    }
}

/* Disabled Subscribe Button */
.btn-disabled {
    background: #d1d5db !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.6;
    filter: grayscale(100%);
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ==========================================
   VELOMOVEL FEATURES 
   ========================================== */
.velomovel-features {
    margin: 1rem 0;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.velomovel-feature-box {
    display: none;
    text-align: center;
}

.velomovel-feature-box.active {
    display: block;
}

.velomovel-feature-box .feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.velomovel-feature-box .feature-title i {
    margin-right: 0.25rem;
}

.velomovel-feature-box .feature-detail {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.velomovel-feature-box .feature-lines {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.velomovel-feature-box .feature-lines li {
    padding: 0.15rem 0;
}

.velomovel-feature-box .feature-lines li::before {
    content: 'â€¢';
    margin-right: 0.35rem;
    color: var(--primary-blue);
}

.cms-FloatingButton-notification-icon {
    font-size: .7rem;
    font-family: var(--font-family--highlight);
    font-weight: 500;
    border-radius: 50% 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    border: 1px solid #fff;
    background: #ff2c2c;
    position: absolute;
    bottom: 42px;
    right: -4px;
}

/* ==========================================
   PLAN TOGGLE - Classes para eliminar inline styles
   Usadas nos cards gerados dinamicamente por plan-toggle.js
   ========================================== */


/* Borda superior do bloco de preço */
.plan-price--bordered {
    border-top: 2px solid #e5e7eb;
}

/* Caixa de feature de dados (VelooMóvel) */
.feature-box {
    background: #f0f7ff;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--blue-highlight);
    text-align: center;
}

/* Container de features de dados (VelooMóvel - 5GB/15GB) */
.features-data-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Container de features do 50GB (Individual/Família) */
.features-50gb-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Visão Individual — exibida por padrão */
.features-50gb-individual {
    text-align: center;
}

/* Visão Família — oculta por padrão, JS alterna */
.features-50gb-familia {
    display: none;
    text-align: center;
}

/* Nome do plano dentro da feature-box */
.data-plan-name {
    color: var(--blue-highlight);
    font-weight: 700;
}

/* Detalhe de dados dentro da feature-box */
.data-plan-price {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Toggle de dados VelooMóvel (5GB/10GB, 15GB/30GB) */
.velomovel-data-toggle {
    padding-top: 1rem;
    margin-top: 0.5rem;
}

/* Toggle de linhas VelooMóvel (50GB Individual/Família) */
.velomovel-50gb-toggle {
    padding-top: 1rem;
    margin-top: 0.5rem;
}

/* Seção de toggle de pacote de TV — com espaçamento superior */
.tv-package-toggle--spaced {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

/* Wrapper do logo + texto "Conheça o Veloo Play" */
.velooplay-promo-wrap {
    text-align: center;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.velooplay-promo-logo {
    height: 50px;
}

.velooplay-promo-text {
    color: var(--blue-highlight);
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.2;
}

/* Link "Veja a grade de canais" no card VelooPlay */
.grade-link {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--blue-highlight);
    text-decoration: none;
    text-align: center;
    transition: var(--transition-normal);
}

.grade-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Label "Turbine com nossos apps" */
.toggle-label--turbo {
    display: block;
    text-align: center;
    color: var(--blue-highlight);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Mensagem vazia de streaming (substitui inline style) */
.streaming-empty-msg {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Item de feature VelooMóvel com ícone WhatsApp */
.plan-features li.feature-li--app {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
}

.feature-li--app-label {
    color: #60a5fa;
    font-size: 0.85rem;
}

.feature-li--app-icons {
    margin-top: 0.5rem;
}

.feature-li--app-icons .fa-whatsapp {
    color: #25D366;
    font-size: 2.2rem;
    background: #fff;
    border-radius: 50%;
}

/* Header do categoria na loja (substitui inline style) */
.store-category-header {
    grid-column: 1 / -1;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.store-category-header--flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.store-category-header--flex h3 {
    margin: 0;
    color: var(--text-dark);
}

/* Aviso Playhub (substitui inline style) */
.playhub-notice {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    border-left: 4px solid #ffeeba;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Product card position (substitui style="position: relative") */
.product-card {
    position: relative;
}

/* Seção adicional de streaming (logo abaixo do incluso principal) */
.streaming-section.additional-streaming {
    margin-top: 0.5rem;
}

/* Streaming-included secundário (ex: VelooPlay logo abaixo do MaisTV) */
.streaming-included+.streaming-included {
    margin-top: 0.5rem;
}

/* Ícone dentro do grade-link */
.grade-link i {
    margin-right: 0.3rem;
}