* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: Krona;
}

@font-face {
  font-family: Krona;
  src: url(../fonts/KronaOne-Regular.ttf);
}

:root {
  --branco: #ffffff;
  --preto: #000000;
  --dourado: #d6bb71;
}

.inicio {
  height: 100vh;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url("../img/imagemDeFundoInicio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--branco);
  text-align: center;
  padding-bottom: 27vh;
  position: relative;
}

.corTitulo{
  color: var(--preto);
}

.conteudoInicio {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logoInicio {
  max-width: 500px;
}

.tituloInicial {
  font-size: 50px;
  color: var(--dourado);
}

.subtituloInicial{
  color: var(--branco);
}

.caixaTransicao {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 150px;
  background-color: var(--branco);
  border-radius: 30px 30px 0 0;
  padding: 50px;
  text-align: center;
}

.btnSaibaMais {
  display: inline-block;
  background: var(--dourado);
  color: var(--preto);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btnSaibaMais:hover {
  background: #c1a65f;
  color: var(--branco);
}

html {
  scroll-behavior: smooth;
}

.fraseTransicao {
  color: var(--preto);
  font-weight: bold;
  font-size: 1.2rem;
  padding-bottom: 5px; 
  border-bottom: 3px solid var(--dourado);
}

.hidden {
  display: none;
}

.video-explicativo {
  background-color: var(--branco);
}

.video-explicativo h2 {
  font-weight: bold;
  font-size: 2.2rem;
}

.video-wrapper {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: var(--preto);
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  outline: none;
}

video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 12px 12px;
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-timeline {
  filter: invert(1);
}

.informacoes {
  padding: 80px 0;
  background-color: var(--branco);
}

.bloco-texto {
  margin-bottom: 60px;
}

.bloco-texto:last-child {
  margin-bottom: 0;
}

.bloco-texto h3 {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  padding-left: 25px;
  margin-bottom: 15px;
  display: inline-block;
}

.bloco-texto h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: var(--dourado);
}

.bloco-texto p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.vantagens {
  padding: 10px 0;
  background-color: var(--branco);
}

.card-vantagem {
  background-color: var(--dourado);
  color: var(--preto);
  padding: 30px 25px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.card-icone {
  font-size: 2.5rem;
  margin-right: 20px;
  color: var(--preto);
}

.card-conteudo h4 {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--preto);
}

.card-conteudo p {
  margin-bottom: 0;
  opacity: 0.9;
  color: var(--preto);
}

.card-vantagem::before {
  position: absolute;
  top: 10px;
  right: -60px;
  transform: rotate(35deg);
  background: rgba(0,0,0,0.1);
  color: var(--preto);
  font-size: 0.9rem;
  font-weight: bold;
  padding: 3px 40px;
  border-radius: 5px;
  letter-spacing: 1px;
}

.motoristas {
  background-color: var(--branco);
}

.motoristas h2 {
  font-weight: bold;
  font-size: 2.2rem;
}

.aviso-motoristas {
  background-color: var(--dourado);
  color: var(--preto);
  border-radius: 25px;
  padding: 25px 40px;
  display: inline-block;
}

.aviso-motoristas p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.download-app {
  background-color: var(--preto);
  color: var(--branco);
}

.download-app h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.subtitle-app {
  font-size: 1.2rem;
  opacity: 0.8;
}

.android-button {
  height: 55px;
  margin: 0 10px;
  transition: transform 0.2s;
}

.apple-button {
  height: 44px;
  margin: 0 10px;
  transition: transform 0.2s;
}

.app-buttons img:hover {
  transform: scale(1.05);
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--branco);
  border-radius: 12px;
  color: var(--branco);
  font-size: 1.6rem;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 15px;
}

.social-icon:hover {
  background-color: var(--dourado);
  border-color: var(--dourado);
  color: var(--preto);
}

.footer {
  background-color: var(--preto);
  color: var(--branco);
}

.footer-divider.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-top: 4px solid var(--dourado);
}

.footer-logo {
  max-width: 200px;
}

.contato-titulo {
  color: var(--dourado);
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer ul li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer ul li i {
  color: var(--dourado);
  margin-right: 10px;
}