@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: 'Roboto', sans-serif;

}

.navbar{
    display: flex;
    flex-flow: row wrap;
    height: 100px;
    padding-top: 10px;
    background: white;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
}

.logo{
    flex: 20%;
    margin-left: 10%;
    /* border: 1px solid red; */
    text-align: center;
    text-align: left;
}

.logo img {
    width: 100px;
    height: 90px;
    border-radius: 15%;
}

/* .logo h1{
    font-family: 'Lobster', cursive;
    color: #180F4A;
    font-size: 34px;
} */

.menu{
    flex: 70%;
    /* border: 1px solid green; */
    text-align: right;
    padding: 20px;
}

.menu a{
    color: #180F4A;
    text-decoration: none;
    font-size: 20px;
    padding: 20px 16px;
}

.menu a:hover{
    color: #1e0096;
    border-top: 4px solid #180F4A;
}

#botao{
    background: #180F4A;
    padding: 10px 25px;
    color: white;
    border-radius: 5px;
    margin-right: 10%;
    margin-left: 5%;
}

#botao:hover{
    border: none;
    background: #1e0096;

}

.header{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background: white;
    padding-top: 130px;
}

.headline{
    margin-left: 10%;
    flex: 40%;
    /*border:1px solid black;*/
}

.headline p{
    padding-bottom: 10px;
}

.headline h2{
    font-weight: 900;
    font-size: 20px;
    color: #180F4A;
    padding: 0;
    margin: 0;
}

.headline p{
    color: gray;
    text-align: left;
}

.contact-btn{
    display: inline-block;
    background: #180F4A;
    padding: 20px;
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.contact-btn:hover{
    background: #180F4A;
}

.img-headline{
    margin-right: 10%;
    flex: 40%;
    /* border: 1px solid deeppink; */
    text-align: center;
}

.sec{
    display: inline-block;
    margin-top: 80px;
    /*border: 1px solid black;*/
    margin-left: 5%;
    margin-left: 5%;
    padding: 5%;
    text-align: center;
}

.sec h2{
    width: 100%;
    font-size: 50px;
    margin: 0;
    /*font-family: 'Lobster', cursive;*/
    font-weight: bold;
    color: #180F4A;
}

.servicos{
    display: inline-block;
    margin-top: 5%;
}

.card{
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 1%;
    border: 1px solid #1e0096;
    border-radius: 10px;
    cursor: pointer;
}

.texto-oculto{
    display: none;
}

.card:hover{
    background: #1e0096;
    color: white;
    padding: 40px;
}

.card:hover img{
    display: none;
}

.card:hover .card-text{
    display: none;
}
.card:hover .texto-oculto{
    display: block;
}

footer {
    margin-top: 100px;
    height: auto;
    background-image: linear-gradient(180deg, #1e0096, #1e0096, #1e0095);
    text-align: center;
    border-top: 5px solid #1e0096;
    padding: 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo-nome-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; 
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px; 
    height: auto;
}

.logo-rodape {
    padding: 10px;
    text-align: left;
}

.agencia {
    color: white;
    font-size: 34px;
}

.direito {
    color: white;
    margin-top: 15px;
}

.contact-info {
    color: white;
    font-size: 16px;
    margin: 10px 0;
}

.contact-info p {
    margin: 5px 0;
}

.social-media {
    margin-top: 20px;
}

.social-media p {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.social-media a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}

.social-media a img {
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

.social-media a:hover img {
    filter: brightness(0.8) invert(1);
}







/* Centralização e estilo do container geral */
.Acord {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f4f7fc;
}

/* Estilo para a accordion */
.accordion {
    width: 60%; 
    background-color: #fff;
    border-radius: 12px; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px; 
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

/* Estilo para o cabeçalho do accordion */
.accordion-header {
    background-color: #180F4A;
    color: white;
    padding: 18px 25px; 
    cursor: pointer;
    font-size: 20px; 
    text-align: left;
    border: none;
    width: 100%;
    border-radius: 10px; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.accordion-header:hover {
    background-color: #140B37;
    transform: scale(1.05); 
}

.accordion-body {
    display: none;
    padding: 15px 25px; 
    background-color: #f8f8f8;
    font-size: 16px;
    border-radius: 10px;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out; 
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.active .accordion-body {
    display: block;
    max-height: 500px; 
    opacity: 1;
}

/* Estilo para a seta */
.arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
    color: #fff;
}

.active .arrow {
    transform: rotate(90deg); 
}

/* Estilo para o título */
h1 {
    font-size: 36px;
    color: #1e0096;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Arial', 
}




/* Estilo para a seção de vantagens */
.vantages {
    width: 100%;
    padding: 40px 20px;
    background-color: #f4f7fc;
  
}

.vantages-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; 
}

/* Estilo para a imagem */
.vantages-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
}

/* Estilo para as informações
.vantages-info {
    width: 60%;
    text-align: left;
}

/* Título da seção */
.vantages-info h2 {
    font-size: 32px;
    color: #1e0096;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

/* Container para as vantagens */
.vantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Estilo para os itens de vantagem */
.vantage-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.vantage-item:hover {
    transform: translateY(-10px);
}

/* Estilo para os ícones */
.vantage-item i {
    font-size: 40px;
    color: #180F4A;
    margin-bottom: 15px;
}

/* Título e texto de cada vantagem */
.vantage-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.vantage-item p {
    font-size: 16px;
    color: #666;
}

/* Estilos de ícones */
.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}


/* Estilo para a seção "Sobre a Empresa" */
.about-us {
    width: 100%;
    padding: 60px 20px; 
    background-color: #1e0096; 
    margin-top: 40px; 
}

/* Container centralizado para o conteúdo */
.about-us-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px; 
    flex-wrap: wrap;
}

/* Estilo para a descrição da empresa */
.about-us-info {
    width: 30%;
    text-align: left;
}

.about-us-info h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: 700; 
}

.about-us-info p {
    font-size: 18px; 
    color: white;
    line-height: 1.8; 
    margin-bottom: 30px; 
}

.about-us-values {
    width: 35%;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.about-us-values h3 {
    font-size: 32px;
    color: #1e0096;
    margin-bottom: 25px;  
    font-family: 'Arial', sans-serif;
    font-weight: 700; 
}

.value {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 30px;
}

.value i {
    font-size: 45px; 
    color: #180F4A;
    margin-right: 20px; 
}

.value h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px; 
    font-weight: 600; 
}

.value p {
    font-size: 16px; 
    color: #777;
    line-height: 1.6;
}

/* Ícones Font Awesome */
.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.5); 
}

/* Conteúdo do modal */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Modal padrão */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

/* Conteúdo do Modal */
.modal-content {
  background-color: #fff;
  margin: 100px auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-family: sans-serif;
  position: relative;
}

/* Botão de fechar */
.close-button {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}

.close-button:hover {
  color: #000;
}

/* Estilo do formulário */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

#submitBtn {
  padding: 10px 20px;
  background-color: #0051ff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#submitBtn:disabled {
  background-color: #999;
  cursor: wait;
}

.ouvidoria-btn {
  background: linear-gradient(135deg, #4e00d2, #5c27f7);  /* Roxo mais claro e suave */
  border: none;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: transform 0.4s ease, background 0.4s ease;  /* Mais suave */
  box-shadow: 0 3px 10px rgba(78, 0, 210, 0.3);
  color: white;
}

.ouvidoria-btn:hover {
  background: linear-gradient(135deg, #4a00c8, #5c00f2);  /* Roxo mais claro no hover */
  box-shadow: 0 5px 15px rgba(78, 0, 210, 0.4);
  transform: scale(1.05);  /* Efeito mais suave */
  cursor: pointer;
}


/* Media query para telas pequenas */
@media (max-width: 768px) {
    .vantages-content {
        flex-direction: column; 
        align-items: center; 
    }

    .vantages-image,
    .vantages-info {
        width: 100%; 
    }

    .about-us-content {
        flex-direction: column; 
        
    }

    .about-us-info,
    .about-us-values {
        width: 100%; 
    }
}
