/* ===== CONFIGURAÇÕES GERAIS ===== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fffaf5;
  color: #333;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

p {
  font-size: 1rem;
}

/* ===== HEADER ===== */
.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

.logo {
  max-height: 50px;
}

.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav a:hover {
  color: #e60000;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
}

/* ===== SEÇÃO PARALLAX ===== */
.parallax-section {
  background: url('images/parallax1.jpg') center/cover fixed;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.parallax-section p {
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.botao-destaque {
  background-color: #e60000;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.botao-destaque:hover {
  background-color: #b50000;
}

/* ===== SOBRE NÓS ===== */
.sobre {
  background-color: #fffaf5;
  padding: 60px 20px;
}

.sobre-container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-img {
  flex: 1;
}

.sobre-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  text-align: left;
  margin-bottom: 15px;
}

.sobre-texto p {
  text-align: justify;
}

/* ===== PRODUTOS ===== */
.produtos {
  padding: 60px 20px;
  background-color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.card p {
  margin-top: 10px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  position: sticky;
  bottom: 0;
  text-align: center;
  padding: 20px;
  background-color: #f2f2f2;
  font-size: 0.9rem;
  z-index: 1000;
}

/* ===== BOTÃO WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav.active {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav ul li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .nav ul li a {
    display: block;
    width: 100%;
  }

  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-texto h2 {
    text-align: center;
  }
}

/* === FORMULÁRIO DE CONTATO === */
.amidomil-form-wrapper {
  max-width: 700px;
  margin: 0 auto 40px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.amidomil-logo {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.amidomil-logo img {
  max-width: 150px;
  height: auto;
}

.amidomil-form-container {
  padding: 0 30px 30px 30px;
}

.amidomil-form-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}

.amidomil-form-container p {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e62e3c;
  outline: none;
}

.amidomil-form-container button {
  width: 100%;
  padding: 15px;
  background-color: #e62e3c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.amidomil-form-container button:hover {
  background-color: #872421;
}

.form-footer {
  height: 10px;
  background-color: #872421;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* === FORMULÁRIO SUCESSO === */
.amidomil-form-container-sucesso {
  text-align: center;
}

.btn-voltar {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #e62e3c;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-voltar:hover {
  background-color: #d67b15;
}
