/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #b5f8b8;
  max-width: 100wh;
  overflow-X: hidden;
gap: 10px;
text-align: center;
padding: 0%;
background-color: rgba(0, 0, 0, 0.836);
background-size:contain;
padding: 10%;
background-image: url("FOTOS/BACKGROUND.jpg");
}

/* Logo */
#logo {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 2%;
  right:  45%;
  height: 15%;
  animation: pulse 5s infinite ease-in-out;
  cursor: pointer;
}

#main {
  padding:10%;
 margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
width: 100%;
max-width: 768px;
  text-align: center;

  background-color: #b5f8b8;
  border-radius: 13px;
  box-shadow: 5px 2px 20px 10px rgb(60, 255, 1);
  z-index: 900; 
  color: wheat;
  gap: 10px;
  text-align: center;
  background-color: black;
 

}
section {
  width: 100%;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;

  border-radius: 13px;
  box-shadow: 2.5px 1.5px 5px 5px rgb(255, 1, 1);
  z-index: 800; 
  color: wheat;
  gap: 10px;
  text-align: center;
 border: #f1ee04 solid 5px;
 border-radius: 30px;
}
linha {
  margin-top: 5%;
  margin-bottom: 2% ;
  padding: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border-radius: 13px;
  box-shadow: 3px 3px 5px 2px rgb(60, 255, 1);
  z-index: 700;
  color: wheat;
  gap: 10px;
  text-align: center;
  border: #ff0000 solid 3px;
  border-radius: 30px;
  font-size: 4vh;
}
#botoes{
  
  margin-bottom: 2% ;
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  text-align: center;
  font-size: 20px;
}
.input-config {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #00fc0d;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #000000;
  color: rgb(255, 255, 255);
 

  font-size: 20px;
  font-weight: 900;
  text-align: center;
  gap: 10px;
  text-align: center;
}
.input-config:hover {
  background-color: #ffffff;
  box-shadow: 3px 3px 10px 10px rgb(2, 125, 240);
  color: rgb(0, 0, 0);
}

.action-button {
  width: 70%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #bdf7f7; /* cor de fundo mais vibrante */
  color:  #1707ff; /* cor de texto mais clara */
  font-weight: bold;
  font-size: 38px;
  cursor: pointer;
  border: 5px solid #1707ff; /* cor de borda mais vibrante */
  border-radius: 30px;
  animation: tremida 2s infinite;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* sombra para dar profundidade */
  transition: background-color 0.3s ease-in-out; /* transição para mudar a cor de fundo */
}

.action-button:hover {
  background-color: #3e8e41; /* cor de fundo mais escura ao passar o mouse */
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4); /* sombra mais forte ao passar o mouse */
}

iframe{
  border: none;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #000000; /* cor de fundo mais vibrante */
  color:  #ffffff; /* cor de texto mais clara */
  font-weight: bold;
  font-size: 6vh;
  cursor: pointer;
  border: 2px solid #ffffff; /* cor de borda mais vibrante */
  border-radius: 30px;
  animation: tremida 10s infinite;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* sombra para dar profundidade */
  transition: background-color 0.3s ease-in-out; /* transição para mudar a cor de fundo */
  width: 100%;
  height:300px;
}
#dadosveiculo{
  width: 90%;
}

@keyframes tremida {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(2px);
  }
  20% {
    transform: translateX(-2px);
  }
  30% {
    transform: translateX(2px);
  }
  40% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(1px);
  }
  70% {
    transform: translateX(-1px);
  }
  80% {
    transform: translateX(1px);
  }
  90% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(0);
  }
}



@keyframes surgimento {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  20% {
    opacity: 0.2;
    transform: scale(0.7);
  }
  40% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  60% {
    opacity: 0.6;
    transform: scale(1.1);
  }
  80% {
    opacity: 0.8;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

h1 {
  font-size: 80px;
  font-weight: bold;
  color: #00fc0d;
  text-align: center;
  margin-bottom: 20px;
  animation: pulse 3s infinite;
}

/* Media Queries para smartphones */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 50px;
  }
  linha {
    font-size: 12PX;
  }
  .input-config {
    font-size: 12PX;
  }
  .content-select {
    font-size: 12PX;
  }
  .action-button {
    font-size: 12PX;
  } 

}