/* =========================
   Estilos globais
========================= */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  overflow-x: hidden;
  background: none;
}

/* =========================
   Container principal
========================= */
.container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  width: 100%;
  overflow-y: auto;
  z-index: 3;
  position: relative;
}

/* =========================
   Cabeçalho
========================= */
header {
  text-align: center;
  margin-bottom: 20px;
}

header .logo {
  max-width: 200px;
  margin-bottom: 10px;
}

header h1 {
  color: #b03030;
  font-size: 1.8em;
  margin: 10px 0;
}

/* =========================
   Inputs e selects
========================= */
label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #32cd32;
  box-shadow: 0 0 5px rgba(50, 205, 50, 0.5);
  outline: none;
}

/* =========================
   Botão
========================= */
input[type="submit"] {
  background-color: #32cd32;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}

input[type="submit"]:hover {
  background-color: #228b22;
  transform: scale(1.03);
}

/* =========================
   Informações adicionais
========================= */
.info {
  margin-top: 25px;
  font-size: 0.95em;
  color: #444;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info p {
  margin: 5px 0;
}

/* =========================
   Rodapé
========================= */
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85em;
  color: #666;
}

/* =========================
   Responsividade
========================= */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  header .logo {
    max-width: 150px;
  }

  input[type="submit"] {
    font-size: 14px;
    padding: 10px;
  }
}

/* =========================
   Fundo slideshow
========================= */
.background-slideshow {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -3;
  overflow: hidden;
}

.background-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideShow 18s infinite;
}

.background-slideshow img:nth-child(1) { animation-delay: 0s; }
.background-slideshow img:nth-child(2) { animation-delay: 6s; }
.background-slideshow img:nth-child(3) { animation-delay: 12s; }

@keyframes slideShow {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* =========================
   Shapes geométricos
========================= */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(192, 64, 0, 0.8);
  width: 300px;
  height: 100%;
  animation: moveShapes 12s linear infinite;
  mix-blend-mode: multiply;
}

.shape:nth-child(1) {
  left: -300px;
  animation-delay: 0s;
}
.shape:nth-child(2) {
  left: -600px;
  animation-delay: 3s;
  background: rgba(182, 75, 47, 0.8);
}
.shape:nth-child(3) {
  left: -900px;
  animation-delay: 6s;
  background: rgba(210, 101, 50, 0.8);
}

@keyframes moveShapes {
  0% { transform: translateX(0); }
  100% { transform: translateX(200vw); }
}
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid #ddd;
}

.logos img {
  max-height: 100px; /* Ajusta a altura */
  width: auto;
  opacity: 0.95;
  transition: transform 0.3s, opacity 0.3s;
}

.logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}