:root {
    --primary: #000000;
    --gold-light: #d4af37;
    --gold-dark: #8c6b1f;
    --bg: #f9f9f9;
  }
  
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    color: #333;
  }


  .btn {
    background: var(--gold-dark);
    color: white;
    font-weight: 500;
  }

  nav a:hover {
    color: var(--gold-light);
    text-decoration: underline;
  }

  header h1 a {
    text-decoration: none;
    color: var(--gold-dark);
  }

  header h1 {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
  h2, h3 {
    color: var(--gold-dark);
    font-weight: 600;
  }

  .hero-text h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  }
  
  .hero-text p {
    color: #f1f1f1;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  }




  header h1 {
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }



  /* HEADER */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
  }
  
  nav a {
    text-decoration: none;
    color: var(--gold-dark);
    font-weight: 500;
  }
  
  /* HERO */
  .hero {
    background: url('img/estrutura.PNG') no-repeat center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-text {
    background: none;
  }
  
  /* BOTÃO */
  .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #25D366; /* verde WhatsApp */
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
  }
  
  /* SERVIÇOS */
  .servicos {
    padding: 40px;
    text-align: center;
  }
  
  .cards {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
  }
  
  
  /* GALERIA */
  .galeria {
    padding: 40px;
    text-align: center;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
  .grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
  }
  
  .grid img:hover {
    transform: scale(1.05);
  }
  
  /* SOBRE */
  .sobre {
    padding: 40px;
    text-align: center;
  }
  
  /* CONTATO */
  .contato {
    padding: 40px;
    text-align: center;
  }
  
  iframe {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border: none;
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: white;
  }
  
  /* WHATSAPP FLOAT */
  .whatsapp-float {
    background: #25D366;
  }
  
  /* RESPONSIVO */
@media (max-width: 768px) {

    .cards {
      flex-direction: column;
    }
  
    .hero-text h2 {
      font-size: 1.4rem;
    }
  
    .hero-text p {
      font-size: 0.9rem;
    }
  
    .hero {
      height: 60vh;
      padding: 0 10px;
    }
  
  }
    
    
