
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("fotos/fundo2.jpg") no-repeat center center fixed;
  background-size: cover;
  opacity: 0.5; 
  pointer-events: none;
}

/* cabesalho */
.cabesalho {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: linear-gradient(
  to right,
  rgba(15,21,34,0.2) 0%,    /* 90% opaco */
  rgba(16,185,129,0.2) 50%,  /* 50% opaco */
  rgba(15,21,34,0.2) 100%    /* 90% opaco */
);
  margin-top: -30px;
  min-height: 80px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 120px;
  height: 120px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 70px;
}

.menu a {
  /*text-decoration: none;
  
  font-weight: 500;*/
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: bold;
  color: #07073d;
  font-size: 1.8rem !important;
  
}

.menu a:hover {
  color: #004aad;
}

.menu .destaque {
  
  font-weight: bold;
}

.botoes {
  display: flex;
  gap: 15px;
}

.botoes a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: bold;
}

.btn-cadastrar {
  background: #002060;
  color: #fff;
}

.btn-login {
  border: 2px solid #002060;
  color: #002060;
  background: #fff;
}

/* MEIO */
.meio {
  position: relative;
  width: 100%;
  height: 800px; /* aumente a altura conforme o desejado */
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meio-text {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center; /* Centraliza o texto */
  max-width: 1200px;
  margin: 0 auto;  /* Centraliza horizontalmente */
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.meio-text h1 {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ecf2f8;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.meio-text p {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.meio-text .frase {
  font-family: "Brush Script MT", cursive;
  font-size: 1.6rem;
  color: #a1734c;
  margin-bottom: 25px;
}

.meio-beneficios {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
  color: #cde8ff;
  font-size: 1.1rem;
}
.meio-beneficios li {
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
}
.meio-beneficios i {
  font-family: Arial, Helvetica, sans-serif;
  color: #1a4e96;
  margin-right: 0.7rem;
  font-size: 1.2em;
}

.btn-teste {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 25px;
  margin-top: 20px;
  display: inline-block;
  background: #c8f3f5;
  color: #000000;
  text-decoration: none;
  padding: 13px 100px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  
}

.btn-teste:hover {
  background: #004aad;
}



/* RESPONSIVO */
@media (max-width: 900px) {
  .meio {
    flex-direction: column;
    text-align: center;
  }
  .meio img {
    max-width: 100%;
  }
}

/* Mobile - Ajustes do cabeçalho */
@media (max-width: 768px) {
  .cabesalho {
    padding: 15px 20px;
    min-height: 90px;
    margin-top: 0;
  }

  .logo img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .cabesalho {
    padding: 12px 15px;
    min-height: 85px;
  }

  .logo img {
    width: 100px;
    height: 100px;
  }
}

.carousel {
  position: relative;
  width: 500px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  
}

.carousel img {
  width: 100%;
  display: none;
  border-radius: 12px;
  
}

.carousel img.active {
  display: block;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.carousel .prev { left: 10px; }
.carousel .next { right: 10px; }

.carousel button:hover {
  background: rgba(0,0,0,0.8);
}

#sobre {
  max-width: 900px;       /* largura máxima */
  margin: 50px auto;      /* centraliza horizontalmente */
  text-align: center;     /* centraliza o texto */
  line-height: 1.8;       /* deixa o texto mais espaçado */
  font-size: 1rem;        /* tamanho da fonte */
  color: #333;            /* cor do texto */
  padding: 20px;
  
}

#sobre h1 {
  font-size: 2.2rem;
  color: #002060;         /* cor de destaque */
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

#sobre p {
  text-align: justify;    /* deixa o texto alinhado dos dois lados */
  margin-bottom: 15px;
  font-size: 19px;
}

