/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #c45435;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Cabeçalho */
  header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
  }
  
  header h1 {
    font-size: 2rem;
    color: #555;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #a67c52;
  }
  
  /* Seção Hero (usada na index.html) */
  .hero {
    background: url('https://via.placeholder.com/1200x400?text=Ceramica+Artesanal') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  /* Seções Gerais */
  section {
    padding: 40px 0;
  }
  
  /* Grid de Produtos */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .product-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #eaeaea;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .product-item:hover {
    transform: translateY(-5px);
  }
  
  .product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  
  .product-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  /* Botões */
  .btn {
    display: inline-block;
    background: #a67c52;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #8d5a3c;
  }
  
  /* Seção Sobre */
  .about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  /* Seção Contato */
  .contact-info {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .contact-info li {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  .contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* Rodapé */
  footer {
    background: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #eaeaea;
    margin-top: 40px;
  }
  