@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
@import url("https://use.typekit.net/qrb0jox.css");

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

body {
    font-style: normal;
    background-color: #f0f0f0;
    color: #000000;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.perguntas-frequentes {
    color: #000000;
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    margin-left: 110px;
    margin-bottom: 10px;
    margin-top: 10px;
    
}
.fale-conosco {
    color: #000000;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 10px;
    margin-top: 10px;
}



.botao-home {
    text-align: left;
    line-height: 1.2;
    padding-left: 7px;
    margin-top: 20px;
    margin-left: 20px;
    position: relative; 
}


h1 a {
    font-family: 'Droog', sans-serif;
    font-size: 27px;
    line-height: 1.2;
    color: #00bfff !important;
    text-decoration: none;
  }
  

.faq-header {
    width: 100%;
    background: #ffffff;
    background-size: cover;
    text-align: center;
    height: 210px;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 500; 
    font-size: 14px; 
}

.faq-text  {
    font-size: 16px;
    font-style: normal;
    font-weight: 300ox;
    font-family: 'Raleway', sans-serif;
}

.fale-conosco-paragrafo {
    font-size: 16px;
}

.main-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    position: relative;
    align-items: start;
}

.container, .contact-items {
    flex-basis: 45%;
    padding: 20px;
    box-sizing: border-box;
    width: 45%;
}

.container {
    position: relative;
}

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

.main-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #fff100;
    transform: translateX(-50%);
}

.faq-item {
    margin-bottom: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid #00bfff;
}

.faq-item.active {
    border-color: #fff100; 
}

.faq-header-item {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.faq-question {
    font-style: normal;
    font-weight: 520; 
    font-size: 16px;

}

.faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #f2e941;
    transition: transform 0.2s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}


@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }

    .container, .contact-items {
        width: 100%;
    }

    .main-container::before {
        display: none;
    }
}
.social-media {
    display: flex;
    gap: 30px; 
    margin-top: 40px;
    justify-content: center;
}

.social-icon {
    color: #00bfff; 
    font-size: 2.0rem; 
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #fff100; 
}

.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}


.rodape {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 70px;
    padding-left: 40px;
    margin-bottom: 20px;
  }
  
  .titulo-rodape {
    font-family: 'Droog', sans-serif;
    font-size: 15px;
    color: #00bfff;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.2;
  }
  
  .rodape-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 70px;
    margin-bottom: 40px;
  }
  
  .menu-hover {
    display: flex;
    flex-direction: row;
    gap: 70px;
  }
  
  .menu-hover > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .rodape-direcionamento {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 5px;
    color: inherit;
    text-decoration: none;
  }
  
  .rodape-direcionamento:hover {
    color: #00bfff;
  }
  
  .lista-escondida {
    display: none;
    list-style: none;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #000000;
  }
  
  .direitos-reservados {
    font-size: 13px;
    color: #666;
    font-family: 'Poppins', sans-serif;
  }
