* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Montserrat', sans-serif; */
     font-family: 'Roboto', sans-serif;
}


html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    /* line-height: 1.6; */
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h2{
    font-size: 40px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.btn {
    display: inline-block;
    padding: 5px 25px;
    border-radius: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #2e1c86;
    color: white;
}

.btn-primary:hover {
    background-color: #231461;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 28, 134, 0.3);
}

.btn-secondary {
    background-color: #ffc600;
    color: #2e1c86;
    font-weight: 400;
    /* border: 2px solid #2e1c86; */
}

.btn-secondary:hover {
    background-color: #ffc600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 252, 0, 0.3);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #2e1c86;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Barra topo */
.top-bar {
    /* background: linear-gradient(135deg, #2e1c86 10%, #2e1c86 50%, #ffc600 100%);  */
    background-color: #2e1c86;
    /* background: linear-gradient(to right, #ffc400, #fffb00); */
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    margin-right: 20px;
    color: #fff;
    transition: color 0.3s;
    font-weight: 100;
}

.top-links a:hover {
    color: #ffc600;
}

.social-icons a {
    margin-left: 15px;
    color: #fff;
    transition: color 0.3s;
}



/* Barra de navegação principal - FUNDO BRANCO */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

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

.logo img{
    height: 70px;
 
    margin: 0;
    padding: 0;
    
}


.nav-menu {
    display: flex;
}

.nav-menu li {
    margin: 0 12px;
    position: relative;
}

.nav-menu a {
    font-weight: 400;
    color: #2e1c86;
    transition: all 0.3s;
    font-size: 16px;
     padding: 4px 0px;
     letter-spacing: 0.5px;
    /* border-radius: 5px; */
}

.nav-menu a:hover {
    color: #ffc600;
    /* border-bottom: 2px solid #ffc600;         */
}

 .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
    transform: translateX(-50%);
            background: #ffc600;
            transition: width 0.3s ease;
            
        }

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

/* Menu ativo com duas cores */
.nav-menu a.active {color: #ffc600; font-weight: 900; letter-spacing: 1px;}


.nav-buttons {
    display: flex;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2e1c86;
}



/* Seção de planos */
.plans {
    background-color: #fff;
}

.plans .section-title h2{font-weight: 200; font-size: 28px; letter-spacing:1px; color: gray;}
.plans .section-title h3{margin-top: -15px;}

.plans .sub_title{
    font-size: 50px;
    color: #ffc600;
}
.plans .sub_title span{
    font-size: 50px;
    color: #4b33c4;
}

.plan-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.plan-card {
    background: linear-gradient(to top, #2E1C86, #2C28C7); 
    background-color: #2e1c86;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0px 0px 30px 0;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s;
}

.plan-head{
    /* background: linear-gradient(to right, #2e1c86, #4b33c4); */
   background: linear-gradient(to bottom, #FCAC00, #FFC800); 
  
     text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
    padding: 10px 10px 15px 10px;
    border-radius: 15px 15px 0 0;
}

.plan-card .btn-primary{
    background-color: #fff; 
    /* border: 1px solid #FCAC00; */
    color: #2E1C86;}

.plan-card .btn-primary:hover{background-color: #fff; color: #2E1C86;} 

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
   
    position: relative;
}


.plan-card h2 {
    font-size: 60px;
     color: #fff;
    font-weight: 800;    
    width: 70%;
    margin: 0 auto;
    padding: 10px 0;
     position: relative;
     display: inline-block; 
     
}

.plan-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px; /* Distância abaixo do texto */
  width: 100%;
  height: 2px;
  background-color: rgb(255, 255, 255); /* Cor da linha */
}

.plan-card h3 {
    font-size: 30px;
     color: #fff;
    font-weight: 300;
     width: 70%;
    margin: auto;
    margin-top: -6px;
    letter-spacing: 2px;
}

.plan-price {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
    padding-top: 20px;
    /* text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5); */
}

.plan-card .btn {padding: 8px 50px; font-weight: 700; font-size: 16px;}

.plan-price span {
    font-size: 20px;
    color: #fff;
    font-weight: 500;

}

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

.plan-features li {
    width: 80%;
    margin: auto;
    padding: 10px 60px;
    border-bottom: 1px solid #4b33c4;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1.1px;
    font-size: 14px;
     /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); */
     text-align: left;
}

.plan-features li svg{
    width: 20px;
    height: 20px;
    padding: 5px 0 0 0;
    fill: currentColor;
    margin: 0;
}

/* Seção de informações */
.about{ background-color: #f8f9fa;}

.info-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.info-content {
    flex: 1;
}

.info-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2e1c86;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.about .section-title p{ max-width: 100%;}

.info-content p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Seção com efeito parallax */
.parallax-section {
    background-image: url('../img/parallax.png');
  
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 -80px; 
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 28, 134, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

.parallax-content h1 {
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    width: 1200px;
    text-transform: uppercase;
}
.parallax-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    width: 80%;
    margin: auto;
    line-height: 50px;
    display: block;
    color: #ffc600;
    text-transform: uppercase;
}

/* Seção de Central do Assiante */
.central {
    background-color: #f6eaff; 
    text-align: center;
    /* padding-top: 20px; */
    width: 100%;
    display: flex;
    padding: 130px 0;
}

.central .container{
    width: 75%;
    padding: 40px 60px;
    height: 200px;
    background-color: #212492;
    border-radius: 10px;
    overflow: hidden;
    background-image: url(../img/bg_wifi.png);
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: -10px 30px;
    position: relative;
}
.central .container img{
    /* float: right;  */
    height: 200px; 
    position: absolute;
    top: 0;
    right: 40px;
}

.central h2{
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: justify;
    margin-bottom: 20px;
    color: #FFF;
    /* background-color: #128C7E; */
    padding: 0!important;
    margin: 0!important;
}

.central p{
    text-align: justify;
    margin: 4px 0 0 0px;
    color: #FFF;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 200;
}

.central .section-title .btn{
    color: #fff;
    border: 1px solid #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 3px 20px;
    font-weight: 400;
    margin-right: 10px;
    font-size: 14px;
    float: left;
    margin: 20px 15px 0 0;
    background-color: #212492;
}
.central .section-title .btn:hover{background-color: #fff; color: #2E1C86;}

/* Seção de vantagens */
.advantages {
    /* background-image:linear-gradient(rgba(255, 196, 0, 0.966), rgb(255, 252, 49, 0.5)), url('../img/parallax2.png'); */
    background-image:url('../img/parallax2.png');
  
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   background-position: top;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;    
}

.advantages h1{
    font-size: 90px;
    color: #fff;  
    /* text-shadow: 2px 1px #000; */
}
.advantages h2{
    color: #fff; 
    margin-top: -10px;
    /* text-shadow: 0px 2px #fff; */
}

.advantages .section-title p{color: #fff;  }


.container-vantagens {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    /* padding: 40px; */
}

.vantagem {
    background: rgba(255, 255, 255, 0.6);
     padding: 20px;
    border-radius: 15px;
    /* display: flex; */
    align-items: center;
    /* gap: 20px; */
    box-shadow: 0 5px 15px rgba(0,0,0,0.);
    text-align: center;
}


.vantagem-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
   
}

.vantagem-texto h3 {  
    color: #212492;   
    font-size: 16px;
    line-height: 1.1
    
}

.vantagem-texto p {
    color: #fff;
    line-height: 1.5;
}

/* @media (max-width: 768px) {
    .container-vantagens {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .vantagem {
        flex-direction: column;
        text-align: center;
    }
} */



/* Seção de Perguntas Frequentes */
.faq {
    background-color: #f8f9fa;
}

.faq .container{max-width: 1000px; padding-bottom:70px ;}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
   
}

.faq .section-title h2{font-size: 40px; letter-spacing: 0.3px;}
.img_faq{float: left; height: 470px; margin: 0 110px 0 0;}

.faq-item {
    /* background-color: #fff; */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #ffc600;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #2e1c86;
    font-weight: 400;
}

.faq-question i {
    color: #2e1c86;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 200;
}

.faq .section-title p {color: #ffc600; font-weight: 700;}

/* Rodapé */
.footer ,.container {padding: 0;}

footer {
    background-color: #2E1C86; 
    /* background: linear-gradient(to top, #2E1C86, #000294); */
    color: #ccc;
    padding: 60px 0 0px 0;
   
    width: 100%;
}

footer .container{ max-width:100%}

.footer-content{width: 80%; margin: auto;}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
}

.footer-column ul li a {
    font-weight: 600;
    font-size: 16px;
}
.footer-column p{
    font-weight: 200;
    line-height: 25px;
    margin-bottom: 20px;
}

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

.footer-column ul li a:hover {
    color: #ffc600;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: #fffc00;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 15px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #231461;
    font-weight: 600;
    background-color: #ffc600;
    /* padding-bottom: 10ox; */
}

 /* Estilo do botão flutuante do WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
        }

/* Responsividade */

@media (max-width: 992px) {
    .info-section {
        flex-direction: column;
    }
    
    .info-image, .info-content {
        width: 100%;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .slide-controls {
        padding: 0 10px;
    }
    
    .slide-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    p{font-size: 18px;}

    section {padding: 40px 0;}

    .top-bar .container {display: none;}

    .navbar .container {padding: 15px 20px;}
    .logo img {height: 50px;}
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
        
    .section-title h2 {
        font-size: 2.3rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }

    .parallax-section {   
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0px; 
    height: 250px;
    display: flex;
    align-items: center;
    position: relative;
}
    
    .parallax-content h1 {
        width: 100%;
        font-size: 1.5rem;
    }
     .parallax-content h2 {
        width: 100%;
        font-size: 1rem;
        line-height: 25px;
    }
    
    .parallax-content p {
        font-size: 1.1rem;
    }
    
    .info-content h3 {
        font-size: 2rem;
    }
    
   .plans{
    width: 80%;
    margin: auto;
}

.plans .section-title {margin: 0 0 15px 0; }
.plans .section-title h2{font-weight: 200; font-size: 20px; }
.plans .section-title h3{font-size: 35px;}
.plans .sub_title{font-size: 35px}
.plans .sub_title span{font-size: 35px;}

    .plan-card{
    min-width: 280px;
    max-width: 350px;
    padding: 0 0 25px 0;
    }

    .plan-head{padding: 0px!important;}

    .plan-card h2 {
    font-size: 40px;
     color: #fff;
    font-weight: 800;    
    width: 70%;
    margin: 0 auto;
    padding: 10px 0;
     position: relative;
     display: inline-block; 
     
}    
    .plan-price {
        font-size: 1.5rem;
    }

    .plan-features {margin-bottom: 20px;}

    .plan-features li {
        padding: 8px 20px;
    }

    .plan-card .btn-primary{
    padding: 5px 30px;
    font-weight: 700;
    } 
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .central {   
    padding: 30px 0;
}

.central .container{
    width: 90%;
    padding: 30px 30px;
    height: 140px;
    background-image: none; 
    border-radius: 10px;    
}
.central .container img{ height: 140px; right: -40px; top: 0px!important;}
.central h2{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 20px;
       
}

.central p{
    text-align: justify;
    margin: 4px 0 0 0px;
    color: #FFF;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 200;
}

.central .section-title{position: absolute;}
.central .section-title .btn{
    color: #2e1c86;   
    padding: 3px 5px;
    font-weight: 700;
    font-size: 13px;
    float: left;
    margin: 20px 10px 0 0;
    background-color: #fff;
}
.central .section-title .btn:hover{background-color: #fff; color: #2E1C86;}

.advantages{
    width: 100%;
    width: 100%;
     height: 500px;
     
    /* overflow: hidden; */
}

.advantages h1{
    font-size: 30px;
    color: #fff;  
    /* text-shadow: 2px 1px #000; */
}
.advantages h2{
   font-size: 30px;
   margin-top: -10;
}

.advantages .section-title{margin: 0;}

 .container-vantagens {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    gap: 15px;
    /* padding: 10px;  */
}

    
    .vantagem {
        width: 150px;
        /* height: 130px; */
        padding: 20px 0;
        /* height: 200px; */
         flex-direction: column;
        text-align: center; 
        margin: 0;
        /* float: left; */    
        
    }

.vantagem-img img {
    width: 40px;
    height: 40px;
    object-fit: contain;   
}

.faq .section-title{margin: 0;}
.faq .section-title h2{font-size: 25px!important;}
.faq .container{max-width: 90%; padding-bottom:50px ; }

.img_faq{float: none; height: 300px; margin: 0 0px 0 0;}
.faq-list{margin-top: 20px;}

.faq-question h3{font-weight: 700; font-size: 16px;}
.faq-answer p{font-size: 15px; padding-top: 10px; line-height: 24px; font-weight: 400;}




}