:root {
  --background: #f8f5eb;
  --surface: #fcfaf3;
  --surface-soft: #f3ecd3;
  --foreground: #20382a;
  --muted: #5e705f;
  --forest: #1f5330;
  --forest-light: #2f6d42;
  --forest-dark: #163d24;
  --gold: #daa72c;
  --gold-light: #e7bf57;
  --gold-deep: #b58313;
  --border: rgba(31, 83, 48, 0.12);
  --shadow-soft: 0 16px 40px rgba(24, 48, 31, 0.08);
  --shadow-medium: 0 24px 60px rgba(24, 48, 31, 0.14);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 48px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

#sobre,
#servicos,
#diferenciais,
#contato {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  padding: 0;
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background-color: #1f5b31;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.site-header.is-scrolled .header-inner {
  min-height: 82px;
  padding-top: 0;
}

.site-header.is-scrolled .brand-logo {
  width: 118px;
  height: 118px;
}

.site-header.is-scrolled .desktop-nav {
  gap: 36px;
  padding-top: 0;
}

.site-header.is-scrolled .desktop-nav a {
  font-size: 0.92rem;
}

.site-header.is-scrolled .header-cta {
  min-width: 170px;
  min-height: 50px;
  border-radius: 8px;
  font-size: 0.95rem;
  padding-inline: 28px;
}

.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 32px;
  padding-top: 2px;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: 186px;
  height: 186px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 42px;
  padding-top: 2px;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a {
  color: #f7f3e7;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover,
.footer-meta a:hover {
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  min-width: 168px;
  min-height: 48px;
  padding-inline: 30px;
  border-radius: 8px;
  font-size: 0.98rem;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 24px 20px;
  background: rgba(31, 83, 48, 0.98);
  box-shadow: var(--shadow-soft);
}

.mobile-nav.is-open {
  display: grid;
  gap: 16px;
}

.mobile-nav a {
  color: #f7f3e7;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #183722;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(135deg, rgba(31, 83, 48, 0.94), rgba(18, 52, 29, 0.88)),
    radial-gradient(circle at top right, rgba(218, 167, 44, 0.24), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  padding: calc(var(--header-height) + 40px) 0 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.eyebrow-gold {
  color: var(--gold);
  border: 1px solid rgba(218, 167, 44, 0.36);
  background: rgba(218, 167, 44, 0.14);
}

.eyebrow-forest {
  color: var(--forest);
  background: rgba(31, 83, 48, 0.1);
}

.hero h1,
.section-heading h2,
.experience-panel h3,
.panel h3,
.audience-heading h3,
.contact-copy h2,
.contact-form-card h3,
.site-footer h3,
.about-copy blockquote {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 980px;
  margin-top: 26px;
  color: #f9f4e8;
  font-size: clamp(2.8rem, 5.45vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 span,
.section-dark .section-heading h2 span,
.contact-copy h2 span {
  color: var(--gold);
}

.hero-lead,
.section-heading p,
.contact-copy > p {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 1.125rem;
}

.hero-lead {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(247, 243, 231, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--forest-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 32px rgba(218, 167, 44, 0.28);
}

.button-secondary {
  color: #f8f5eb;
  border-color: rgba(248, 245, 235, 0.28);
  background: rgba(248, 245, 235, 0.06);
}

.button-secondary:hover {
  background: rgba(248, 245, 235, 0.12);
}

.button-cta {
  color: var(--forest-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 14px 32px rgba(180, 131, 19, 0.2);
}

.button-large {
  min-height: 54px;
  padding-inline: 38px;
}

.button-block {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 243, 231, 0.18);
}

.hero-actions .button-primary {
  min-width: 330px;
}

.hero-actions .button-secondary {
  min-width: 254px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon,
.feature-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(218, 167, 44, 0.18);
  color: var(--gold);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-card strong {
  display: block;
  font-size: 1.15rem;
  color: #f9f4e8;
}

.stat-card span {
  color: rgba(247, 243, 231, 0.68);
  font-size: 0.72rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(248, 245, 235, 0.38);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 10px;
}

.scroll-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: scroll-dot 1.8s infinite ease-in-out;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--background);
}

.section-dark {
  background: var(--forest);
  color: #f7f3e7;
}

.section-contact {
  background: rgba(237, 223, 183, 0.42);
}

#contato.section {
  padding-top: 64px;
  padding-bottom: 40px;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.35rem);
  line-height: 1.08;
  color: var(--foreground);
}

.section-heading p {
  margin-inline: auto;
  color: var(--muted);
}

#sobre.section {
  padding-top: 72px;
  padding-bottom: 64px;
}

#sobre .section-heading {
  margin-bottom: 34px;
}

#sobre .section-heading h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.55rem);
  line-height: 1.06;
}

#sobre .section-heading p {
  max-width: 900px;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.55;
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.audience-heading h3,
.audience-heading p {
  color: #f7f3e7;
}

.section-dark .section-heading p,
.audience-heading p {
  color: rgba(247, 243, 231, 0.8);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

#sobre .about-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(560px, 1fr);
  gap: 34px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 24px;
}

#sobre .about-copy {
  gap: 20px;
}

.about-copy blockquote,
.contact-quote {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: #f8f5eb;
  font-size: 1.8rem;
  line-height: 1.35;
}

#sobre .about-copy blockquote {
  max-width: 610px;
  padding: 26px 24px;
  font-size: 1.15rem;
  line-height: 1.42;
  border-radius: 18px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
}

#sobre .about-copy p {
  max-width: 620px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.feature-list {
  display: grid;
  gap: 20px;
}

#sobre .feature-list {
  gap: 16px;
}

.feature-card,
.differential-card,
.contact-form-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

#sobre .feature-card {
  gap: 14px;
  padding: 24px 24px 22px;
  border-radius: 20px;
}

.feature-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(218, 167, 44, 0.18);
  color: var(--gold-deep);
  font-size: 1.35rem;
  font-weight: 700;
}

#sobre .feature-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  border-radius: 14px;
}

.feature-card h3,
.service-card h3,
.differential-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

#sobre .feature-card h3 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.feature-card p,
.service-card p,
.differential-card p,
.footer-brand p,
.footer-links,
.footer-bottom,
.contact-list span {
  margin: 0;
  color: var(--muted);
}

#sobre .feature-card p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.experience-panel {
  margin-top: 56px;
  padding: 44px;
  border-radius: 32px;
  background: rgba(231, 214, 166, 0.44);
}

.experience-panel h3 {
  text-align: center;
  font-size: 2rem;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.experience-list span,
.audience-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 16px;
  border-radius: 18px;
  text-align: center;
}

.experience-list span {
  background: var(--surface);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.service-grid,
.differentials-grid {
  display: grid;
  gap: 24px;
}

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

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

#diferenciais.section {
  padding-top: 72px;
  padding-bottom: 56px;
}

#diferenciais .section-heading {
  margin-bottom: 34px;
}

#diferenciais .section-heading h2 {
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  line-height: 1.06;
}

#diferenciais .section-heading p {
  max-width: 860px;
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.55;
}

#diferenciais .differentials-grid {
  gap: 18px;
}

.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover,
.differential-card:hover,
.feature-card:hover {
  transform: translateY(-2px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.11);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(218, 167, 44, 0.18);
  color: var(--gold);
  font-weight: 700;
}

.section-dark .service-card p {
  color: rgba(247, 243, 231, 0.72);
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.panel {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.panel h3 {
  margin-bottom: 24px;
  font-size: 2rem;
}

.panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel li {
  position: relative;
  padding-left: 24px;
}

.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.panel-dark {
  background: rgba(7, 19, 11, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-gold {
  background: rgba(218, 167, 44, 0.12);
  border: 1px solid rgba(218, 167, 44, 0.32);
}

.panel-dark h3,
.panel-gold h3 {
  color: var(--gold);
}

.panel-dark li,
.panel-gold li {
  color: rgba(247, 243, 231, 0.8);
}

.differential-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
}

#diferenciais .differential-card {
  padding: 22px 22px 20px;
  border-radius: 20px;
}

.differential-card::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(218, 167, 44, 0.18);
  color: var(--gold-deep);
  font-weight: 700;
}

#diferenciais .differential-card::before {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

#diferenciais .differential-card h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.45;
}

#diferenciais .differential-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.audience-panel {
  margin-top: 56px;
  padding: 44px;
  border-radius: 32px;
  background: var(--forest);
}

.audience-heading {
  margin-bottom: 36px;
}

#diferenciais .audience-panel {
  margin-top: 48px;
  padding: 34px 38px 32px;
  border-radius: 24px;
}

#diferenciais .audience-heading {
  margin-bottom: 22px;
}

#diferenciais .audience-heading h3 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.08;
}

#diferenciais .audience-heading p {
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
}

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

#diferenciais .audience-grid {
  gap: 14px;
}

.audience-grid span {
  justify-content: flex-start;
  min-height: 92px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 243, 231, 0.92);
  text-align: left;
}

#diferenciais .audience-grid span {
  min-height: 74px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 56px;
  align-items: start;
}

#contato .contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(560px, 0.98fr);
  gap: 36px;
}

.contact-copy h2 {
  margin-top: 14px;
  max-width: 600px;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.55rem, 3.9vw, 3.9rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.contact-copy > p {
  color: var(--muted);
  max-width: 560px;
  margin-top: 18px;
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 400;
}

#contato .contact-copy h2 span {
  color: var(--forest);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
}

.contact-list strong,
.footer-brand strong {
  color: var(--foreground);
}

.contact-detail {
  display: grid;
  gap: 2px;
}

.contact-detail strong {
  font-size: 0.82rem;
  font-weight: 500;
  color: #4c7056;
}

.contact-detail span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--foreground);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f7e6b3;
  color: #f0b400;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-icon-whatsapp {
  background: #c8efc5;
  color: #22c55e;
}

.contact-list a:hover span {
  color: var(--gold-deep);
}

.contact-quote {
  margin-top: 22px;
  max-width: 600px;
  padding: 18px 22px;
  border-radius: 18px;
  font-family: "Libre Baskerville", serif;
  font-size: 0.92rem;
  line-height: 1.55;
  font-style: italic;
}

.contact-form-card {
  padding: 30px 38px;
  border-radius: 24px;
}

.contact-form-card h3 {
  margin-bottom: 14px;
  font-family: "Libre Baskerville", serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form span {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8f6ee;
  padding: 12px 16px;
  color: var(--foreground);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(218, 167, 44, 0.7);
  box-shadow: 0 0 0 4px rgba(218, 167, 44, 0.16);
  background: #fff;
}

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

.contact-submit {
  margin-top: 8px;
  min-height: 54px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-submit::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.15rem;
  line-height: 1;
}

.button[disabled] {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--forest-light);
}

.form-status.is-error {
  color: #b24028;
}

.site-footer {
  background: var(--forest-dark);
  color: #f7f3e7;
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.9fr;
  gap: 48px;
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-brand img {
  width: auto;
  height: 74px;
  margin-bottom: 20px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
  max-width: 510px;
  color: rgba(247, 243, 231, 0.78);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer-brand strong {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-footer h3 {
  margin-bottom: 16px;
  font-family: "Libre Baskerville", serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  color: rgba(247, 243, 231, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.footer-contact-list li,
.footer-contact-list a {
  display: grid;
  gap: 4px;
}

.footer-contact-label {
  color: rgba(247, 243, 231, 0.74);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
}

.footer-contact-value {
  color: #f7f3e7;
  font-size: 1rem;
  line-height: 1.35;
}

.footer-contact-list a:hover .footer-contact-label,
.footer-contact-list a:hover .footer-contact-value {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0 30px;
  margin-top: 44px;
  border-top: 1px solid rgba(247, 243, 231, 0.1);
  color: rgba(247, 243, 231, 0.56);
  font-size: 0.88rem;
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1ebe5b;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .brand-logo {
    width: 138px;
    height: 138px;
  }

  .header-inner {
    min-height: 76px;
    padding-top: 2px;
  }

  .about-grid,
  .contact-grid,
  .problem-solution,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #sobre .about-grid {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .differentials-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 32px, 1180px);
  }

  .site-header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled {
    background-color: rgba(31, 91, 49, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
  }

  .brand-logo {
    width: 118px;
    height: 118px;
  }

  .header-inner {
    display: flex;
    min-height: 64px;
    padding-top: 8px;
  }

  .hero-content {
    padding: calc(var(--header-height) + 28px) 0 60px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 92px;
    height: 92px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 68px;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary {
    min-width: 100%;
  }

  .hero-stats,
  .service-grid,
  .differentials-grid,
  .experience-list,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-bottom,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .site-footer {
    padding-top: 72px;
  }

  .section {
    padding-bottom: 72px;
  }

  #sobre.section {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  #diferenciais.section {
    padding-top: 64px;
    padding-bottom: 52px;
  }

  .experience-panel,
  .audience-panel,
  .contact-form-card {
    padding: 28px;
  }

  .contact-list a,
  .contact-list div {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .about-copy blockquote,
  .contact-quote {
    font-size: 1.45rem;
    padding: 24px;
  }
}
