@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --azul-escuro: #174b54;
  --azul: #317f8c;
  --verde: #169a8f;
  --verde-profundo: #08746e;
  --verde-claro: #e4f6f3;
  --menta: #f2fbf8;
  --amarelo: #f7c948;
  --amarelo-escuro: #d99b18;
  --coral: #ef8065;
  --coral-escuro: #dd6148;
  --cream: #fff7e8;
  --cream-2: #fbfffd;
  --texto: #173b43;
  --texto-suave: #5b747a;
  --branco: #ffffff;
  --linha: rgba(23, 75, 84, 0.12);
  --sombra: 0 18px 38px rgba(8, 90, 84, 0.11);
  --sombra-suave: 0 10px 26px rgba(8, 90, 84, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background:
    linear-gradient(180deg, var(--cream-2) 0%, #fffdfa 42%, #f4fbf8 100%);
  color: var(--texto);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
section { padding: 5.6rem 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--linha);
  box-shadow: 0 8px 24px rgba(23, 75, 84, 0.05);
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.03rem;
  font-weight: 800;
  color: var(--verde-profundo);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.logo::before {
  content: '';
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff url('img/instagram-logo.jpg') center / cover no-repeat;
  box-shadow: 0 8px 18px rgba(8, 90, 84, 0.12);
}
.nav-links {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--texto-suave);
  font-weight: 700;
}
.nav-links a {
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover {
  background: var(--verde-claro);
  color: var(--verde-profundo);
}
.hero {
  background:
    radial-gradient(circle at 9% 15%, rgba(247, 201, 72, 0.26) 0 10%, transparent 11%),
    radial-gradient(circle at 92% 18%, rgba(22, 154, 143, 0.16) 0 12%, transparent 13%),
    linear-gradient(135deg, #fff8e9 0%, #eefbf7 58%, #ffffff 100%);
  padding: 5.2rem 0 4.2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -16%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(239, 128, 101, 0.18) 0%, rgba(239, 128, 101, 0) 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -90px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 34px solid rgba(22, 154, 143, 0.09);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(22, 154, 143, 0.13);
  color: var(--verde-profundo);
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
h1, h2, h3 { line-height: 1.15; }
h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color: var(--azul-escuro);
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.hero-copy p,
.section-heading p,
.step-card p,
.team-card p,
.cta-box p,
.faq-list p {
  color: var(--texto-suave);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 1.2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--amarelo) 0%, var(--amarelo-escuro) 100%);
  color: #173b43;
  box-shadow: 0 16px 32px rgba(217, 155, 24, 0.24);
}
.btn-secondary {
  background: var(--branco);
  color: var(--verde-profundo);
  border: 1px solid var(--linha);
  box-shadow: var(--sombra-suave);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}
.hero-pills li {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(23, 75, 84, 0.08);
  padding: 0.54rem 0.8rem;
  border-radius: 999px;
  color: var(--texto-suave);
  font-size: 0.92rem;
  font-weight: 700;
}
.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.photo-stack img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--sombra);
  border: 7px solid var(--branco);
}
.photo-stack img:nth-child(2) {
  margin-top: 2rem;
}
.section-heading { max-width: 770px; margin-bottom: 2rem; }
.section-heading h2 {
  font-size: clamp(1.72rem, 3vw, 2.3rem);
  color: var(--azul-escuro);
  margin-bottom: 0.7rem;
}
.cards-grid, .steps-grid, .team-grid, .benefits-grid { display: grid; gap: 1.2rem; }
.cards-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .step-card, .team-card, .benefit-card, .testimonial-card, .cta-box {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: 18px;
  box-shadow: var(--sombra);
}
.card, .step-card, .benefit-card {
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}
.card::before,
.step-card::before,
.benefit-card::before {
  content: '';
  display: block;
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--verde) 0%, var(--amarelo) 100%);
  margin-bottom: 1rem;
}
.card h3, .step-card strong, .team-card h3 {
  color: var(--azul-escuro);
  margin-bottom: 0.4rem;
}
.text-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--verde-profundo);
  font-weight: 800;
}
.instagram-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}
.instagram-card { padding: 1.4rem; }
.instagram-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 5px solid var(--verde-claro);
}
.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.instagram-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--sombra);
}
.section-alt {
  background:
    radial-gradient(circle at 12% 16%, rgba(247, 201, 72, 0.18) 0 8%, transparent 9%),
    linear-gradient(135deg, rgba(22, 154, 143, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
}
.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-card { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; padding: 1rem; align-items: center; }
.team-card img { width: 140px; height: 180px; object-fit: cover; border-radius: 14px; }
.keyword-list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.keyword-list span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(22, 154, 143, 0.13);
  color: var(--verde-profundo);
  font-weight: 800;
  font-size: 0.94rem;
}
.faq-list { display: grid; gap: 0.9rem; }
.faq-list details {
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: var(--sombra-suave);
}
.faq-list summary {
  font-weight: 800;
  color: var(--azul-escuro);
  cursor: pointer;
}
.faq-list p { margin-top: 0.6rem; }
.benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.benefit-card { text-align: center; font-weight: 800; color: var(--azul-escuro); }
.testimonial-card { padding: 2rem; max-width: 760px; margin: 0 auto; }
.testimonial-card p { font-size: 1.05rem; color: var(--texto); margin-bottom: 0.7rem; }
.cta-section { padding-top: 1rem; }
.cta-box {
  padding: 2.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 201, 72, 0.32) 0 9%, transparent 10%),
    radial-gradient(circle at 88% 76%, rgba(239, 128, 101, 0.28) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--verde-profundo) 0%, var(--verde) 100%);
  color: var(--branco);
  overflow: hidden;
}
.cta-box h2 { color: var(--branco); margin-bottom: 0.7rem; }
.cta-box p { color: rgba(255,255,255,0.88); margin-bottom: 1.2rem; }
.site-footer { padding: 1.7rem 0 2.3rem; color: var(--texto-suave); }
.footer-row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.breadcrumb {
  padding-top: 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--texto-suave);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--verde-profundo); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--texto-suave); }

.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: var(--azul-escuro);
  margin: 1.8rem 0 0.6rem;
}
.prose h3 {
  font-size: 1.18rem;
  color: var(--verde-profundo);
  margin: 1.2rem 0 0.4rem;
}
.prose p { color: var(--texto-suave); margin-bottom: 0.9rem; }
.prose ul { margin: 0 0 1rem 1.2rem; color: var(--texto-suave); }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--verde-profundo); font-weight: 700; text-decoration: underline; }

@media (max-width: 900px) {
  .hero-grid, .team-grid, .cards-grid, .steps-grid, .benefits-grid { grid-template-columns: 1fr 1fr; }
  .photo-stack { grid-template-columns: 1fr; }
  .photo-stack img:nth-child(2) { margin-top: 0; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hero-grid, .team-grid, .cards-grid, .steps-grid, .benefits-grid, .instagram-showcase, .instagram-gallery { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-card img { width: 100%; height: 260px; }
}
