/* -------------------------------------------------------------------------- */
/*                                 Variables                                  */
/* -------------------------------------------------------------------------- */
:root {
    /* Exact Colors from Analysis */
    --color-primary-cyan: #1A9FDC;
    --color-dark-blue: #01285B;
    --color-dark-purple: #17044A;
    --color-bg-deep: #000632;
    --color-text-white: #FFFFFF;
    --color-text-black: #000000;

    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
    --border-radius-card: 43px;
    --border-radius-btn: 10px;
}

/* -------------------------------------------------------------------------- */
/*                               Global Reset                                 */
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-bg-deep);
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll from mobile menu */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* -------------------------------------------------------------------------- */
/*                                 Utilities                                  */
/* -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius-btn);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.7px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--color-primary-cyan);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--color-primary-cyan);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.highlight-cyan {
    color: var(--color-primary-cyan);
}

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

.mt-2 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------- */
/*                                  Header                                    */
/* -------------------------------------------------------------------------- */
/* Header Layout Wrapper (Transparent) */
.header {
    background-color: transparent;
    /* No background on wrapper */
    height: var(--header-height);
    position: fixed;
    width: 100%;
    /* Full width to use edges */
    max-width: none;
    /* No max width, span entire screen */
    top: 20px;
    left: 0;
    transform: none;
    /* No centering transform needed if left/width 100% */
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0 40px;
    /* Outer padding to keep elements from strictly hitting screen edge */
    /* Removed border-radius, box-shadow, backdrop-filter from here */
}

/* Navbar Flex Container */
/* Navbar Flex Container */
.navbar {
    display: flex;
    justify-content: center;
    /* Center the nav-pill */
    align-items: center;
    width: 100%;
    position: relative;
    /* Context for absolute logo */
}

/* Logo Styles */
.logo {
    position: absolute;
    /* Take out of flow */
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    padding-left: 0;
}

.logo img {
    max-height: 100px;
    /* Controlled size */
    width: auto;
    transition: max-height 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Nav Pill (The actual visual menu) */
.nav-pill {
    display: flex;
    align-items: center;
    background-color: rgba(var(--color-bg-deep-rgb, 10, 15, 30), 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    /* Squared pill */
    padding: 25px 100px;
    /* Massive padding as requested */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled .nav-pill {
    background-color: rgba(var(--color-bg-deep-rgb, 10, 15, 30), 0.7);
    /* Keep frosty look when scrolled */
    backdrop-filter: blur(15px);
    /* Slightly stronger blur for readability on move */
}

.header:not(.scrolled) .nav-pill {
    background-color: rgba(var(--color-bg-deep-rgb, 10, 15, 30), 0.7);
}

.area-cliente-btn {
    padding: 8px 20px;
    font-size: 10px;
    margin-left: 50px;
    /* Push to the right inside the pill */
}

/* Mobile only utility */
.mobile-only,
.mobile-only-item {
    display: none !important;
}

.desktop-only {
    display: inline-flex;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
        margin-top: 20px;
    }

    .desktop-only {
        display: none;
    }
}

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

.logo img {
    max-height: 150px;
    /* Increased further to 150px as requested */
    width: auto;
    transition: max-height 0.3s ease;
}

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

.nav-links a {
    font-weight: 400;
    font-size: 16px;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: 0.3s;
}

/* -------------------------------------------------------------------------- */
/*                                   Hero                                     */
/* -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Use the overlay logic from original: deep blue background + overlay image */
    background: var(--color-bg-deep);
    /* Default dark background */
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

/* Simulate the background overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_overlay.png');
    /* Restored missing background */
    /* Placeholder or original URL */
    background-size: 75%;
    /* Increased from 50% to 75% as requested */
    background-position: right bottom;
    /* Aligned to bottom right to sit on next section */
    background-repeat: no-repeat;
    /* Prevent tiling */
    background-attachment: scroll;
    /* Safer for mobile responsiveness */
    /* For that parallax feel */
    opacity: 0.2;
    /* Tweak to match visual */
}



/* Wifi Icon Floating */
.floating-wifi {
    position: absolute;
    top: 20%;
    /* Moved down to be visible below header */
    right: 5%;
    width: 60px;
    /* Reduced from 80px */
    height: auto;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
    transform: rotate(15deg);
}

/* Secondary Wifi Icons */
.wifi-2 {
    top: -10%;
    /* Moved HIGHER as requested to clear text */
    bottom: auto;
    left: 10%;
    right: auto;
    width: 45px;
    /* Reduced from 60px */
    opacity: 0.6;
    /* Increased transparency for subtle effect */
    transform: rotate(-15deg);
    animation-delay: 1s;
}

.wifi-3 {
    top: 15%;
    right: 35%;
    width: 30px;
    /* Reduced from 40px */
    opacity: 0.6;
    z-index: 1;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Mobile Adjustment for Wifi */
@media (max-width: 900px) {
    .floating-wifi {
        width: 50px;
        top: 10%;
        /* Also moved up on mobile */
        right: 5%;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    /* Approx 64px */
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-text h1 span {
    display: block;
    color: white;
}

/* -------------------------------------------------------------------------- */
/*                                Streaming                                   */
/* -------------------------------------------------------------------------- */
.streaming {
    padding: 60px 0;
    background-color: var(--color-bg-deep);
    text-align: center;
}

.streaming h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-item img {
    height: 40px;
    /* Adjusted based on analysis */
    object-fit: contain;
}

.cta-streaming {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-streaming .btn-outline {
    border-radius: 10px;
}

/* -------------------------------------------------------------------------- */
/*                                   Plans                                    */
/* -------------------------------------------------------------------------- */
.planos {
    padding: 80px 0;
    background-color: #FFFFFF;
    /* The section behind plans is white in some parts, or extracted css suggests white background for container */
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--color-text-black);
    margin-bottom: 60px;
    font-weight: 800;
}

.plans-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Crucial for vertical pyramid alignment */
    gap: 15px;
    /* Tighter gap for pyramid feel */
    flex-wrap: nowrap;
    /* Force single line on desktop */
}

/* Base Card Style */
.plan-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    width: 240px;
    /* Reduced from 280px */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 1;
    /* Allow shrinking if screen is tight */
    margin: 0 5px;
    /* Ensure uniform base spacing */
}

/* Scale for Pyramid Effect (Desktop) */
@media (min-width: 1024px) {

    /* Center Card (500mb) - Largest/Tallest */
    .plan-card:nth-child(3) {
        transform: scale(1.15);
        z-index: 10;
        box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
    }

    /* Adjacent Cards (200mb/300mb) - Medium */
    .plan-card:nth-child(2),
    .plan-card:nth-child(4) {
        transform: scale(1.05);
        /* Slightly bigger than base */
        z-index: 5;
    }

    /* Outer Cards (50mb/100mb) - Smallest/Base */
    .plan-card:nth-child(1),
    .plan-card:nth-child(5) {
        transform: scale(0.95);
        /* Slightly smaller than base */
        opacity: 0.9;
    }
}

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

/* Header area inside card (Top 15%) */
/* Header area inside card (Top 15%) */
.plan-header {
    height: 120px;
    /* Approx 15% visual height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 50px;
    /* Added gap to prevent 50MB from sticking to title */
}

.plan-card h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
    padding: 0 10px;
}

.plan-speed {
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

.plan-features {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-features li {
    font-size: 16px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.divider {
    width: 60%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px auto;
}

/* Card Variants */

/* Dark Blue Variant (Social, Work) */
.card-dark-blue {
    /* CSS Gradient: Top 15% Blue, Rest Dark Blue */
    background-image: linear-gradient(180deg, var(--color-primary-cyan) 1rem, var(--color-dark-blue) 1rem);
    /* NOTE: "15%" depends on height, hard to do strictly with %, using REM approx or just stick to standard gradient stop */
    background: linear-gradient(180deg, var(--color-primary-cyan) 0%, var(--color-primary-cyan) 85px, var(--color-dark-blue) 85px, var(--color-dark-blue) 100%);
    color: white;
}

/* Dark Purple Variant (Movies, Basic) */
.card-dark-purple {
    background: linear-gradient(180deg, var(--color-primary-cyan) 0%, var(--color-primary-cyan) 85px, var(--color-dark-purple) 85px, var(--color-dark-purple) 100%);
    color: white;
}

/* White Center Variant (Games/Netflix) */
/* White Center Variant (Games/Netflix) */
.card-white {
    background: #FFFFFF;
    color: var(--color-primary-cyan);
    box-shadow: 0px 0px 49px 13px rgba(0, 0, 0, 0.42);
    transform: scale(1.05);
    z-index: 5;
    overflow: hidden;
    padding: 0 !important;
    min-height: 520px;
    /* Reduced height */
    display: flex;
    flex-direction: column;
}

/* Transparent wrapper, content starts at top */
/* Transparent wrapper, content starts at top */
.card-white .plan-header {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
    /* Space between header and list */
    justify-content: flex-start;
    width: 100%;
    height: auto !important;
    /* Crucial: Allow content to push list down */
}

/* Blue Strip Title (Touching Top & Sides) */
.card-white h3 {
    background-color: var(--color-primary-cyan);
    color: #FFFFFF !important;
    width: 100%;
    padding: 25px 0;
    /* Reduced padding */
    margin: 0;
    border-radius: 0;
}

/* Blue Number */
.card-white .plan-header .plan-speed {
    color: var(--color-primary-cyan) !important;
    align-self: center;
    margin-top: 15px;
    margin-bottom: 30px;
    /* Fix overlap with features */
    padding-bottom: 0;
}

/* Restore padding for features since card has 0 padding */
.card-white .plan-features {
    padding: 10px 20px 30px 20px;
}

.card-white .plan-features li {
    color: var(--color-primary-cyan);
    /* Body text is blue */
}

.card-white .divider {
    background-color: var(--color-primary-cyan);
    opacity: 0.3;
}

/* Fix button size in white card */
.card-white .btn {
    width: auto;
    display: inline-block;
    padding: 10px 30px;
    /* Standard size */
    margin: 20px auto;
    align-self: center;
    border-radius: var(--border-radius-btn);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                Why Us                                      */
/* -------------------------------------------------------------------------- */
.why-us {
    padding: 100px 0 0;
    /* Remove bottom padding so image sits flush */
    background-color: var(--color-bg-deep);
    position: relative;
}

.why-us::before {
    content: '';
    background-image: url('../images/pattern_overlay.png');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    background-size: cover;
}

.image-side img {
    max-width: 75%;
    /* Reduced size further as requested */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Center it */
    margin-bottom: 0px;
    /* Reset negative margin */
    vertical-align: bottom;
}

.split-layout {
    align-items: end;
    /* Align items to bottom so image sits flush */
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-side h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.text-side p {
    color: white;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item h3 {
    font-size: 17px;
    font-weight: 600;
}

.feature-item p {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 0;
}

.feature-item i {
    font-size: 40px;
    color: var(--color-primary-cyan);
    margin-bottom: 15px;
}

/* -------------------------------------------------------------------------- */
/*                              Company Intro                                 */
/* -------------------------------------------------------------------------- */
.company-intro {
    padding: 60px 0;
    background-color: var(--color-dark-blue);
    color: white;
}

.intro-text .intro-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

.intro-text strong {
    color: var(--color-primary-cyan);
    font-weight: 700;
}

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

.intro-logo img {
    max-width: 250px;
    height: auto;
}

/* -------------------------------------------------------------------------- */
/*                                   Stats                                    */
/* -------------------------------------------------------------------------- */
.stats {
    padding: 20px 0 80px;
    /* Reduced top padding significantly */
    background-color: white;
    /* Analysis says white background for stats section */
    color: black;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 64px;
    font-weight: 600;
    color: black;
    line-height: 1;
}

.stat-item p {
    font-size: 22px;
    font-weight: 400;
    color: black;
}

/* -------------------------------------------------------------------------- */
/*                                  Footer                                    */
/* -------------------------------------------------------------------------- */
.footer {
    padding: 80px 0 20px;
    background-color: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid var(--color-primary-cyan);
    display: inline-block;
    padding-bottom: 5px;
}

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

.footer-col ul li a {
    color: white;
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: var(--color-primary-cyan);
}

.footer-col p,
.footer-col a {
    color: white;
    font-weight: 300;
    margin-bottom: 10px;
    display: block;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 40px;
}

/* -------------------------------------------------------------------------- */
/*                               Responsive                                   */
/* -------------------------------------------------------------------------- */
@media (max-width: 900px) {

    /* -------------------------------------------------------------------------- */
    /* Mobile Header Reset                                                         */
    /* -------------------------------------------------------------------------- */
    .header {
        width: 95%;
        padding: 0 10px;
        /* Reset massive padding */
    }

    .navbar {
        justify-content: space-between;
        /* Reset center alignment */
        position: relative;
    }

    .logo {
        position: relative;
        /* Reset absolute positioning */
        left: auto;
        top: auto;
        transform: none;
        padding-left: 0;
    }

    .nav-pill {
        padding: 0;
        /* Reset massive pill padding */
        background-color: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        margin-left: auto;
        /* Push to right */
    }

    /* Fix: Prevent desktop scroll styles from shrinking the pill into a container */
    .header.scrolled .nav-pill {
        background-color: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    .logo img {
        max-height: 90px;
        /* Further increased logo size for mobile */
    }

    /* Hide desktop button on mobile */
    .navbar .area-cliente-btn {
        display: none;
    }

    .mobile-only-item {
        display: block !important;
        width: 100%;
        text-align: center;
    }

    /* If we want to keep the button, we need to reset its absolute pos */
    /* but usually mobile menus have the button inside the dropdown */


    /* Hero Adjustments */
    .hero {
        background: linear-gradient(180deg, var(--color-bg-deep) 0%, rgba(26, 31, 55, 0.95) 100%);
        align-items: flex-start;
        /* Move content to top */
        padding-top: 130px;
        /* Custom spacer for mobile header */
    }

    .hero::before {
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-attachment: scroll;
        opacity: 1;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        /* Slightly smaller for better fit */
        margin-top: 60px;
        /* Space for fixed header */
    }

    /* Wifi Icon - Mobile specific placement */
    .floating-wifi {
        width: 50px;
        top: 10%;
        /* Visible position for main icon on mobile */
        right: 5%;
        transform: rotate(10deg);
    }

    /* Enable 2nd Wifi Icon */
    .wifi-2 {
        display: block;
        top: 68%;
        left: 5%;
        right: auto;
        transform: rotate(-15deg);
        width: 40px;
    }

    /* Hide only wifi-3 */
    .wifi-3 {
        display: none;
    }

    /* Layout & Components */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-side img {
        max-width: 70%;
        margin: 0 auto 30px auto;
        /* Centered */
    }

    /* Stats Stacked */
    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    /* Plans Mobile Refinement */
    .plans-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        /* Tighter gap */
    }

    .plan-card:nth-child(n) {
        transform: scale(1) !important;
        /* Force reset pyramid */
        width: 100%;
        max-width: 320px;
        /* Consistent width */
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Footer Stacked */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
        display: inline-block;
    }

    /* Company Intro Mobile */
    .company-intro .split-layout {
        gap: 30px;
    }

    .intro-text {
        text-align: center;
    }

    .intro-logo img {
        max-width: 180px;
    }
}

@media (max-width: 900px) {
    .header {
        width: 95%;
        top: 10px;
        border-radius: 10px;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: auto;
        min-height: 50vh;
        top: var(--header-height);
        background-color: var(--color-bg-deep);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        /* Adjust for mobile menu width relative to container or screen? Container is 95% width now */
        transform: translateX(110%);
        visibility: hidden;
        /* Fix: Hide completely when closed */
        /* Move confusing offscreen */
        border-radius: 10px;
        margin-top: 10px;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s ease;
        /* Custom easing for premium feel */
        padding-top: 70px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        /* Add shadow to LEFT side to define depth */
        z-index: 999;
    }

    .nav-active {
        transform: translateX(0%);
        visibility: visible !important;
        /* Fix: Show when active */
    }

    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

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

    /* Stack CTA buttons on mobile */
    .cta-streaming {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-top: 180px;
        /* Increased spacing */
    }

    .cta-streaming .btn {
        width: 100%;
        /* Make buttons massive touch targets */
        max-width: 300px;
        margin-left: 0 !important;
        /* Override inline style */
        justify-content: center;
        white-space: normal !important;
        /* Allow wrapping if needed, but width 100% helps */
    }

    /* 2ª Via button specific mobile tweaks */
    .cta-streaming .btn-outline {
        max-width: 200px;
        /* Smaller width */
        padding: 8px 20px;
        /* Smaller padding */
        border-radius: 10px;
        /* Mais quadradinho (less rounded) */
        font-size: 0.85rem;
        /* Slightly smaller text */
    }
}

/* -------------------------------------------------------------------------- */
/*                           Floating WhatsApp Button                         */
/* -------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}