/* Estilos gerais */
body {
    font-size: 16px; /* Tamanho de fonte padrão */
    line-height: 1.5;
  }
.nav_header {
    font-size: 16px; 
    text-decoration: dashed;
    margin: 0;
    padding: 20px;
    color: #0a6652; /* Cor branca */
}
.nav_dropdown {
    font-size: 14px; 
    padding: 20px;
    font-family: 'Archivo Black';
    color: #dbdbdb; /* Cor branca */
    text-shadow: #383838 1px 0 2px;

}

.head_banner {
    background-image: url('../img/banner2.png');
    background-size: cover;
    text-align: center;
    padding: 230px 0; /* Aumentando o espaço vertical */
    margin-top: 0;
    color: white;
}

.headline {
    font-size: 36px; /* Aumentando o tamanho da headline */
    text-align: center;
    margin-bottom: 20px;
    color: white; /* Cor branca */
    text-shadow: #444444 3px 0 3px;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px; /* Aumentando o tamanho do botão */
    background-color: #0a6652; /* Botões */
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 24px; /* Aumentando o tamanho do texto do botão */
    transition: background-color 0.3s;
    border: 0;  
    box-shadow: 0 0 40px rgba(0, 0, 0, 10);
}

.cta-button:hover {
    display: inline-block;
    background-color: #00cf45; /* Cor dos links ao passar o mouse */
    

}
 /* Estilos personalizados para o carousel slider */

  .carousel-container {
    margin: 20px auto;
  }
 .carousel-item {
    height: 500px; /* Ajuste a altura conforme necessário */
  }

  .carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.cards {
     border-radius: 20px;
}
/* Estilos da seção de consultoria */
.consultation {
    background-color: #08594b;
    text-align: center;
    padding: 5px 0;
    box-shadow: 10px #323232;
    border-radius: 25px;

}

.consultation h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff; /* Headlines */
}

.consultation form {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
}

.consultation form input,
.consultation form button {
    display: block;
    width: 40%; /* Aumentando a largura dos campos */
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 10px; /* Bordas arredondadas */
    background-color: #0a6652;
    border-bottom: #323232 5px solid;
    box-shadow: 0 0 10px rgba(0, 0, 0, 10);
    transition: background-color 0.3s;

}

.consultation form button:hover {
    background-color: #00cf45; /* Cor dos links ao passar o mouse */
    width: 40%; /* Aumentando a largura dos campos */
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 10px; /* Bordas arredondadas */
    border-bottom: #323232 5px solid;
    box-shadow: 0 0 15px rgba(0, 0, 0, 10);
}

.consultation form input {
    background-color: #DDE6ED; /* Cor dos campos de formulário */
    color: rgb(29, 29, 29); /* Cor do texto dos formulários */
    font-family: 'Bebas Neue', sans-serif; /* Fonte "Bebas Neue" */
    text-align: center;
}

.consultation form button {
    background-color: #0a6652; /* Botões */
    color: white;
    cursor: pointer;
    font-size: 28px; /* Aumentando o tamanho do botão */
}

.image-block {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    
}

.title-wrap {
    border-radius: 0 10px 10px 0;
}