/* =========================================================
   RESET GLOBAL
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #1f2933;
  line-height: 1.6;
  background-color: #ffffff;
}

/* =========================================================
   UTILITÁRIOS
========================================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 1000;
  background: transparent;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* LOGO */
.logo {
  height: 40px;
  width: auto;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.75;
}

/* CTA HEADER */
.site-header .btn-primary {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
}

/* =========================================================
   RESPONSIVO – HEADER
========================================================= */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .site-header {
    height: 72px;
  }

  .logo {
    height: 36px;
  }
}

/* =========================================================
   BOTÕES
========================================================= */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #2f855a;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #276749;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #1f2933;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  height: 40px;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-weight: 500;
  color: #374151;
}

.main-nav a:hover {
  color: #2f855a;
}

/* =========================================================
   HERO (FIDELIDADE LOVABLE)
========================================================= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: #9ae6b4;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================================================
   BENEFÍCIOS
========================================================= */
.benefits {
  padding: 80px 0;
  background-color: #f9fafb;
}

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: #065f46;
}

.benefit-card p {
  color: #4b5563;
}

/* =========================================================
   ESPECIALISTA
========================================================= */
.specialist {
  padding: 80px 0;
}

.specialist h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.specialist p {
  max-width: 720px;
  color: #4b5563;
}

/* =========================================================
   CTA
========================================================= */
.cta {
  background-color: #2f855a;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background-color: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}