:root {
  --sand: #d4b896;
  --sand-light: #e8d5bc;
  --sand-dark: #c4a882;
  --charcoal: #2d2d2d;
  --charcoal-mid: #444444;
  --gold: #9a7b2e;
  --gold-bright: #b8962e;
  --white: #fdfaf6;
  --text-muted: #6b6b6b;
  --card-bg: rgba(255, 255, 255, 0.7);
  --border: rgba(154, 123, 46, 0.22);
  --shadow: 0 20px 60px rgba(45, 45, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--sand-light);
  color: var(--charcoal);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(900px, 92vw);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(212, 184, 150, 0.2), rgba(255, 255, 255, 0));
}

#solucoes.section.alt {
  background: #e9e9e9;
}

#faq.section.alt {
  background: #2d2d2d;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(80, 80, 80, 0.45);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #3f3f3f;
  background: rgba(145, 145, 145, 0.32);
  margin-bottom: 18px;
}

.eyebrow,
.impact-pill,
.solution-pill,
.contact-pill {
  text-transform: uppercase !important;
}

h1,
h2,
h3 {
  font-family: "Bakbak One", "Syne", sans-serif;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.15rem, 3.8vw, 3.65rem);
}

h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 25;
  backdrop-filter: blur(14px);
  background: rgba(232, 213, 188, 0.85);
  border-bottom: 1px solid rgba(154, 123, 46, 0.15);
}

.nav {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  transform: translateX(-8px);
}

.logo img {
  height: 68px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:not(.nav-cta):not(.nav-social):not(.nav-lang) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid transparent;
}

.nav-links a:not(.nav-cta):not(.nav-social):not(.nav-lang):hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(45, 45, 45, 0.25);
  color: var(--charcoal-mid);
}

.nav-social svg {
  width: 16px;
  height: 16px;
  display: block;
}

.nav-social + .nav-social,
.nav-social + .nav-lang,
.nav-lang + .nav-lang {
  margin-left: -1.04rem;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(45, 45, 45, 0.25);
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nav-lang svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-lang:hover {
  border-color: rgba(154, 123, 46, 0.45);
  box-shadow: 0 0 0 1px rgba(154, 123, 46, 0.12);
}

.nav-social:hover {
  color: var(--gold);
  border-color: rgba(154, 123, 46, 0.45);
  background: rgba(154, 123, 46, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 22px;
  box-shadow: 0 12px 30px rgba(45, 45, 45, 0.2);
}

.btn-primary:hover {
  background: var(--gold);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.42);
  color: var(--charcoal);
  padding: 14px 22px;
}

.btn-nav {
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--charcoal);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

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

.hero-image {
  width: min(100%, 483px);
  height: auto;
  display: block;
}

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

.hero-title {
  font-family: "Bakbak One", "Syne", sans-serif;
  font-size: clamp(1.62rem, 3.42vw, 2.94rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: min(36rem, 100%);
  text-align: center;
  text-transform: none;
}

.hero h1 span {
  color: var(--gold);
}

.impact-section {
  background: var(--sand-light);
  color: var(--charcoal);
  padding: 64px 0;
}

.impact-head {
  text-align: center;
  margin-bottom: 28px;
}

.impact-pill {
  display: inline-block;
  border: 1px solid rgba(80, 80, 80, 0.45);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3f3f3f;
  background: rgba(145, 145, 145, 0.32);
  margin-bottom: 14px;
}

.impact-head h2 {
  margin: 0;
  color: var(--charcoal);
}

.impact-head h2 + p {
  margin-top: 16px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.impact-item {
  text-align: center;
  padding: 14px 12px;
}

.impact-icon {
  width: 110px;
  height: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #ffffff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.impact-item.reveal.is-visible .impact-icon {
  animation: impactIconBounceIn 0.78s both;
}

.impact-grid .impact-item:nth-child(1).reveal.is-visible .impact-icon {
  animation-delay: 0.08s;
}

.impact-grid .impact-item:nth-child(2).reveal.is-visible .impact-icon {
  animation-delay: 0.16s;
}

.impact-grid .impact-item:nth-child(3).reveal.is-visible .impact-icon {
  animation-delay: 0.24s;
}

.impact-grid .impact-item:nth-child(4).reveal.is-visible .impact-icon {
  animation-delay: 0.32s;
}

.impact-item:hover .impact-icon {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.impact-icon svg {
  width: 32px;
  height: 32px;
}

.impact-icon img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
}

.impact-item p {
  margin: 0 auto;
  max-width: 24ch;
  color: var(--charcoal);
}

#dores.section {
  background: #2d2d2d;
  color: #ffffff;
}

#dores .section-head h2,
#dores .section-head p {
  color: #ffffff;
}

#dores .info-card h3 {
  font-weight: 400;
  color: #2d2d2d;
}

#dores .info-card {
  background: var(--sand-light);
}

.lead {
  margin-top: 18px;
  color: var(--charcoal-mid);
  font-size: clamp(1.1rem, 1vw, 1rem);
  max-width: 64ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.small-note {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.58));
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--gold);
  border: 1px solid rgba(154, 123, 46, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
}

.hero-card ul {
  padding-left: 20px;
  margin: 0;
  color: var(--charcoal-mid);
}

.hero-card li + li {
  margin-top: 10px;
}

.section-head {
  margin-bottom: 30px;
  max-width: 780px;
}

#dores .section-head,
#solucoes .section-head,
#resultados .section-head,
#contato .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.solution-card,
.stat-card,
.faq-item,
.contact-form {
  border: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(45, 45, 45, 0.08);
}

.info-card,
.solution-card {
  padding: 22px;
}

.info-card p,
.solution-card p {
  color: var(--charcoal-mid);
}

.solution-card strong {
  color: var(--charcoal);
}

.solution-pill {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(154, 123, 46, 0.08);
  color: var(--gold) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#solucoes .cards-grid.two {
  grid-template-columns: repeat(3, minmax(240px, 320px));
  justify-content: center;
  gap: 16px;
}

#solucoes .solution-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: auto;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(160deg, #2f3137 0%, #1f2126 100%);
  box-shadow: 0 20px 38px rgba(16, 16, 16, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#solucoes .solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.14), transparent 50%);
  pointer-events: none;
}

#solucoes .solution-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(212, 184, 150, 0.45);
  box-shadow: 0 28px 52px rgba(10, 10, 10, 0.45), 0 0 0 1px rgba(212, 184, 150, 0.2);
}

#solucoes .solution-card h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(1.22rem, 1.35vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #f6f2eb;
  margin: 0;
}

#solucoes .solution-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 200px;
  object-fit: cover;
  margin: 6px 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

#solucoes .solution-card p {
  color: rgba(245, 241, 233, 0.82);
  margin: 0;
}

#solucoes .solution-list {
  margin: 6px 0 0;
  padding-left: 1.15rem;
  color: rgba(245, 241, 233, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}

#solucoes .solution-list li {
  margin-bottom: 8px;
}

#solucoes .solution-list li:last-child {
  margin-bottom: 0;
}

#solucoes .solution-result {
  margin-top: 12px;
  font-weight: 600;
  color: #f6f2eb;
  line-height: 1.4;
}

.eyebrow--sentence {
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.35;
  font-size: clamp(0.78rem, 1.4vw, 0.88rem);
}

#resultados .stat-number--text {
  font-size: clamp(1.85rem, 4.5vw, 3.2rem);
}

.results-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(12px, 2.5vw, 28px);
  align-items: start;
  margin-top: clamp(18px, 3vw, 28px);
}

.results-split-media {
  position: relative;
}

.results-split-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 40px rgba(45, 45, 45, 0.12);
  border: 1px solid rgba(154, 123, 46, 0.15);
}

.results-split-content {
  min-width: 0;
}

.results-bullets {
  margin: 0;
  padding-left: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--charcoal);
}

.results-bullets li {
  font-weight: 400;
  line-height: 1.5;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
}

.conclusion-text {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

#solucoes .section-head {
  margin-bottom: 15px;
}

#solucoes .section-head h2 {
  margin-bottom: 7px;
}

#solucoes .lead.conclusion-text {
  margin-bottom: 36px;
}

#solucoes .solution-card .solution-pill {
  align-self: flex-start;
  margin-bottom: 2px;
  padding: 5px 9px;
  border: 1px solid rgba(165, 165, 165, 0.45);
  background: rgba(100, 100, 100, 0.34);
  color: #e2e2e2 !important;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

#solucoes .solution-card.reveal.is-visible {
  animation: solutionCardPop 0.5s ease both;
}

#solucoes .solution-card:nth-child(1).reveal.is-visible {
  animation-delay: 0.06s;
}

#solucoes .solution-card:nth-child(2).reveal.is-visible {
  animation-delay: 0.12s;
}

#solucoes .solution-card:nth-child(3).reveal.is-visible {
  animation-delay: 0.18s;
}

#solucoes .solution-card:nth-child(4).reveal.is-visible {
  animation-delay: 0.24s;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 22px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--gold);
}

.stat-text {
  color: var(--charcoal);
  margin-bottom: 14px;
}

.stat-source {
  color: var(--text-muted);
  font-size: 0.82rem;
}

#resultados .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(45, 45, 45, 0.12);
}

#resultados .stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 26px 24px 34px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

#resultados .stat-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 22px;
  height: 100%;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: rgba(0, 0, 0, 0.1);
}

#resultados .stat-card:nth-child(1),
#resultados .stat-card:nth-child(4) {
  background: #2d2d2d;
}

#resultados .stat-card:nth-child(2),
#resultados .stat-card:nth-child(5) {
  background: #fdfaf6;
}

#resultados .stat-card:nth-child(3),
#resultados .stat-card:nth-child(6) {
  background: #d4b896;
}

#resultados .stat-number {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0;
  text-align: right;
  justify-self: end;
}

#resultados .stat-text,
#resultados .stat-source {
  margin: 0;
}

#resultados .stat-source {
  justify-self: end;
  max-width: 24ch;
  font-size: 0.78rem;
  line-height: 1.35;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(45, 45, 45, 0.2);
}

#resultados .stat-card:nth-child(1) .stat-number,
#resultados .stat-card:nth-child(1) .stat-text,
#resultados .stat-card:nth-child(1) .stat-source,
#resultados .stat-card:nth-child(4) .stat-number,
#resultados .stat-card:nth-child(4) .stat-text,
#resultados .stat-card:nth-child(4) .stat-source {
  color: #fdfaf6;
}

#resultados .stat-card:nth-child(1) .stat-source,
#resultados .stat-card:nth-child(4) .stat-source {
  border-color: rgba(253, 250, 246, 0.4);
  background: rgba(253, 250, 246, 0.08);
}

#resultados .stat-card:nth-child(2) .stat-number,
#resultados .stat-card:nth-child(5) .stat-number {
  color: #2d2d2d;
}

#resultados .stat-card:nth-child(3) .stat-number,
#resultados .stat-card:nth-child(6) .stat-number {
  color: #2d2d2d;
}

#resultados .stat-card.reveal.is-visible {
  animation: resultBounceIn 0.78s both;
}

#resultados .stat-card:nth-child(1).reveal.is-visible {
  animation-delay: 0.06s;
}

#resultados .stat-card:nth-child(2).reveal.is-visible {
  animation-delay: 0.14s;
}

#resultados .stat-card:nth-child(3).reveal.is-visible {
  animation-delay: 0.22s;
}

#resultados .stat-card:nth-child(4).reveal.is-visible {
  animation-delay: 0.3s;
}

#resultados .stat-card:nth-child(5).reveal.is-visible {
  animation-delay: 0.38s;
}

#resultados .stat-card:nth-child(6).reveal.is-visible {
  animation-delay: 0.46s;
}

#resultados .results-note {
  margin-top: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--charcoal);
}

#resultados .results-source-note {
  margin-top: 8px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

#faq .faq-list {
  gap: 8px;
  width: 100%;
  min-width: 0;
  align-self: start;
  align-content: start;
  align-items: start;
}

#faq .faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 40px);
  width: 100%;
  max-width: min(52rem, 100%);
  margin: 0 auto;
  align-items: start;
}

#faq .faq-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 2.5vw, 24px);
  width: 100%;
  min-width: 0;
}

#faq .faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

#faq .faq-hero-title {
  font-family: "Bakbak One", "Syne", sans-serif;
  font-size: clamp(1.9rem, 5.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0;
  max-width: min(100%, 17rem);
}

#faq .faq-hero-lead {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(0.98rem, 1.85vw, 1.08rem);
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
}

#faq .faq-hero-cta {
  display: inline-flex;
  margin-top: 4px;
  background: var(--sand-light);
  color: var(--charcoal);
  border-color: var(--sand-light);
  box-shadow: 0 14px 32px rgba(45, 45, 45, 0.22);
}

#faq .faq-hero-cta:hover {
  background: var(--sand-dark);
  color: var(--charcoal);
}

#faq .faq-item {
  padding: 0;
  overflow: hidden;
  background: #fdfaf5;
  border-radius: 1rem;
  border: 1px solid rgba(45, 45, 45, 0.1);
  box-shadow: 0 4px 18px rgba(45, 45, 45, 0.07);
}

#faq .faq-item[open] {
  border-radius: 1rem;
}

.faq-item {
  padding: 0 18px;
}

#faq .faq-item.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 18px 0;
}

#faq .faq-item summary {
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 0.85rem 1.2rem;
  margin: 0;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.25;
  color: #2d2d2d;
  text-align: left;
}

#faq .faq-item:not([open]) summary {
  padding-bottom: 0.85rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--charcoal-mid);
  padding-bottom: 18px;
}

#faq .faq-item p {
  margin: 0;
  padding: 0.15rem 1.2rem 0.8rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact {
  background: #d0aa85;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-head {
  margin: 0 auto;
  text-align: center;
}

.contact-pill {
  margin-left: auto;
  margin-right: auto;
}

.contact-head h2 {
  color: #2d2d2d;
  max-width: 640px;
  margin: 0 auto;
}

#contato .contact-head-intro {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  text-align: center;
  font-size: clamp(1.05rem, 1.85vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--charcoal-mid);
}

#resultados .stat-card--text {
  justify-content: center;
  min-height: 5.5rem;
}

#resultados .stat-card--text .stat-text {
  font-size: clamp(1rem, 2.1vw, 1.16rem);
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-item:hover {
  color: var(--gold);
}

.contact-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(45, 45, 45, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.contact-info-item:hover .contact-info-icon {
  color: var(--gold);
  border-color: rgba(154, 123, 46, 0.45);
  background: rgba(154, 123, 46, 0.08);
}

.contact-info-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.contact-form {
  max-width: 760px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form-field.full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(45, 45, 45, 0.85);
}

.contact-form input,
.contact-form textarea {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #2d2d2d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(45, 45, 45, 0.2);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(45, 45, 45, 0.52);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(45, 45, 45, 0.45);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.08);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0.35rem;
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 45, 45, 0.6);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(45, 45, 45, 0.2);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0 44px;
  background: #2d2d2d;
}

.footer-content {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 0.814rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1;
}

.footer-logo {
  width: 133px;
  height: auto;
  margin: 0 auto 6px;
  display: block;
}

.bg-orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.32;
  pointer-events: none;
}

.orb-1 {
  top: -90px;
  right: 10%;
  background: var(--gold);
  animation: pulse 8s ease-in-out infinite;
}

.orb-2 {
  bottom: -180px;
  left: -80px;
  background: var(--sand-dark);
  animation: pulse 10s ease-in-out infinite reverse;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes impactIconBounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.78);
  }
  58% {
    opacity: 1;
    transform: translateY(-8px) scale(1.07);
  }
  76% {
    transform: translateY(4px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes solutionCardPop {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes resultBounceIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }
  55% {
    opacity: 1;
    transform: translateY(-7px) scale(1.01);
  }
  72% {
    transform: translateY(3px) scale(0.997);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1020px) {
  .cards-grid.three,
  .cards-grid.two,
  .stats-grid,
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  #resultados .stat-card {
    grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
  }

  #resultados .stat-source {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: none;
  }

}

@media (max-width: 760px) {
  #faq .faq-hero-title {
    max-width: 100%;
  }

  #faq .faq-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .nav {
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .logo {
    transform: none;
  }

  .logo img {
    height: 56px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .cards-grid.three,
  .cards-grid.two,
  .stats-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: min(100%, 368px);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  #resultados .stat-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  #resultados .stat-source {
    font-size: 0.74rem;
  }

  .results-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .results-split-image {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .results-bullets {
    text-align: left;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Centers visual and text content on mobile */
  .hero-content,
  .faq-hero,
  .section-head,
  .info-card,
  .solution-card,
  .stat-card,
  .faq-item,
  .contact-head,
  .contact-form,
  .contact-form-field,
  .contact-info-item,
  .footer-content {
    text-align: center;
  }

  .hero-image,
  .solution-card img,
  .impact-icon img,
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  #faq .faq-hero,
  #dores .section-head,
  #solucoes .section-head,
  #resultados .section-head,
  #contato .section-head {
    text-align: center;
  }

  .section-head .eyebrow,
  .section-head .impact-pill,
  .section-head .solution-pill,
  .section-head .contact-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .section-head h2,
  .section-head h3,
  .section-head p,
  .faq-hero-title,
  .faq-hero-lead,
  .contact-head h2,
  .contact-head p,
  .contact-head-intro {
    text-align: center;
  }
}

/* Mobile-first responsive layer */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, 100% - 32px);
}

.section {
  padding: 68px 0;
}

.site-header {
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 84px;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  flex-direction: row;
  align-items: center;
}

.logo {
  transform: none;
}

.logo img {
  height: 54px;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(45, 45, 45, 0.28);
  background: rgba(253, 250, 246, 0.85);
  border-radius: 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 14px;
  background: rgba(232, 213, 188, 0.98);
  border: 1px solid rgba(154, 123, 46, 0.2);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(45, 45, 45, 0.14);
  transform: translateY(-6px);
  transition: transform 0.2s ease;
  z-index: 30;
}

.site-header.menu-open .nav-links {
  display: flex;
  transform: translateY(0);
}

.nav-links a:not(.nav-social):not(.nav-lang) {
  min-height: 44px;
}

.nav-social + .nav-social,
.nav-social + .nav-lang,
.nav-lang + .nav-lang {
  margin-left: 0;
}

.hero {
  padding-top: 124px;
}

.hero-grid,
.cards-grid.three,
.cards-grid.two,
.stats-grid,
.contact-form {
  grid-template-columns: 1fr;
}

.hero-grid {
  gap: 22px;
}

.hero-title {
  max-width: 100%;
  line-height: 1.05;
}

.lead {
  font-size: 1rem;
}

.hero-cta {
  gap: 10px;
}

.hero-cta .btn {
  width: 100%;
}

#solucoes .cards-grid.two {
  grid-template-columns: 1fr;
}

#solucoes .solution-card {
  min-height: auto;
}

#dores .section-head,
#solucoes .section-head,
#resultados .section-head,
#contato .section-head {
  text-align: left;
}

.faq-item summary {
  padding: 16px 0;
}

.contact-info {
  gap: 12px;
  flex-direction: column;
  align-items: center;
}

.contact-info-item {
  width: 100%;
  justify-content: center;
  min-height: 44px;
}

.contact-form {
  margin-top: 1.4rem;
}

.btn,
.btn-white {
  min-height: 44px;
}

@media (min-width: 481px) {
  .container {
    width: min(1120px, 100% - 40px);
  }

  .section {
    padding: 76px 0;
  }

  .hero-cta .btn {
    width: auto;
  }

  .cards-grid.three,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 769px) {
  .container {
    width: min(1120px, 94vw);
  }

  .section {
    padding: 86px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .hero-content .hero-title,
  .hero-content .lead {
    text-align: left;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .cards-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #solucoes .cards-grid.two {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info {
    flex-direction: row;
    gap: 1.4rem;
  }

  .contact-info-item {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(1120px, 92vw);
  }

  .section {
    padding: 92px 0;
  }

  .nav {
    min-height: 105px;
    justify-content: center;
    gap: 2rem;
  }

  .logo {
    transform: translateX(-8px);
  }

  .logo img {
    height: 68px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .nav-cta + .nav-social {
    margin-left: -0.75rem;
  }

  .nav-social + .nav-social,
  .nav-social + .nav-lang,
  .nav-lang + .nav-lang {
    margin-left: -1.42rem;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 4vw, 56px);
  }

  .hero-title {
    text-align: left;
  }

  .cards-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #solucoes .cards-grid.two {
    grid-template-columns: repeat(3, minmax(240px, 320px));
  }

  #faq .faq-layout {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    column-gap: clamp(28px, 4vw, 52px);
    row-gap: clamp(20px, 3vw, 32px);
    max-width: none;
    margin: 0;
    align-items: start;
  }

  #faq .faq-hero {
    text-align: left;
    align-items: flex-start;
  }

  #faq .faq-list {
    margin-top: clamp(38px, 4vw, 52px);
  }

  #faq .faq-hero-title {
    max-width: 100%;
  }

  #faq .faq-hero-lead {
    max-width: 100%;
  }

  #dores .section-head,
  #solucoes .section-head,
  #resultados .section-head,
  #contato .section-head {
    text-align: center;
  }

  /* Challenges: second row (2 cards) centered on the page */
  #dores .cards-grid.three {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #dores .cards-grid.three .info-card:nth-child(1),
  #dores .cards-grid.three .info-card:nth-child(2),
  #dores .cards-grid.three .info-card:nth-child(3) {
    grid-column: span 2;
  }

  #dores .cards-grid.three .info-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  #dores .cards-grid.three .info-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 760px) {
  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 3px;
    column-gap: 10px;
  }

  .nav-links a:not(.nav-social):not(.nav-lang) {
    width: 100%;
    min-height: 44px;
    text-align: center;
    justify-content: center;
  }

  .nav-links .nav-cta {
    width: min(260px, 78%);
    margin-left: auto;
    margin-right: auto;
  }

  .nav-links .nav-social,
  .nav-links .nav-lang {
    margin-top: 13px;
  }
}
