/* Fontes Flexo */
@font-face {
  font-family: 'Flexo';
  src: url('../fontes/Flexo-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Flexo';
  src: url('../fontes/Flexo-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Flexo';
  src: url('../fontes/Flexo-Bold.ttf') format('truetype');
  font-weight: 700;
}

/* Estilo base do corpo */
body {
  margin: 0;
  padding: 0;
  font-family: 'Flexo', Arial, sans-serif;
  background-image: url('../imagens/estampa.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  color: #ffffff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Container central */
.container {
  background-color: rgba(0, 0, 0, 0.5); /* sobreposição para legibilidade */
  padding: 40px;
  border-radius: 10px;
  max-width: 90%;
  box-sizing: border-box;
}

/* Título principal */
h1 {
  font-weight: 700;
  font-size: 2.5em;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Texto complementar */
p {
  font-weight: 500;
  font-size: 1.2em;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsividade para telas pequenas */
@media (max-width: 600px) {
  .container {
    padding: 20px;
    border-radius: 5px;
  }

  h1 {
    font-size: 1.8em;
  }

  p {
    font-size: 1em;
  }
}

footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.email-button {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.email-button:hover {
  background-color: #f0f0f0;
}