
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,300&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;1,300&display=swap');

/*     font-family: 'Montserrat', sans-serif; */

body {
  display: flex;
  background-color: black;
  flex-direction: column;

}


/* Cabeçalho */
header {
  background: linear-gradient(80deg, #000000, #f15a24);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 80px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
 
 
  
}


.navbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0,5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}


.logo {
  width: 4%;
  
}
.logo:hover {
  scale: 115%;
}
nav {
  display: none;
}
.cabecalho__container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 15px;
}

li {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif; 
}

.difBorder {
  border-top: 1px solid rgb(241, 90, 36);
  border-bottom: 1px solid rgb(241, 90, 36);
  padding-top: 8px;
  padding-bottom: 4px;
}
.banner {
  position: relative;
  width: 100%;
  max-width: 1800px;
  height: 400px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* garante que a imagem cubra toda a área sem distorcer */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-img.active {
  opacity: 1;
  z-index: 1;
}
/* Container*/

article {
  font-family: 'Montserrat', sans-serif; 
padding-left: 10px;
padding-right: 10px;
}

h1 {
  font-size: 19px;
  font-weight: bold;
  color: #f15a24;
  margin-bottom: 10px;
}

h2 {
  font-size: 16px;
  color: #f15a24;
  padding-bottom: 3px;
}
h3 {
  font-size: 15px;
  padding-top: 3px;
  color: white;
}

p {
  color: white;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.5;
}

/*Calculadora */

.flex {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-content: center;
margin-bottom: 15px;
}

.calculadora {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #1c1c1c;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    max-width: 400px;
    min-width: 370px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease;
}

.genero___container {
  display: flex;
  align-items:center;
  justify-items: baseline;
  padding-bottom: 7px;
  
  gap: 5px;
}

.radio {
  width: 15%;
  
}
label {
  font-size: 1rem;
    color: #ffffff;
    margin-bottom: 5px;
    margin-top: 8px;
  
}
.mensagemErro {
  color: red;
  font-size: 13px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: -15px;
  
  
}

input {
  width: 80%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  text-align:center;
  border: none;
  background-color: #2c2c2c;
  color: #ffffff;
}

select {
  text-align: center;
  font-size: 14px;
  width: 80%;
  text-align: center;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
  background-color: #2c2c2c;
  color: #ffffff;

}

button {
  background-color: #F15A24; /* Cor de fundo */
  color: white; /* Cor do texto */
  padding: 12px 24px; /* Espaçamento interno */
  font-size: 16px; /* Tamanho da fonte */
  border: none; /* Remove borda padrão */
  border-radius: 15px; /* Bordas arredondadas */
  cursor: pointer; /* Aparece a "mãozinha" ao passar o mouse */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra suave */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Transição suave */
  font-size: 18px;
}

span {
  font-size: 17px;
  color:#f15a24;
  font-weight: bold;
 
}

/* Fotter*/

footer {
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #1c1c1c, #121212);
    padding: 20px 15px;
    color: #ffffff;
    text-align: center;
    border-top: 1px solid #f15a24;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);

}
a:hover {
  color: rgb(250, 114, 64);
}

