/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: "Arial", sans-serif;
    height: 100%;
}

/* TOPO */
.topo {
    text-align: center;
    padding: 20px 0;
}

.logo {
    width: 360px;
    height: 94px;
}

/* MENU */
.menu {
    background-color: #2b3b84; /* Azul escuro usado no menu */
    text-align: center;
}

.menu ul {
    list-style: none;
    display: inline-block;
}

.menu ul li {
    display: inline;
    margin: 0 20px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 15px;
    display: inline-block;
}

.menu ul li a:hover {
    background-color: #1e2b63;
    border-radius: 5px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 59, 132, 0.5); /* azul escuro com transparência */
    z-index: 2;
}

.texto-central {
    position: relative;
    z-index: 3;
    text-align: center;
    top: 40%;
    color: #0f2c63;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
}

.texto-central h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.texto-central p {
    font-size: 1.2em;
}

/* Seção Sobre */
.sobre {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.sobre .titulo {
    font-size: 28px;
    color: #3e4ab8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.sobre .sub-linha {
    width: 30px;
    height: 3px;
    background-color: #3e4ab8;
    margin: 0 auto 20px auto;
}

.sobre .descricao {
    max-width: 800px;
    margin: 0 auto 15px auto;
    font-size: 14px;
    color: #222;
    line-height: 1.6;
}

/* Missão Visão Valores */
.mvv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ccc;
    padding: 60px 20px;
    text-align: center;
}

.mvv-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    margin: 10px;
    padding: 30px 20px;
    background-color: #ccc;
    color: #222;
}

.mvv-item h3 {
    color: #3e4ab8;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mvv-item .sub-linha {
    width: 30px;
    height: 3px;
    background-color: #3e4ab8;
    margin: 10px auto 20px auto;
}

.mvv-item.destaque {
    background-color: #3e4ab8;
    color: #fff;
}

.mvv-item.destaque h3 {
    color: #fff;
}

.mvv-item.destaque .clara {
    background-color: #fff;
}

.mvv-item p {
    font-size: 14px;
    line-height: 1.6;
}

#divisor-video video {
    max-height: 150px;
    width: 100%;
    object-fit: cover;
}

#equipe {
    background-image: url(img/05\ -\ Finance\ -\ 5438.mp4);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

#equipe .overlay img {
    width: 200px;
    opacity: 0.9;
}

/* Seção EQUIPE */
#equipe {
    background-image: url(/img/LOGO/site-01.png); /* caminho da marca d'água */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    padding: 60px 20px;
    text-align: center;
    color: #000033;
    position: relative;
}

/* Imagem da palavra EQUIPE */
#equipe .overlay img {
    width: 150px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Textos */
#equipe .container {
    max-width: 1000px;
    margin: 150px auto;
    text-align: left;
}

#equipe .membro {
    margin-bottom: 20px;
}

#equipe .membro h3 {
    color: #3d5aa6;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#servicos {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.titulo-secao {
    font-size: 32px;
    color: white;
    background-color: #004080;
    padding: 15px 0;
    margin-bottom: 40px;
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.servico {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.servico:hover {
    transform: translateY(-5px);
}

.servico img {
    width: 60px;
    margin-bottom: 15px;
}

.servico h3 {
    font-size: 20px;
    color: #004080;
    margin-bottom: 10px;
}

.servico p {
    font-size: 16px;
    color: #555;
}

#contato {
    background-color: #ccc;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.contato-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 60%;
    justify-content: center;
    align-items: center;
    padding: 0 80px;
    box-sizing: border-box;
    gap: 40px;
    margin: auto;
}

.contato-img {
    flex: 1 1 40%;
    background: url("sua-imagem.jpg") no-repeat center center;
    background-size: cover;
}

.contato-conteudo {
    flex: 1 1 60%;
    max-width: 900px;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 8px;
    margin: auto;
}

.contato-conteudo h2 {
    font-size: 36px;
    color: #3e57b6;
    margin-bottom: 30px;
}

.contato-infos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contato-infos h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contato-infos p {
    font-size: 14px;
    line-height: 1.6;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-contato input,
.form-contato textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #3e4ab8;
    border-radius: 5px;
    background-color: #f7f7f7;
    transition: all 0.3s ease;
}

.form-contato input:focus,
.form-contato textarea:focus {
    border-color: #2b3b84;
    outline: none;
    background-color: #fff;
}

.form-contato textarea {
    min-height: 120px;
}

.form-contato button {
    background-color: #2b3b84;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    align-self: flex-end;
    transition: background-color 0.3s ease;
}

.form-contato button:hover {
    background-color: #1e2b63;
}

footer {
    background-color: #2b3b84;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-container > div {
    flex: 1 1 300px;
}

footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

footer p {
    font-size: 14px;
    line-height: 1.6;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #ccc;
}

textarea {
  resize: none;
}

@media (max-width: 1224px) {
  .grid-servicos {
    grid-template-columns: 1fr 1fr;
  }
}

#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#whatsapp-button a {
  display: inline-block;
  border: none;
  outline: none;
}

#whatsapp-button img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  border: none;
  outline: none;
}
#whatsapp-button img:hover {
  transform: scale(1.1);
}
