* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .site-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-img {
    height: 70px;
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .main-nav a:hover,
  .main-nav .active {
    color: #c7254e;
  }
  
  .hero {
    background: #fdf2f4;
    text-align: center;
    padding: 80px 20px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    color: #c7254e;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn {
    display: inline-block;
    background-color: #c7254e;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #a31f3c;
  }
  
  .servicos {
    background-color: #fafafa;
    padding: 60px 20px;
  }
  
  .cards-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .card h3 {
    color: #c7254e;
    margin-bottom: 10px;
  }
  
  .nosso-trabalho {
    padding: 60px 20px;
  }
  
  .galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
  }
  
  .galeria img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .contato-direto {
    padding: 60px 20px;
    background-color: #fdf2f4;
    text-align: center;
  }
  
  .site-footer {
    background-color: #222;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 40px;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-col h3 {
    margin-bottom: 10px;
  }
  
  .footer-col ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-col a {
    color: white;
    text-decoration: none;
  }
  
  .footer-col a:hover {
    text-decoration: underline;
  }
  
  @media screen and (max-width: 768px) {
    .main-nav ul {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-top {
      flex-direction: column;
    }
  }
  
  .fonte-pacifico {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
  }

  .fonte-quicksand {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  /* === SOBRE === */
.sobre {
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
}

.sobre h2 {
  font-size: 2rem;
  color: #c7254e;
  margin-bottom: 30px;
  text-align: center;
}

.sobre-conteudo {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.sobre-conteudo img {
  max-width: 300px;
  border-radius: 10px;
  flex-shrink: 0;
}

.sobre-conteudo p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.sobre ul {
  margin-top: 20px;
  padding-left: 20px;
  list-style: disc;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.sobre ul li {
  margin-bottom: 10px;
}

.fonte-pacifico {
  font-family: 'Pacifico', cursive;
  margin: 0;
}

.fonte-quicksand {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
}

/* Esconde o menu em telas pequenas */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px; /* altura do header */
    right: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .main-nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .site-header .container {
    position: relative;
  }
}

@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/quicksand-v36-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pacifico';
  src: url('../fonts/pacifico-v22-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}