:root {
  --primary: #0f2a44;
  --secondary: #b89b5e;
  --bg: #f5f6f8;
  --text: #1e1e1e;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;

  background: linear-gradient(
      rgba(15, 42, 68, 0.85),
      rgba(15, 42, 68, 0.85)
    ),
    url('img/banner-asp-style.jpg') center / cover no-repeat;

  color: #fff;
  padding: 80px 60px;
}

/* header {
  background: linear-gradient(
      rgba(15, 42, 68, 0.75),
      rgba(15, 42, 68, 0.75)
    ),
    url('img/banner-asp-style.jpg') center / cover no-repeat;
  color: #fff;
  padding: 80px 20px 100px;
  text-align: center;
} */

.hero-content {
  max-width: 620px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 320px; /* CONTROLA O TAMANHO */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

header .logo {
  max-width: 180px;
  margin-bottom: 30px;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

header p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
}

/* CTA */
.cta {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: 0.2s;
}

.cta:hover {
  filter: brightness(1.1);
}

.trust {
  background: var(--bg);
  text-align: center;
}

.trust h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.trust-item {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.areas h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--primary);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.area {
  background: #fafafa;
  padding: 20px 25px;
  border-left: 4px solid var(--secondary);
}

.area h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.about {
  background: linear-gradient(
      rgba(15, 42, 68, 0.95),
      rgba(15, 42, 68, 0.95)
    ),
    url('img/escritorio.jpg') center / cover no-repeat;
  color: #fff;
}

.about-content {
  max-width: 800px;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  place-items: center;
  text-align: center;
}

.contact .cta {
  margin-top: 20px;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  padding: 15px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

/* Mobile First */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 16px 70px;
  }

  .hero-image {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 60px 16px 70px;
  }

  header .logo {
    max-width: 140px;
    margin-bottom: 20px;
  }

  header h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  header p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
  }

  section {
    padding: 60px 16px;
  }

  .trust h2,
  .areas h2,
  .about h2 {
    font-size: 1.8rem;
  }

  .trust-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 24px;
    font-size: 0.95rem;
  }

  .area {
    padding: 18px 20px;
  }

  .about-content {
    max-width: 100%;
  }

  footer {
    font-size: 0.8rem;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 16px 24px;
    font-size: 1rem;
  }
}
