* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header --- */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

/* --- Main Image Section --- */
.main-image-section {
     background-color: #000;
}
.main-image-section img {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
    margin: 0 auto;
}

/* --- Features/Benefits Section --- */
.features-section {
    background-color: #1a5f7a;
    padding: 50px 0;
    color: #ffffff;
}

.features-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 15px;
}

.feature-item img {
    height: 65px;
    margin: 0 auto 20px auto;
    display: block;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95em;
    line-height: 1.5;
}

/* --- Logo Slider Section --- */
.logo-slider {
    background-color: #000000;
    padding: 10px 0;
    overflow: hidden;
}

.logo-slider .swiper {
    padding-bottom: 40px;
}

.logo-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.logo-slider .swiper-slide img {
     max-height: 100%;
     max-width: 100%;
     width: auto;
     height: auto;
     transition: opacity 0.3s ease, filter 0.3s ease;
     object-fit: contain;
}

.logo-slider .swiper-slide:hover img {
     opacity: 1;
     filter: grayscale(0%);
}

.logo-slider .swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
}

.logo-slider .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.logo-slider .swiper-pagination-bullet-active {
    background-color: #ffffff;
    opacity: 1;
}

/* --- Plans Section --- */
.plans {
    padding: 60px 0;
    background-color: #0f0f0f;
}

.plans h2 {
     text-align: center;
     font-size: 2.2em;
     margin-bottom: 40px;
     color: #fff;
     text-transform: uppercase;
}

.plans-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.plan-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-basis: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.plan-icon-main {
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
}

.plan-card h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.plan-card .plan-subtitle {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

 .plan-card .plan-price-label {
     font-size: 0.8em;
     color: #555;
     margin-bottom: 0px;
     font-weight: bold;
 }

.plan-price {
    font-size: 3.5em;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 20px;
    line-height: 1;
}
 .plan-price span.currency {
     font-size: 0.4em;
     font-weight: normal;
     color: #aaa;
     vertical-align: super;
     margin-right: 2px;
 }
 .plan-price span.cents {
      font-size: 0.4em;
      vertical-align: super;
      font-weight: bold;
      color: inherit;
 }

.plan-card ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
    color: #555;
    flex-grow: 1;
    font-size: 0.95em;
}

.plan-card ul li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.plan-card ul li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://topnettv.top/images/check.png'); /* Verifique se a imagem existe */
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.plan-button {
     background-color: #111;
     color: #fff;
     padding: 12px 30px;
     border: none;
     border-radius: 25px;
     font-size: 1em;
     font-weight: bold;
     cursor: pointer;
     transition: background-color 0.3s ease, transform 0.2s ease;
     margin-top: 20px;
     display: inline-block;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}
 .plan-button:hover {
     background-color: #333;
     transform: scale(1.03);
 }

/* --- Movies & Series Section --- */
.movies-series-section {
    background-color: #ffffff;
    padding: 60px 0;
    color: #333;
}

.movies-series-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.content-column {
    flex: 1;
    min-width: 300px;
}

.image-column {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-column img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.movies-series-section .section-title {
    font-size: 2.8em;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000;
}

.movies-series-section .section-description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.movies-series-section .section-secondary-text {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.cta-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cta-button:hover {
    background-color: #333;
    transform: scale(1.03);
}

/* --- WhatsApp Button --- */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
}

/* --- Footer --- */
.footer {
    background-color: #000000;
    color: #cccccc;
    padding: 50px 0 20px 0;
    margin-top: 0;
    font-size: 0.9em;
}

.footer .container {
    /* Herda max-width e padding */
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

/* Footer Coluna Esquerda */
.footer-col-left .google-play-badge img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: inline-block;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover img {
    opacity: 0.8;
}

/* Footer Coluna Central (Menu) */
.footer-col-mid h5 {
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-menu-columns {
    display: flex;
    gap: 30px;
}

.footer-menu-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-columns ul li {
    margin-bottom: 10px;
}

.footer-menu-columns ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-columns ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Coluna Direita (Contatos) */
.footer-col-right h5 {
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-info {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.contact-info a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #333333;
    font-size: 0.8em;
    color: #aaaaaa;
}

.footer-copyright p {
    margin: 0;
}


/* --- Media Queries --- */

@media (max-width: 1100px) {
     /* Plans */
     .plans-container {
         gap: 20px;
     }
     .plan-card {
         flex-basis: 30%;
     }
}

@media (max-width: 992px) {
     /* Plans */
     .plan-card {
          flex-basis: 45%;
          margin-bottom: 30px;
     }
}

@media (max-width: 768px) {
    /* Header */
    .header .container {
        flex-direction: column;
        gap: 10px;
    }

    /* Features Section */
    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .feature-item {
        flex-basis: auto;
        width: 85%;
        max-width: 380px;
        min-width: unset;
        padding: 0;
    }
    .features-section {
        padding: 40px 0;
    }

    /* Movies Series Section */
    .movies-series-container {
        flex-direction: column;
        text-align: center;
    }
    .image-column {
        margin-top: 30px;
    }
    .movies-series-section .section-title {
        font-size: 2.2em;
    }
    .movies-series-section {
        padding: 40px 0;
    }

    /* Plans */
    .plans-container {
         flex-direction: column;
         align-items: center;
    }
    .plan-card {
         width: 90%;
         max-width: 350px;
         flex-basis: auto;
         margin-bottom: 30px;
    }

    /* WhatsApp Button */
     .whatsapp-button {
         width: 50px;
         height: 50px;
         bottom: 15px;
         right: 15px;
     }

     /* Logo Slider */
     .logo-slider .swiper-slide {
          height: 60px;
     }
     .logo-slider .swiper-slide img {
          max-height: 40px;
     }

     /* Footer */
    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .footer-col {
        min-width: unset;
        width: 100%;
        max-width: 350px;
    }
    .footer-col-left .google-play-badge {
        display: block;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-menu-columns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .footer-menu-columns ul {
        margin-bottom: 15px;
    }
    .footer-menu-columns ul:last-child {
        margin-bottom: 0;
    }
    .contact-info {
        justify-content: center;
    }
}

 @media (max-width: 480px) {
     /* Features Section */
    .feature-item h3 {
        font-size: 1.3em;
    }
    .feature-item p {
        font-size: 0.9em;
    }

    /* Movies Series Section */
    .movies-series-section .section-title {
        font-size: 1.8em;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    /* Plans */
     .plan-price {
         font-size: 3em;
     }
     .plan-card {
          padding: 20px 15px;
     }

     /* Footer */
    .footer {
        padding-top: 30px;
    }
    .footer-columns {
        gap: 25px;
        margin-bottom: 30px;
    }
    .social-icons img {
        width: 28px;
        height: 28px;
    }
 }