:root {
    --linear-purple: linear-gradient(90deg, #d836e6, #581cea, rgba(88, 28, 174, 0));
    --vermelho: #da291c;
    --preto: #1f1d1d;
    --purple-haze:  #581cea;
    --branco: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
html {
    scroll-behavior: smooth;
}
section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: var(--preto);
    background-color: var(--vermelho);
}
.header.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
header section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.navbar {
    width: 100%;
}
.navbar a {
    margin: 0 1rem;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: 0.5s;
}

.navbar a:hover {
    color: var(--main-color);
    padding-bottom: 0.5rem;
    font-size: 1.3rem;
    letter-spacing: 0.5rem;
}
.icons {
    display: flex;
}
.icons img {
    margin: 1rem;
    cursor: pointer;
    filter: brightness(0) invert(1);
}
.icons img:hover {
    width: 40px;
    height: 40px;
    
}

.btn {
    background: var(--main-color);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
}
.logo {
    filter: drop-shadow(0px 0px 20px #fff);
    width: 50%;

}
.logo img {
    width: 30%;
}

/* Menu responsivo */
.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: end;

    }
    .navbar a {
        font-size: 2rem;
        margin: 10px;
    }
    .navbar.active {
        display: flex;
        background-color: var(--vermelho);
    }

    .menu-btn {
        display: flex;
    }

    .icons {
        display: none; /* Opcional: ocultar os ícones em telas menores */
    }
}

@media screen and (max-width: 450px ) {
    body {
        max-width: 450px;
        width: 100%;
    }
    header {
        max-width: 450px;
        width: 100%;
    }
    section {
        max-width: 450px;
    }
}
.home-container {
    background: linear-gradient(
    to right,
    var(--vermelho), /* Verde escuro semi-transparente na esquerda */
    rgba(0, 128, 0, 0) 50%, /* Transição para transparente no centro */
    rgba(0, 128, 0, 0) 50%, /* Centro transparente */
    rgba(0, 128, 0, 0) /* Verde escuro semi-transparente na direita */
    ), url("../assets/images/Internet\ Para\ Empresas\ Provedor\ De\ Internet\ Moderno\ Roxo\ E\ Branco\ Post\ Para\ Instagram.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-position: center;
    background-size: cover;
    
}
.home-container section {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.content {
    max-width: 60rem;

}

.content a {
    max-width: 25rem;
    display: flex;
    align-items: center;
    gap: 1.3rem;
    font-weight: 500;
}
.content a img {
    filter: brightness(0) invert(1);
    width: 20px;
}
.content h1 {
    color: var(--preto);
    font-size: 3rem;
    text-shadow: var(--branco) 1px 1px;
}
.content h2 {
    color: var(--preto);
    font-size: 2rem;
    text-shadow: var(--branco) 1px 1px;
    
}
.content p {
    color: #fff;
    font-size: 2rem;
    font-weight: 100;
    line-height: 1.8;
    padding: 1rem 0;
}
.btn {
    background-color: var(--vermelho);
    font-size: 18px;
}
.btn:hover {
    letter-spacing: 0.4rem;
}



@media screen and (max-width: 450px ) {
    
    .home-container {
        max-width: 450px;
        width: 100%;
        background: url("../assets/images/Internet\ Para\ Empresas\ Provedor\ De\ Internet\ Moderno\ Roxo\ E\ Branco\ Post\ Para\ Instagram.png");
        height: 100vh;
        background-position: center;
        background-size: cover;
    }
    .home-container section {
        display: flex;
        align-items: center;
        min-height: 100vh;
    }
  
    .content {
        max-width: 60rem;
    
    }
    .content a {
        max-width: 25rem;
        display: flex;
        align-items: center;
        gap: 1.3rem;
        font-weight: 500;
    }
    .content a img {
        filter: brightness(0) invert(1);
        width: 20px;
    }
    .content h1 {
        color: var(--preto);
        font-size: 3rem;
    }
    .content h2 {
        color: var(--vermelho);
        font-size: 2rem;
    }
    .content p {
        color: #fff;
        font-size: 2rem;
        font-weight: 100;
        line-height: 1.8;
        padding: 1rem 0;
    }
    
    .btn:hover {
        letter-spacing: 0.4rem;
    }
    
}

@media screen and (min-width:451) and (max-width: 768px) {
    .home-container {
        max-width: 768px;
        min-width: 451px;
        width: 100%;
    }
}
.main-content {
    height: 100%;
    background-color: var(--preto);
}
.menu {
    background-color: var(--branco);
}
.menu h2 {
    font-size: 3.5rem;
}
.menu h2 span {
    color: var(--preto);
}
.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.menu .box-container .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
    border: 1px solid var(--vermelho);
    padding: 2rem;
    cursor: pointer;
    gap:1.8rem;
}
.menu .box-container .box h3 {
    text-align: justify;
    font-size: 50px;
}
.menu .box-container .box h4 {
    text-align: justify;
    font-size: 25px;
}
.menu .box-container .box p {
    text-align: justify;
    font-size: 20px;
}

.menu .box-container .box:hover {
    background-color:var(--preto);
    
}
.menu .box-container .box:hover>* {
    color: var(--branco);
}
.menu .box-container .box a:hover {
    background-color: var(--vermelho);
    color: #ffffff;
}
.menu .box-container .box .price {
    color: #000;
    font-size: 2rem;
    padding: 0.5rem 0;
    flex-grow: 1;
}


.menu .box-container .box .price:hover {
    color: #fff;
}
.menu .box-container .box .price  span{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}
.menu .box-container .box .price p {
    font-size: 1.8rem;
    text-align: justify;
}
.menu .box-container .box .brands .count {
    
    border: 1px solid var(--branco);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    

}
.brands .brands-imgs {
    display: flex;
    gap: 0.5rem;
}
.brands-imgs .count {
    background-color: var(--vermelho);
    color: #fff;
    border: white;
}
@media screen and (max-width: 450px) {
    body{
        max-width: 450px;
        width: 100%;
    }
    .main-content {
        max-width: 450px;
        width: 100%;
        padding: 0 10px;
    }
    .menu .box-container {
        max-width: 450px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5px;
        
    }
    
    .brands img {
        width: 60px; 
    }
    .brands .brands-imgs {
        display: flex;
        gap: 0.5rem;
    }
    .brands-imgs .count {
        background-color: var(--vermelho);
        color: #fff;
        border: white;
    }
    .menu .box-container .box .brands .count {
        width: 60px;
        height: 60px;

    }
    .menu .box-container .box h3 {
        font-size: 40px;
    }
    .menu .box-container .box h3:nth-child(5) {
        font-size: 20px;
    }
    .menu .box-container .box .price p {
        font-size: 1.4rem;
        font-weight: 6
        500;
        text-align: justify;
    }
}

footer {
    background-color: var(--vermelho);
    padding: 40px;
    width: 100%;
}
footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    color: var(--branco);
}
.footer-end {
    padding: 20px 0;
    color: var(--branco);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.local {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    width: 100%;
    align-items: center;
    color: var(--branco);
}
.local h2 {
    font-size: 2.6rem
}
.local p {
    font-size: 22px;
}
.local iframe {
    width: 100%;
}

.btn-whatsapp {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
    cursor: pointer;
}
.btn-whatsapp img {
    max-width: 74px;
    transition: 0.4s;
    animation: zoomImage 2s infinite;
}
.btn-whatsapp img:hover{
    transform: scale(1.1);
}
.tooltip-text{
    visibility: hidden;
    position: absolute;
    width: 220px;
    top: 8px;
    left: -244px;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s;
    color: #f7c73b;
    background-color: var(--bg);
    font-size: 20px;
    background-color: var(--vermelho);
            color: var(--preto);
}
.btn-whatsapp:hover .tooltip-text{
    visibility: visible;
    opacity: 1;
}
@media screen and (max-width: 450px) {
    .btn-whatsapp{
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 99;
        cursor: pointer;
    }
    .btn-whatsapp img {
            max-width: 54px;
            transition: 0.4s;
            animation: zoomImage 2s infinite;
    }
    .btn-whatsapp img:hover {
            transform: scale(1.1);
    }
    .tooltip-text{
            visibility: hidden;
            position: absolute;
            width: 220px;
            top: 8px;
            left: -244px;
            padding: 6px;
            border-radius: 8px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.4s;
            background-color: var(--vermelho);
            color: var(--preto);
    }
    .btn-whatsapp:hover .tooltip-text{
        visibility: visible;
        opacity: 1;
    }
}

#faq {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  #faq h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--vermelho);
  }
  
  .faq-item {
    margin-bottom: 15px;
  }
  
  .faq-question {
    width: 100%;
    background: var(--vermelho);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .faq-question:hover {
    background: #b51d12;
  }
  
  .faq-answer {
    margin-top: 10px;
    padding: 15px;
    background: #f1f1f1;
    border-left: 4px solid #b51d12;
    border-radius: 5px;
    display: none;
    font-size: 14px;
    line-height: 1.5;
  }
 
 /* Estilo da seção de contato */
 .contato {
    background-image: url("./assets/images/Internet\ Para\ Empresas\ Provedor\ De\ Internet\ Moderno\ Roxo\ E\ Branco\ Post\ Para\ Instagram.png"); 
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }
#contact {
    max-width: 650px;
   
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  #contact h2 {
    font-size: 28px;
    color: #004aad;
    margin-bottom: 20px;
  }
  
  #contact p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
  }
  
  .contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .contact-icon {
    text-decoration: none;
    text-align: center;
    color: #333;
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  .contact-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .contact-icon:hover img {
    transform: scale(1.2);
  }
  
  .contact-icon:hover {
    transform: translateY(-5px);
    color: #004aad;
  }
  
  .contact-icon span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
  }
  


  /* Estilo da seção de benefícios */
#benefits {
    max-width: 1200px;
    padding: 20px;
    text-align: center;
  }
  
  #benefits h2 {
    font-size: 28px;
    color: var(--branco);
    margin-bottom: 30px;
  }
  
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .benefit-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
  }
  
  .benefit-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .benefit-item h3 {
    font-size: 18px;
    color: #004aad;
    margin-bottom: 10px;
  }
  
  .benefit-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  



  /* Estilo da seção de depoimentos */
#testimonials {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
  }
  
  #testimonials h2 {
    font-size: 28px;
    color: var(--branco);
    margin-bottom: 30px;
  }
  
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .testimonial-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .testimonial-item:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .testimonial-item h3 {
    font-size: 18px;
    color: #004aad;
    margin-bottom: 5px;
  }
  
  .testimonial-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  
  .testimonial-item p strong {
    color: #333;
  }

  



  /* Estilo da seção de call to action */
#call-to-action {
    background: linear-gradient(90deg, #004aad, #0078ff);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  #call-to-action .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  #call-to-action h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  #call-to-action p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .cta-button {
    background: #ffcc00;
    color: #004aad;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #e6b800;
  }
  