* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

hmtl, body{
  height: 100%;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: column;
}

section {
  background-color: #fff;
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section p{
  margin-bottom: 10px;
  font-size: 1.1em;
}

h2 {
  color: #145a32;
  margin-bottom: 10px;
  border-left: 5px solid #27ae60;
  padding-left: 10px;
  font-size: 1.8em;
}

@media (max-width: 600px) {
  section {
    margin: 10px;
    padding: 15px;
  }

  h2 {
    font-size: 1.5em;
  }

  p {
    font-size: 1em;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right {
    justify-content: center;
  }

  .social {
    justify-content: center;
  }
}

  header {
    background-color: #333;
    padding: 20px 30px;
    display: flex;
    align-items: center;
  }

  .logo {
    font-size: 26px;
    font-weight: bold;
    color: #ffe600 !important;
    text-decoration: none !important;
    font-family: Georgia, serif;
    margin-right: 40px;
  }

  nav {
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: center;
  }

  nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    transition: color 0.3s;
  }

  nav a:hover {
    color: #ffe600;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
  }

  .dropdown-content a:hover {
    background-color: #555;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
    line-height: 1.6;
  }
  
  .intro {
    text-align: center;
    margin-bottom: 40px;
  }

  .intro p{
    margin-top: 10px;
  }
  
  .produtos h3 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
  }
  
  .card {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px; /* altura total padronizada */
  }

  .card .descricao {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px; /* define o espaço entre nome e preço */
    min-height: 60px;
    margin-bottom: 10px;
  }

  .card .nome-produto {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .card .preco {
    font-weight: bold;
    color: #222;
  }
  
  .card:hover {
    transform: scale(1.03);
  }
  
  .card img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .card p {
    margin: 10px 0;
    flex-grow: 1; /* ocupa o espaço restante */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card strong {
    display: block;
    margin-top: 5px;
  }
  
  .card button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: auto;
  }
  
  .card button:hover {
    background: #218838;
  }
  
  footer {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .footer-left {
    flex: 1;
    text-align: left;
  }
  
  .footer-right img {
    width: 24px;
    height: 24px;
  }

  .footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .contato-label {
    font-weight: bold;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      align-items: center;
    }

    .product-info {
      text-align: center;
    }

    nav {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  }

  .whatsapp-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #25D366;
    color: white !important;
    padding: 6px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .whatsapp-menu img {
    width: 20px;
    height: 20px;
  }

  .whatsapp-menu:hover {
    background-color: #1ebe5b;
  }