/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

h1,
h2,
h3 {
  color: #7a0000; /* vermelho escuro elegante */
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* CABEÇALHO FIXO */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 3px solid #d4af37; /* ouro */
  z-index: 1000;
}

.top-bar {
  text-align: right;
  padding: 6px 20px;
  background-color: #e8e8e8;
}

.btn-whatsapp {
  background-color: #b30000; /* vermelho */
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border: 2px solid #d4af37; /* ouro */
}

/* NAV */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #b30000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-links li a {
  color: #7a0000;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #b30000;
}

/* BOTÃO MOBILE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #b30000;
}

/* HERO */
main {
  margin-top: 100px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px;
  background-color: #fff5f5; /* vermelho muito suave */
}

.hero-text {
  max-width: 50%;
}

.hero-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #b30000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
  border: 2px solid #d4af37;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #7a0000;
}

.hero-image {
  width: 40%;
  min-height: 220px;
  background-color: #e8e8e8;
  border-radius: 8px;
  border: 3px solid #d4af37;
}

/* SEÇÕES */
section {
  padding: 50px 20px;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 3px solid #d4af37;
}

section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* GRIDS */
.sobre-grid,
.servicos-grid,
.equipe-grid,
.blog-grid,
.depoimentos-list,
.contato-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.sobre-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.servicos-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.equipe-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.depoimentos-list {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.contato-grid {
  grid-template-columns: 1fr 1fr;
}

/* CARDS */
article {
  background-color: #fff8e1; /* ouro suave */
  padding: 20px;
  border-radius: 6px;
  border-left: 6px solid #d4af37; /* ouro */
}

/* LISTA ESTRUTURA */
#estrutura ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: square;
  padding-left: 20px;
}

/* FORMULÁRIO */
form {
  background-color: #fff8e1;
  padding: 20px;
  border-radius: 6px;
  border: 2px solid #d4af37;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #7a0000;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #b30000;
}

form button {
  width: 100%;
}

/* CONTATO INFO */
.contato-info {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  border-left: 6px solid #b30000;
}

/* RODAPÉ */
footer {
  background-color: #7a0000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 3px solid #d4af37;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    width: 100%;
    margin-top: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 80px;
    right: 0;
    width: 60%;
    padding: 10px 20px;
    border-left: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }
}

/* ANIMAÇÕES SUAVES */
.fade-in {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.fade-in.animate {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1s ease;
}
.slide-down.animate {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s ease;
}
.zoom-in.animate {
  opacity: 1;
  transform: scale(1);
}

.hover-rise {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hover-rise:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* PULSO */
.pulse {
  animation: pulseAnim 2s infinite;
}
@keyframes pulseAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* LOGO */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #b30000;
}

.texto-justificado {
  text-align: justify;
}

.texto-espacado {
  line-height: 1.2;
}
