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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1d1d1d;
    background: #0a1f33;
}

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

/* Header Styles */
.header {
    position: relative;
    /*min-height: 80vh;*/
    background: linear-gradient(135deg, #0a1f33 0%, #0075ff 100%);
    color: white;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 51, 0.3);
    z-index: 1;
}

.header-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/5473955/pexels-photo-5473955.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.nav {
    position: relative;
    z-index: 5;
    /*padding: 0.75rem 0;*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 31, 51, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(56, 212, 48, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    position: relative;
    z-index: 1000;
}

/* Mobile buttons container */
.mobile-buttons {
    display: none;
}

.mobile-btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 70px;
    transition: all 0.3s ease;
    margin-right: 2rem;
}

.logo img {
    height: 200px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(56, 212, 48, 0.2);
    transition: width 0.3s ease;
    border-radius: 25px;
    z-index: -1;
}

.nav-link:hover {
    color: #38d430;
    transform: translateY(-2px);
}

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

.nav-link-white {
    background: rgba(255, 255, 255, 0.95);
    color: #0a1f33 !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link-white::after {
    background: rgba(56, 212, 48, 0.2);
}

.nav-link-white:hover {
    color: #0075ff !important;
    background: rgba(255, 255, 255, 1);
    border-color: rgba(56, 212, 48, 0.5);
    box-shadow: 0 4px 12px rgba(56, 212, 48, 0.2);
}

.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.85rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: #0075ff;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 117, 255, 0.3), 0 2px 4px -1px rgba(0, 117, 255, 0.2);
    border: 1px solid rgba(0, 117, 255, 0.5);
}

.btn-primary:hover {
    background: #0066e6;
    box-shadow: 0 10px 15px -3px rgba(0, 117, 255, 0.4), 0 4px 6px -2px rgba(0, 117, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #1d1d1d;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(29, 29, 29, 0.3), 0 2px 4px -1px rgba(29, 29, 29, 0.2);
    border: 1px solid rgba(56, 212, 48, 0.3);
}

.btn-secondary:hover {
    background: #2a2a2a;
    border-color: #38d430;
    box-shadow: 0 10px 15px -3px rgba(56, 212, 48, 0.3), 0 4px 6px -2px rgba(56, 212, 48, 0.2);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, #38d430 0%, #2bb028 100%);
    color: #0a1f33;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(56, 212, 48, 0.4), 0 4px 6px -2px rgba(56, 212, 48, 0.2);
    animation: ctaPulse 2s infinite;
    font-weight: 700;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 212, 48, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(56, 212, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56, 212, 48, 0);
    }
}

.btn-cta:hover {
    background: linear-gradient(135deg, #2bb028 0%, #229920 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 20px -5px rgba(56, 212, 48, 0.5), 0 8px 10px -6px rgba(56, 212, 48, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
    background: rgba(56, 212, 48, 0.2);
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    /*margin-top: 1rem;*/
    padding-bottom: 1rem;
    background: rgba(10, 31, 51, 0.98);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 212, 48, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: absolute;
    top: 100%;
    left: 10px;
    right: 10px;
    max-width: calc(100vw - 20px);
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

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

.mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav-link:hover {
    color: #38d430;
    background: rgba(56, 212, 48, 0.1);
    transform: translateX(5px);
}

.mobile-btn {
    width: fit-content;
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    z-index: 4;
    padding: 8rem 0 0rem 0;
}

/* Carousel Styles */
.carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(100%);
    width: 100%;
    transition: opacity 0.5s;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    width: 100%;
    transition: opacity 0.5s;
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.carousel-control {
    background: rgba(56, 212, 48, 0.2);
    color: #38d430;
    border: 1px solid rgba(56, 212, 48, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: rgba(56, 212, 48, 0.3);
    border-color: #38d430;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #38d430;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(56, 212, 48, 0.5);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards 0.2s;
    background: linear-gradient(135deg, white 0%, #38d430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards 0.3s;
}

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

.hero-image {
    position: relative;
    transform: translateX(20px);
    animation: fadeInRight 0.5s forwards 0.4s;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(56, 212, 48, 0.3);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(56, 212, 48, 0.2) 0%, rgba(0, 117, 255, 0.2) 100%);
    border-radius: 0.5rem;
}

/* Features Bar */
.features-bar {
    background: linear-gradient(135deg, #0fdb00 0%, #162c75 100%);
    /*padding: 5rem 0;*/
    color: white;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(56, 212, 48, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(56, 212, 48, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    border-color: #38d430;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(56, 212, 48, 0.3);
}

.feature-item i {
    font-size: 3rem;
    color: #38d430;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.feature-item h3 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Features Bar Carousel */
.features-bar {
    /*padding: 60px 0;*/
    background: linear-gradient(135deg, #0fdb00 0%, #162c75 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.features-bar .image-carousel {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-bar .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.features-bar .carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.features-bar .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    display: block;
}

.features-bar .carousel-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.features-bar .carousel-slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Controles opcionais (podem ser removidos se não quiser) */
.features-bar .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.features-bar .carousel-control:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.features-bar .carousel-control.prev {
    left: 20px;
}

.features-bar .carousel-control.next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .features-bar {
        padding: 40px 0;
        padding-bottom: 0px;
    }

    .carousel-infinite {
        height: 300px;
        border-radius: 10px;
    }

    .features-bar .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-bar {
        padding: 30px 0;
        padding-bottom: 0px;
    }

    .carousel-infinite {
        height: 250px;
        border-radius: 8px;
    }

    .features-bar .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Features Bar Section */
.features-bar {
    /*padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid #e2e8f0;*/
    position: relative;
}

.features-bar .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.carousel-infinite-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px #0000001a;
    background: linear-gradient(135deg,#667eea,#764ba2)
}

.carousel-infinite-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden
}

.carousel-infinite-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .5s ease-in-out
}

.carousel-infinite-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative
}

.carousel-infinite-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block
}

.carousel-infinite-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffe6;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 10;
    color: #333
}

.carousel-infinite-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px #00000026
}

.carousel-infinite-prev {
    left: 16px
}

.carousel-infinite-next {
    right: 16px
}

.carousel-infinite-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.carousel-infinite-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff80;
    cursor: pointer;
    transition: all .3s ease
}

.carousel-infinite-dot:hover,.carousel-infinite-dot.active {
    background: #fff;
    transform: scale(1.2)
}

@media (max-width: 768px) {
    .features-bar .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .carousel-infinite-wrapper {
        height:250px
    }

    .carousel-infinite-nav {
        width: 40px;
        height: 40px
    }

    .carousel-infinite-prev {
        left: 8px
    }

    .carousel-infinite-next {
        right: 8px
    }

    .carousel-infinite-indicators {
        bottom: 12px
    }

    .carousel-infinite-dot {
        width: 10px;
        height: 10px
    }
}

@media (max-width: 480px) {
    .carousel-infinite-wrapper {
        height:200px
    }
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a1f33 0%, #1d1d1d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(56, 212, 48, 0.1);
    z-index: 1;
}

.advantages::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 117, 255, 0.1);
    z-index: 1;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Animation classes */
.animate-fade-up {
    transform: translateY(20px);
    animation: none;
}

.animate-fade-up.animate-start {
    animation: fadeInUp 0.5s forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-20px);
    animation: none;
}

.animate-fade-left.animate-start {
    animation: fadeInLeft 0.5s forwards;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(20px);
    animation: none;
}

.animate-fade-right.animate-start {
    animation: fadeInRight 0.5s forwards;
}

.animate-scale {
    transform: scale(0.9);
    animation: none;
}

.animate-scale.animate-start {
    animation: fadeInScale 0.5s forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.text-blue {
    color: #0075ff;
}

.white {
    color: white;
}

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

.advantage-card {
    background: rgba(0, 117, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 117, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 212, 48, 0.05) 0%, rgba(0, 117, 255, 0.05) 100%);
    z-index: -1;
}

.advantage-card:hover {
    border-color: #38d430;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(56, 212, 48, 0.3);
}

.advantage-card i {
    font-size: 2.5rem;
    color: #38d430;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.advantage-card h3 {
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    line-height: 1.2;
    margin: 0;
}

/* Plans Section */
.plans {
    padding: 2rem 0 5rem 0;
    background: #0a1f33;
}

.plans-header {
    text-align: center;
    margin-bottom: 4rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

@media (min-width: 769px) {
    .plans-grid .plan-card:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 2;
        justify-self: end;
        left: 50%;
    }
    
    .plans-grid .plan-card:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: 2;
        justify-self: center;
        left: 50%;
    }
}

.plan-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    transform: translateY(30px);
    /*opacity: 0;*/
    border: 2px solid rgba(0, 117, 255, 0.2);
    margin: 20px 10px;
    width: 100%;
    max-width: 350px;
}

.plan-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.plan-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 117, 255, 0.3);
    border-color: #38d430;
}

/* Plan Balloons */
.plan-balloon {
    position: absolute;
    top: -15px;
    right: -15px;
    transform: rotate(15deg);
    background: linear-gradient(135deg, #0075ff 0%, #38d430 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 117, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: balloonFloat 3s ease-in-out infinite;
}

.plan-balloon-popular {
    background: linear-gradient(135deg, #38d430 0%, #ff6b35 100%);
    box-shadow: 0 4px 15px rgba(56, 212, 48, 0.4);
    animation: balloonPulse 2s ease-in-out infinite;
}

@keyframes balloonFloat {
    0%, 100% {
        transform: rotate(15deg) translateY(0px);
    }
    50% {
        transform: rotate(15deg) translateY(-3px);
    }
}

@keyframes balloonPulse {
    0%, 100% {
        transform: rotate(15deg) scale(1);
        box-shadow: 0 4px 15px rgba(56, 212, 48, 0.4);
    }
    50% {
        transform: rotate(15deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(56, 212, 48, 0.6);
    }
}

@keyframes planPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 212, 48, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(56, 212, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56, 212, 48, 0);
    }
}

.plan-card.plan-featured {
    animation: planPulse 2s infinite;
}

.plan-featured {
    border: 4px solid #38d430;
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #38d430;
    color: #0a1f33;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    z-index: 1;
}

.plan-header {
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
    border-radius: 0.75rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.plan-header-1 {
    background: linear-gradient(135deg, #0075ff 0%, #0066e6 100%);
}

.plan-header-2 {
    background: linear-gradient(135deg, #0a1f33 0%, #0075ff 100%);
}

.plan-header-3 {
    background: linear-gradient(135deg, #1d1d1d 0%, #0a1f33 100%);
}

.plan-speed {
    font-size: 3rem;
    font-weight: bold;
}

.plan-unit {
    font-size: 1.25rem;
}

.plan-speed-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.plan-body {
    padding: 2rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 0.875rem;
    color: #1d1d1d;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #0075ff;
}

.period {
    font-size: 0.875rem;
    color: #1d1d1d;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.plan-feature i {
    color: #38d430;
    width: 1.25rem;
}

.btn-plan {
    background: linear-gradient(135deg, #38d430 0%, #0075ff 100%);
    color: white;
    padding: 1rem 0rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 2px solid rgba(56, 212, 48, 0.3);
    box-shadow: 0 8px 15px -3px rgba(56, 212, 48, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

.btn-turbo {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 15px -3px rgba(255, 107, 53, 0.3);
}

.btn-ultra {
    background: linear-gradient(135deg, #38d430 0%, #0075ff 100%);
    border-color: rgba(56, 212, 48, 0.3);
    box-shadow: 0 8px 15px -3px rgba(56, 212, 48, 0.3);
    animation: ultraGlow 2s ease-in-out infinite;
}

.btn-hyper {
    background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
    border-color: rgba(156, 39, 176, 0.3);
    box-shadow: 0 8px 15px -3px rgba(156, 39, 176, 0.3);
}

@keyframes ultraGlow {
    0%, 100% {
        box-shadow: 0 8px 15px -3px rgba(56, 212, 48, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px -3px rgba(56, 212, 48, 0.6), 0 0 30px rgba(56, 212, 48, 0.3);
    }
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-plan:hover .btn-glow {
    left: 100%;
}

.btn-plan::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
    z-index: -1;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(56, 212, 48, 0.4);
}

.btn-turbo:hover {
    box-shadow: 0 15px 30px -5px rgba(255, 107, 53, 0.4);
}

.btn-ultra:hover {
    box-shadow: 0 15px 30px -5px rgba(56, 212, 48, 0.4);
}

.btn-hyper:hover {
    box-shadow: 0 15px 30px -5px rgba(156, 39, 176, 0.4);
}

.btn-plan:hover::after {
    animation: ripple 0.6s ease-out;
}

.btn-plan:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(0, 117, 255, 0.3);
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale(0) translate(-50%, -50%);
    }
    100% {
        opacity: 0;
        transform: scale(20) translate(-50%, -50%);
    }
}

/* Coverage Section */
.coverage {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a1f33 0%, #1d1d1d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.coverage::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(56, 212, 48, 0.1);
    z-index: 1;
}

.coverage::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 117, 255, 0.1);
    z-index: 1;
}

.coverage-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(56, 212, 48, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    border-color: #38d430;
    box-shadow: 0 30px 60px -15px rgba(56, 212, 48, 0.2);
}

.coverage-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coverage-logo {
    width: 200px;
    height: 200px;
    margin-bottom: -3rem;
    filter: brightness(1.1);
}

.coverage-card-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white 0%, #38d430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage-card-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.coverage-form {
    margin-bottom: 2rem;
}

.coverage-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #38d430;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.input-group .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #38d430;
    z-index: 1;
}

.input-group {
    position: relative;
}

#cepInput {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(56, 212, 48, 0.3);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #0089dd;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#cepInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#cepInput:focus {
    outline: none;
    border-color: #38d430;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(56, 212, 48, 0.2);
}

.btn-search {
    background: linear-gradient(135deg, #38d430 0%, #0075ff 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-search:hover {
    background: linear-gradient(135deg, #2bb028 0%, #0066e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(56, 212, 48, 0.3);
}

.coverage-info {
    border-top: 1px solid rgba(56, 212, 48, 0.2);
    padding-top: 1.5rem;
}

.coverage-info ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.coverage-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cep-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    display: none;
}

.cep-result.success {
    background: rgba(56, 212, 48, 0.1);
    border: 1px solid rgba(56, 212, 48, 0.3);
    color: #38d430;
    display: block;
}

.cep-result.error {
    background: rgb(255 0 0 / 10%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff0000;
    display: block;
}

.cep-result.loading {
    background: rgba(0, 117, 255, 0.1);
    border: 1px solid rgba(0, 117, 255, 0.3);
    color: #0075ff;
    display: block;
}

.result-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.result-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

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

.btn-contact {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(37, 211, 102, 0.3);
}

/* Entertainment Section */
.entertainment {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0075ff 0%, #0a1f33 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.entertainment::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 30%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(56, 212, 48, 0.3);
    z-index: 1;
}

.entertainment::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.entertainment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.entertainment-text h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.entertainment-image .image-container {
    background: linear-gradient(135deg, rgba(56, 212, 48, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(56, 212, 48, 0.5);
    transition: all 0.3s ease;
}

.entertainment-image .image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(56, 212, 48, 0.4);
    border-color: #38d430;
}

.entertainment-image img {
    width: 100%;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

/* Entertainment Carousel Styles */
.entertainment-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.entertainment-slide {
    display: none;
    width: 100%;
}

.entertainment-slide.active {
    display: block;
}

.entertainment-slide picture {
    display: block;
    width: 100%;
}

.entertainment-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: contain;
}

.entertainment-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(56, 212, 48, 0.8);
    color: #fff;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.entertainment-control.prev {
    left: 15px;
}

.entertainment-control.next {
    right: 15px;
}

.entertainment-control:hover {
    background: rgba(56, 212, 48, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Business Section */
.business {
    padding: 5rem 0;
    background: linear-gradient(135deg, #38d430 0%, #0a1f33 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.business::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 117, 255, 0.3);
    z-index: 1;
}

.business::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.business-image .image-container {
    background: linear-gradient(135deg, rgba(0, 117, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 117, 255, 0.5);
    transition: all 0.3s ease;
}

.business-image .image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 117, 255, 0.4);
    border-color: #0075ff;
}

.business-image img {
    width: 100%;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.business-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.business-text h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Company Values Section */
.company-values {
    padding: 5rem 0;
    background: #0a1f33;
    color: white;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(0, 117, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(0, 117, 255, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #38d430;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(56, 212, 48, 0.3);
}

.value-card i {
    font-size: 4rem;
    color: #38d430;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #38d430;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.values-list p {
    text-align: left;
    margin-bottom: 0.5rem;
}

.values-list strong {
    color: #38d430;
}

/* Modal para visualização de canais */
.channels-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.channels-modal.active {
    display: flex;
}

.channels-modal-content {
    position: relative;
    max-width: 80%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.channels-modal img {
    width: 100%;
    height: 74vh;
    display: block;
}

.channels-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.channels-modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Botão de canais nos planos */
.channels-btn {
    background: linear-gradient(135deg, #0075ff, #00d4aa);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channels-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 117, 255, 0.4);
    background: linear-gradient(135deg, #0066dd, #00b899);
}

.channels-btn i {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1d1d1d;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(56, 212, 48, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #38d430;
}

.footer-logo {
    margin-bottom: -2.6rem;
    margin-top: -44px;
}

.footer-logo img {
    height: 150px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.footer-subtitle {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #38d430;
}

.footer-info {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.info-item i {
    color: #0075ff;
}

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

.social-link {
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Facebook icon - blue */
.social-link .fa-facebook {
    color: #1877f2;
}

/* Instagram icon - gradient colors */
.social-link .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* WhatsApp icon - green */
.social-link .fa-whatsapp {
    color: #25d366;
}
.social-link,
.social-link:link,
.social-link:visited,
.social-link:hover,
.social-link:active,
.social-link:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
}

.social-link:hover {
    transform: scale(1.1);
}

/* Hover effects for each social icon */
.social-link:hover .fa-facebook {
    color: #0d5dbf;
}

.social-link:hover .fa-instagram {
    background: linear-gradient(45deg, #d6832a 0%,#c55a33 25%,#b91f39 50%,#a91c57 75%,#9c1474 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fa-google {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}


.social-link:hover .fa-whatsapp {
    color: #1faa52;
}
background: rgba(56, 212, 48, 0.1);
border-color: #38d430;
transform: scale(1.1);
text-decoration: none;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #38d430;
}

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

.btn-footer {
    background: #0075ff;
    color: white;
    justify-content: center;
    border: 1px solid rgba(0, 117, 255, 0.5);
}

.btn-footer:hover {
    background: #38d430;
    color: #0a1f33;
    border-color: #38d430;
}

.footer-bottom {
    border-top: 1px solid rgba(56, 212, 48, 0.3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
    gap: 1rem;
}

/* WhatsApp Button in Social Links */
.whatsapp-btn {
    color: #25d366 !important;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
}

.whatsapp-btn,
.whatsapp-btn:link,
.whatsapp-btn:visited,
.whatsapp-btn:hover,
.whatsapp-btn:active,
.whatsapp-btn:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
}

.whatsapp-btn:hover {
    color: #38d430 !important;
    transform: scale(1.1);
    text-decoration: none !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.whatsapp-float-btn {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
}

.whatsapp-float-btn,
.whatsapp-float-btn:link,
.whatsapp-float-btn:visited,
.whatsapp-float-btn:hover,
.whatsapp-float-btn:active,
.whatsapp-float-btn:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: bubble 2s infinite ease-in-out;
}

.whatsapp-float-btn::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.5;
    z-index: -2;
    animation: bubble 2s infinite ease-in-out;
    animation-delay: 0.5s;
}

@keyframes bubble {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.whatsapp-float-btn:hover {
    background: #38d430;
    transform: scale(1.1);
    text-decoration: none !important;
}

/* Responsividade melhorada */
@media (max-width: 1024px) {
    .mobile-menu {
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        margin: 0 15px;
    }

    .mobile-nav-link {
        width: calc(100% - 30px);
        margin: 0 15px;
        padding: 12px 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        height: 200px;
        max-width: 350px;
    }

    .logo {
        height: 140px;
        margin-right: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .nav {
        padding: 0.5rem 0;
    }

    .nav-content {
        min-height: 140px;
        padding: 0 10px;
    }

    .hero {
        padding: 8rem 0 0rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: flex !important;
    }

    .mobile-nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .social-links {
        gap: 0.75rem;
        margin: 0.5rem 0;
    }

    .social-link {
        font-size: 1.5rem;
        min-width: 40px;
        min-height: 40px;
        padding: 0.4rem;
    }

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

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

    .footer-contact-section {
        text-align: center;
    }

    .footer-buttons {
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    /* Carousel responsive styles */
    .carousel-controls {
        margin-top: 1rem;
    }

    .carousel-control {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
    }

    .features-slide picture img {
        width: 100%;
        height: 200px; /* ajuste conforme necessário */
        object-fit: inherit !important;
        object-position: center;
        display: block;
    }

    /* Ensure plan cards animate properly on mobile */
    .plan-card:hover {
        transform: scale(1.03) translateY(-5px);
    }

    /* Adjust button animations for touch devices */
    .btn:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.95);
    }

    .btn-cta:hover {
        transform: scale(1.03);
    }

    /* Responsive adjustments for the new section designs */
    .advantages::before,
    .advantages::after,
    .entertainment::before,
    .entertainment::after,
    .business::before,
    .business::after {
        width: 150px;
        height: 150px;
        opacity: 0.5;
    }

    .advantages-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .advantage-card {
        margin-bottom: 0;
        min-height: 100px;
        padding: 1.25rem 0.75rem;
    }

    .advantage-card h3 {
        font-size: 0.85rem;
    }

    .entertainment-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .entertainment-text {
        order: 1;
        margin-bottom: 2rem;
    }

    .entertainment-image {
        order: 2;
        max-width: 400px;
    }

    .business-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .business-image {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .footer-main {
        text-align: left;
    }

    .footer-contact-section {
        text-align: left;
    }

    .footer-buttons {
        align-items: center;
    }

    .btn-footer {
        max-width: 250px;
    }

    .footer-bottom-right {
        text-align: center;
    }

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

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

    .mobile-menu {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        margin: 0 10px;
        border-radius: 0 0 10px 10px;
    }

    .mobile-nav-link {
        width: calc(100% - 20px);
        margin: 0 10px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .channels-modal-content {
        max-width: 95%;
        max-height: 85%;
    }

    .channels-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        gap: 5px;
        justify-content: space-around;
        padding: 0 10px;
    }

    .mobile-menu {
        left: 5px;
        right: 5px;
        max-width: calc(100vw - 10px);
        padding: 0.75rem;
    }

    .mobile-nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }

    .social-links {
        gap: 0.5rem;
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 1rem;
    }

    .footer-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-footer {
        width: 100%;
        text-align: center;
        min-width: 36px;
        min-height: 36px;
        padding: 0.3rem;
    }

    .footer-buttons {
        max-width: 250px;
    }

    .btn-footer {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }

    .coverage-card {
        padding: 1.5rem 1rem;
    }

    .coverage-card-header h3 {
        font-size: 1.25rem;
    }

    .coverage-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .coverage-icon i {
        font-size: 1.25rem;
    }

    #cepInput {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }

    .input-icon {
        left: 0.75rem;
        font-size: 1rem;
    }

    .btn-search {
        padding: 0.875rem 1.25rem;
    }

    .logo img {
        height: 200px;
        max-width: 200px;
    }

    .logo {
        height: 55px;
        margin-right: 2rem;
    }

    .nav {
        padding: 0.4rem 0;
    }

    .nav-content {
        min-height: 65px;
    }

    .hero {
        padding: 3.5rem 0 0rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }

    .advantage-card {
        min-height: 80px;
        padding: 1rem;
    }

    .advantage-card i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .advantage-card h3 {
        font-size: 0.8rem;
    }

    /* Further adjustments for very small screens */
    .advantages::before,
    .advantages::after,
    .entertainment::before,
    .entertainment::after,
    .business::before,
    .business::after {
        width: 100px;
        height: 100px;
        opacity: 0.3;
    }

    .advantage-card i,
    .value-card i {
        font-size: 2.5rem;
    }

    .advantage-card {
        padding: 1rem;
    }

    .entertainment-image .image-container,
    .business-image .image-container {
        padding: 0.5rem;
    }

    .advantages,
    .entertainment,
    .business {
        padding: 3rem 0;
    }

    .coverage {
        padding: 3rem 0;
    }

    .coverage-form {
        padding: 1.5rem;
    }

    .coverage::before,
    .coverage::after {
        width: 100px;
        height: 100px;
        opacity: 0.3;
    }

    .coverage-form {
        background: #fff;
        border-radius: 1.5rem;
        box-shadow: 0 8px 32px 0 rgba(10,31,51,0.18), 0 1.5px 6px rgba(56,212,48,0.10);
        padding: 2.5rem 2rem 2rem 2rem;
        margin: 2.5rem auto 0 auto;
        max-width: 420px;
        border: 1.5px solid #e6f7ef;
        position: relative;
        z-index: 2;
        animation: fadeInUp 0.8s cubic-bezier(.23,1.01,.32,1) both;
        transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
    }

    .coverage-form:hover {
        box-shadow: 0 16px 40px -8px rgba(0,117,255,0.18), 0 2px 8px rgba(56,212,48,0.10);
        border-color: #38d430;
        transform: translateY(-3px) scale(1.02);
    }

    .coverage-form label {
        color: #0075ff;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        letter-spacing: 0.5px;
        transition: color 0.2s;
    }

    .coverage-form .input-group {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .coverage-form .input-wrapper {
        position: relative;
        flex: 1;
    }

    .coverage-form .input-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #38d430;
        font-size: 1.1rem;
        pointer-events: none;
        opacity: 0.8;
        transition: color 0.2s;
    }

    .coverage-form input[type="text"] {
        width: 100%;
        padding: 0.9rem 1rem 0.9rem 2.5rem;
        border-radius: 0.75rem;
        border: 1.5px solid #e0e7ef;
        background: rgba(245, 250, 255, 0.95);
        font-size: 1.1rem;
        color: #0a1f33;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        font-weight: 500;
        box-shadow: 0 1px 2px rgba(0,117,255,0.04);
    }

    .coverage-form input[type="text"]:focus {
        border-color: #38d430;
        background: #fff;
        box-shadow: 0 0 0 2px #38d43033;
    }

    .coverage-form .btn-search {
        background: linear-gradient(135deg, #38d430 0%, #0075ff 100%);
        color: #fff;
        border: none;
        border-radius: 0.75rem;
        padding: 0.9rem 1.5rem;
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 4px 12px -2px rgba(56,212,48,0.15);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
        position: relative;
        overflow: hidden;
    }

    .coverage-form .btn-search::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 0;
        height: 0;
        background: rgba(56,212,48,0.15);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s cubic-bezier(.23,1.01,.32,1), height 0.4s cubic-bezier(.23,1.01,.32,1);
        z-index: 0;
    }

    .coverage-form .btn-search:hover {
        background: linear-gradient(135deg, #0075ff 0%, #38d430 100%);
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 8px 24px -4px rgba(0,117,255,0.12);
    }

    .coverage-form .btn-search:hover::after {
        width: 200%;
        height: 200%;
    }

    .coverage-form .btn-search i {
        z-index: 1;
        position: relative;
    }

    .coverage-form .btn-search span,
    .coverage-form .btn-search i {
        position: relative;
        z-index: 1;
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.98);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @media (max-width: 480px) {
        .coverage-form {
            padding: 1.5rem 0.5rem 1.5rem 0.5rem;
            max-width: 100%;
        }
    }

    .coverage {
        padding: 3rem 0;
    }

    .coverage-form {
        padding: 1.5rem;
    }

    .coverage::before,
    .coverage::after {
        width: 100px;
        height: 100px;
        opacity: 0.3;
    }

    .coverage-form {
        background: #fff;
        border-radius: 1.5rem;
        box-shadow: 0 8px 32px 0 rgba(10,31,51,0.18), 0 1.5px 6px rgba(56,212,48,0.10);
        padding: 2.5rem 2rem 2rem 2rem;
        margin: 2.5rem auto 0 auto;
        max-width: 420px;
        border: 1.5px solid #e6f7ef;
        position: relative;
        z-index: 2;
        animation: fadeInUp 0.8s cubic-bezier(.23,1.01,.32,1) both;
        transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
    }

    .coverage-form:hover {
        box-shadow: 0 16px 40px -8px rgba(0,117,255,0.18), 0 2px 8px rgba(56,212,48,0.10);
        border-color: #38d430;
        transform: translateY(-3px) scale(1.02);
    }

    .coverage-form label {
        color: #0075ff;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        letter-spacing: 0.5px;
        transition: color 0.2s;
    }

    .coverage-form .input-group {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .coverage-form .input-wrapper {
        position: relative;
        flex: 1;
    }

    .coverage-form .input-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #38d430;
        font-size: 1.1rem;
        pointer-events: none;
        opacity: 0.8;
        transition: color 0.2s;
    }

    .coverage-form input[type="text"] {
        width: 100%;
        padding: 0.9rem 1rem 0.9rem 2.5rem;
        border-radius: 0.75rem;
        border: 1.5px solid #e0e7ef;
        background: rgba(245, 250, 255, 0.95);
        font-size: 1.1rem;
        color: #0a1f33;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        font-weight: 500;
        box-shadow: 0 1px 2px rgba(0,117,255,0.04);
    }

    .coverage-form input[type="text"]:focus {
        border-color: #38d430;
        background: #fff;
        box-shadow: 0 0 0 2px #38d43033;
    }

    .coverage-form .btn-search {
        background: linear-gradient(135deg, #38d430 0%, #0075ff 100%);
        color: #fff;
        border: none;
        border-radius: 0.75rem;
        padding: 0.9rem 1.5rem;
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 4px 12px -2px rgba(56,212,48,0.15);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
        position: relative;
        overflow: hidden;
    }

    .coverage-form .btn-search::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 0;
        height: 0;
        background: rgba(56,212,48,0.15);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s cubic-bezier(.23,1.01,.32,1), height 0.4s cubic-bezier(.23,1.01,.32,1);
        z-index: 0;
    }

    .coverage-form .btn-search:hover {
        background: linear-gradient(135deg, #0075ff 0%, #38d430 100%);
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 8px 24px -4px rgba(0,117,255,0.12);
    }

    .coverage-form .btn-search:hover::after {
        width: 200%;
        height: 200%;
    }

    .coverage-form .btn-search i {
        z-index: 1;
        position: relative;
    }

    .coverage-form .btn-search span,
    .coverage-form .btn-search i {
        position: relative;
        z-index: 1;
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.98);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @media (max-width: 480px) {
        .coverage-form {
            padding: 1.5rem 0.5rem 1.5rem 0.5rem;
            max-width: 100%;
        }
    }

    .mobile-menu {
        width: calc(100vw - 10px);
        max-width: calc(100vw - 10px);
        margin: 0 5px;
        border-radius: 0 0 8px 8px;
    }

    .mobile-nav-link {
        width: calc(100% - 10px);
        margin: 0 5px;
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .channels-modal-content {
        max-width: 98%;
        max-height: 80%;
    }

    .channels-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    /* Entertainment Carousel - Mobile */
    .entertainment-carousel {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 16px;
    }

    .entertainment-slide {
        display: none;
        width: 100%;
    }

    .entertainment-slide.active {
        display: block;
    }

    .entertainment-slide picture {
        display: block;
        width: 100%;
    }

    .entertainment-slide img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
        object-fit: contain;
        max-height: 80vh;
    }

    .entertainment-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(56, 212, 48, 0.8);
        color: #fff;
        border: none;
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .entertainment-control.prev {
        left: 5px;
    }

    .entertainment-control.next {
        right: 5px;
    }

    .entertainment-control:hover {
        background: rgba(56, 212, 48, 1);
        transform: translateY(-50%) scale(1.1);
    }

    .entertainment-image {
        width: 100%;
        max-width: 100%;
    }

    .image-carousel {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 16px;
    }
    .carousel-slide {
        display: none;
        width: 100%;
        transition: opacity 0.5s;
    }
    .carousel-slide.active {
        display: block;
    }
    .carousel-slide img {
        width: 100%;
        display: block;
        border-radius: 16px;
    }
    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(37,99,235,0.7);
        color: #fff;
        border: none;
        font-size: 2rem;
        padding: 0 12px;
        cursor: pointer;
        z-index: 2;
        border-radius: 50%;
        transition: background 0.2s;
    }
    .carousel-control.prev { left: 10px; }
    .carousel-control.next { right: 10px; }
    .carousel-control:hover { background: #2563eb; }
}