/* Reset e estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Layout principal com flexbox */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  color: #333;
}

/* O conteúdo principal cresce e empurra o rodapé */
main {
  flex: 1;
}

/* Cabeçalho */
header {
  background-color: #0614fb;
  color: #fff;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  height: 200px;
}

nav a {
  display: inline-flex;               /* transforma o link em flex container */
  align-items: center;                /* alinha texto e imagem verticalmente */
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.8;
}

/* Ícone do WhatsApp dentro do link */
nav a .contatow {
  height: 20px;                       /* ajuste conforme o tamanho desejado */
  width: auto;
  margin-left: 8px;                   /* espaço entre o texto e o ícone */
  vertical-align: middle;             /* compatível com fallback sem flex */
}

/* Banner */
.banner {
  background: url('banner.jpg') center/cover no-repeat;
  background-color: #fff;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  min-height: 372px;
}

/*.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

}*/

.banner-texto {
  position: absolute;
  bottom: 100px  ;
  left: 0;
  width: 100%;
  text-align: center;
 }

.bt_whats{
  vertical-align: bottom;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  border-radius: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-decoration: none;
}


.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.botao {
  background-color: #ffcc00;
  color: #0343a5;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.botao:hover {
  background-color: #ffd633;
}

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

.sobre .container {
  max-width: 900px;
  margin: auto;
}

.sobre h2 {
  color: #0343a5;
  margin-bottom: 10px;
}

.sobre h3{
  color: #f15523;
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 16px;
}
/* Rodapé */
footer {
  background-color: #0614fb;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
  margin-top: auto;
}
footer .container{
  max-width: 1024px;
  text-align: left;
  margin: auto;
}

footer p {
  margin: 5px 0;
}

/* Responsividade */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  nav {
    margin-top: 10px;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 1rem;
  }
}
