/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, figure, dl, dd { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; }
}

:root {
  --background: #ffffff;
  --foreground: #141914;
  --green: #114e2b;
  --green-dark: #0b3a1f;
  --green-deep: #082916;
  --green-light: #e8f3ec;
  --green-soft: #cde5d5;
  --gold: #c9a227;
  --gold-dark: #a3831c;
  --gold-soft: #f7efd7;
  --muted-foreground: #5b6660;
  --border: #dfe8e2;

  --shadow-sm: 0 2px 8px rgba(17, 78, 43, 0.07);
  --shadow-md: 0 6px 20px rgba(17, 78, 43, 0.1);
  --shadow-lg: 0 18px 44px rgba(17, 78, 43, 0.16);

  --radius: 20px;
  --radius-lg: 28px;
  --whatsapp: #25d366;
  --whatsapp-hover: #1eb958;

  --header-height: 84px;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.7;
}

section { scroll-margin-top: var(--header-height); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.2; }

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ===== Tipografia de seção ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.section-head { margin-bottom: 56px; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin-top: 14px;
}

.section-head p {
  color: var(--muted-foreground);
  font-size: 1.02rem;
  margin-top: 12px;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-head.split > div { max-width: 560px; }
.section-head.split > p { max-width: 380px; margin: 0 0 6px; }

.section-head.center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after { display: none; }

.section-head.light .eyebrow { color: var(--gold); }
.section-head.light h2 { color: #ffffff; }
.section-head.light p { color: rgba(255, 255, 255, 0.75); }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: rgba(17, 78, 43, 0.06);
  color: var(--green);
  border: 1.5px solid rgba(17, 78, 43, 0.55);
}

.btn-outline:hover {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.btn-gold {
  background: var(--gold);
  color: #231b03;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border);
}

.scroll-progress {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 0 3px 3px 0;
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 68px; width: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
}

.nav-desktop a {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green-dark);
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: #ffffff;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.nav-mobile a.active { background: var(--green-light); color: var(--green); }

.header-cta { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  color: var(--green);
  padding: 6px;
  border-radius: 10px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.nav-mobile.open { display: flex; }

.nav-mobile a:not(.btn) {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--green-dark);
}

.nav-mobile a:not(.btn):hover { background: var(--green-light); color: var(--green); }
.nav-mobile .btn { margin-top: 10px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 64px) 0 88px;
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(205, 229, 213, 0.55) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, #f4f9f6 100%);
}

.hero-blob {
  position: absolute;
  top: -140px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  pointer-events: none;
}

.hero-blob::after {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1.5px dashed rgba(17, 78, 43, 0.18);
  animation: spin 60s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pill-gold {
  background: var(--gold-soft);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  font-weight: 800;
  color: var(--green-dark);
  margin: 22px 0 10px;
  letter-spacing: -0.01em;
}

.hero h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.hero-content > p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stats dt {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}

.hero-stats dd {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  max-width: 150px;
}

.hero-media { position: relative; }

.hero-arch {
  border-radius: 260px 260px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
  outline: 1.5px solid rgba(201, 162, 39, 0.45);
  outline-offset: 8px;
  margin: 14px;
}

.hero-arch img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  max-width: 250px;
}

.hero-card-top { top: 88px; right: -18px; }
.hero-card-bottom { bottom: 42px; left: -26px; }

.hero-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  flex-shrink: 0;
}

.hero-card-top .hero-card-icon { background: var(--gold-soft); color: var(--gold-dark); }

.hero-card p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted-foreground);
}

.hero-card p strong {
  display: block;
  font-size: 0.88rem;
  color: var(--foreground);
}

/* ===== Ticker ===== */
.ticker {
  background: var(--green);
  overflow: hidden;
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-track span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.ticker-track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Sobre ===== */
.sobre {
  position: relative;
  padding: 110px 0 90px;
  background-image: url('assets/bg-sobre.jpg');
  background-size: cover;
  background-position: center;
}

.sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.96) 100%);
}

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

.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.sobre-media { position: relative; }

.sobre-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 78, 43, 0.08);
  pointer-events: none;
}

.sobre-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.sobre-selo {
  position: absolute;
  right: -22px;
  bottom: 38px;
  background: var(--green);
  color: #ffffff;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.sobre-selo strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}

.sobre-selo span {
  font-size: 0.78rem;
  display: block;
  max-width: 120px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.sobre-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  margin: 14px 0 20px;
}

.sobre-content > p {
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.96rem;
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
}

.check-list .icon {
  color: var(--gold-dark);
  width: 1.2em;
  height: 1.2em;
}

/* ===== Missão / Visão / Valores ===== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 88px;
}

.mvv-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.mvv-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-light);
  transition: color 0.3s ease;
}

.mvv-card:hover .mvv-num { color: var(--green-soft); }

.mvv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green);
  color: #ffffff;
  margin-bottom: 18px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.mvv-card:hover .mvv-icon { transform: scale(1.1) rotate(-5deg); background: var(--gold-dark); }

.mvv-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.mvv-card p { color: var(--muted-foreground); font-size: 0.94rem; }

/* ===== Produtos (bento) ===== */
.produtos {
  position: relative;
  padding: 100px 0;
  background-image: url('assets/bg-produtos.jpg');
  background-size: cover;
  background-position: center;
}

.produtos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 249, 246, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.produto-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.produto-card.wide {
  grid-column: span 2;
  flex-direction: row;
}

.produto-card.wide .produto-image { width: 46%; flex-shrink: 0; }
.produto-card.wide .produto-body { justify-content: center; }

.produto-image {
  overflow: hidden;
  position: relative;
}

.produto-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
}

.produto-card:hover .produto-image::after { animation: shine 0.9s ease; }

@keyframes shine {
  from { left: -80%; }
  to { left: 140%; }
}

.produto-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produto-card.wide .produto-image img { height: 100%; min-height: 250px; }
.produto-card:hover .produto-image img { transform: scale(1.06); }

.produto-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.produto-body h3 { font-size: 1.22rem; }
.produto-body p { color: var(--muted-foreground); font-size: 0.93rem; flex: 1; }

.produto-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
  margin-top: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.produto-link:hover { color: var(--gold-dark); gap: 12px; }

.produto-card.cta-card {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}

.cta-card .produto-body { align-items: flex-start; justify-content: center; gap: 12px; padding: 32px 28px; }
.cta-card-icon { color: var(--gold); }
.cta-card h3 { color: #ffffff; }
.cta-card p { color: rgba(255, 255, 255, 0.78); }
.cta-card .btn { margin-top: 6px; }

/* ===== Serviços ===== */
.servicos {
  position: relative;
  padding: 100px 0;
  background-image: url('assets/bg-servicos.jpg');
  background-size: cover;
  background-position: center;
}

.servicos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(201, 162, 39, 0.12) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(160deg, rgba(11, 58, 31, 0.93) 0%, rgba(8, 41, 22, 0.95) 100%);
}

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

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servico-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.servico-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-5px);
}

.servico-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--gold);
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.servico-card:hover .servico-icon { transform: scale(1.1) rotate(-5deg); }

.servico-card h3 {
  font-size: 1.22rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.servico-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.servico-card.destaque {
  background: linear-gradient(135deg, var(--gold) 0%, #dfc25e 100%);
  border-color: var(--gold);
}

.servico-card.destaque .servico-icon {
  background: rgba(20, 15, 2, 0.12);
  border-color: rgba(20, 15, 2, 0.18);
  color: #231b03;
}

.servico-card.destaque h3 { color: #231b03; }
.servico-card.destaque p { color: rgba(35, 27, 3, 0.85); }

/* ===== Contato ===== */
.contato {
  position: relative;
  padding: 110px 0 100px;
  background-image: url('assets/bg-contato.jpg');
  background-size: cover;
  background-position: center;
}

.contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.91) 55%, rgba(255, 255, 255, 0.96) 100%);
}

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

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contato-info { display: grid; gap: 14px; }

.contato-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contato-item:hover { border-color: var(--green-soft); box-shadow: var(--shadow-sm); }

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green-light);
  color: var(--green);
  flex-shrink: 0;
}

.icon-wrap .icon { width: 1.3em; height: 1.3em; }

.contato-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contato-item p, .contato-item a {
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.contato-item a:hover { color: var(--green); text-decoration: underline; }

.social-links { display: flex; gap: 10px; margin-top: 6px; }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-links .icon { width: 1.25em; height: 1.25em; }

.contato-cta {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius);
  padding: 30px 28px;
  color: #ffffff;
  margin-top: 8px;
}

.contato-cta h3 { color: #ffffff; font-size: 1.3rem; margin-bottom: 8px; }
.contato-cta p { color: rgba(255, 255, 255, 0.78); font-size: 0.94rem; margin-bottom: 18px; }

.contato-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 100%;
  min-height: 560px;
}

.contato-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 0.8fr;
  gap: 44px;
  padding-bottom: 48px;
}

.footer-logo {
  display: inline-block;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.footer-logo img { height: 64px; width: auto; }

.footer-brand p { font-size: 0.92rem; max-width: 300px; }

.site-footer h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.site-footer ul { display: grid; gap: 10px; font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover { background: var(--gold); color: #231b03; }
.footer-social .icon { width: 1.2em; height: 1.2em; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== WhatsApp flutuante ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: background 0.25s ease;
}

.whatsapp-float:hover { background: var(--whatsapp-hover); }
.whatsapp-float:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.whatsapp-float .icon { width: 28px; height: 28px; }

/* ===== Voltar ao topo ===== */
.back-to-top {
  position: fixed;
  bottom: 94px;
  right: 30px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover { background: var(--green-dark); }
.back-to-top .icon { width: 20px; height: 20px; }

/* ===== Animações ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.hero .pill, .hero h1, .hero h2, .hero-content > p, .hero-actions, .hero-stats {
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero h1 { animation-delay: 0.08s; }
.hero h2 { animation-delay: 0.16s; }
.hero-content > p { animation-delay: 0.24s; }
.hero-actions { animation-delay: 0.32s; }
.hero-stats { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.reveal-left { transform: translateX(-34px); }
.reveal.reveal-right { transform: translateX(34px); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .pill, .hero h1, .hero h2, .hero-content > p, .hero-actions, .hero-stats { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .hero-blob::after { animation: none; }
  .produto-card:hover .produto-image::after { animation: none; }
  .hero-arch img { transition: none; }
}

/* ===== Responsivo ===== */

/* Notebooks e telas médias */
@media (max-width: 1150px) {
  .header-inner { gap: 14px; }
  .logo img { height: 56px; }
  .nav-desktop { padding: 5px; gap: 3px; }
  .nav-desktop a { padding: 8px 12px; font-size: 0.88rem; }
  .header-cta { padding: 10px 18px; font-size: 0.85rem; }

  .hero-card-top { right: 0; }
  .hero-card-bottom { left: 0; }
}

/* Tablets em paisagem */
@media (max-width: 1024px) {
  .header-cta { display: none; }

  .hero-grid { gap: 44px; }
  .hero-arch img { height: 480px; }
  .hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.4rem); }

  .mvv-grid { gap: 18px; }
  .bento-grid { gap: 18px; }
  .servicos-grid { gap: 18px; }

  .sobre-grid { gap: 48px; }
  .sobre-frame img { height: 460px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablets em retrato */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: calc(var(--header-height) + 44px) 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-media { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-content > p { max-width: none; }
  .hero-blob { top: -220px; right: -220px; }

  .sobre { padding: 88px 0 72px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 56px; }
  .sobre-media { max-width: 560px; margin: 0 auto; width: 100%; }
  .sobre-frame img { height: 420px; }
  .sobre-selo { right: 12px; }

  .mvv-grid { grid-template-columns: 1fr; margin-top: 64px; }

  .produtos { padding: 88px 0; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .produto-card.wide { grid-column: span 2; }

  .servicos { padding: 88px 0; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }

  .contato { padding: 88px 0 80px; }
  .contato-grid { grid-template-columns: 1fr; }
  .contato-mapa { min-height: 420px; }
  .contato-mapa iframe { min-height: 420px; }

  .section-head { margin-bottom: 44px; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-head.split > p { margin: 0; }
}

/* Celulares grandes / tablets pequenos */
@media (max-width: 768px) {
  .hero-stats { flex-wrap: wrap; gap: 20px 32px; }
  .hero-stats dd { max-width: none; }

  .produto-card.wide { flex-direction: column; }
  .produto-card.wide .produto-image { width: 100%; }
  .produto-card.wide .produto-image img { height: 210px; min-height: 0; }

  .ticker { padding: 13px 0; }
  .ticker-track span { font-size: 0.98rem; }
}

/* Celulares */
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .produto-card.wide { grid-column: auto; }

  .servicos-grid { grid-template-columns: 1fr; }

  .hero { padding-bottom: 60px; }
  .hero-arch { margin: 10px; }
  .hero-arch img { height: 400px; }
  .hero-card { position: static; max-width: none; margin-top: 14px; }
  .hero-media { display: flex; flex-direction: column; }

  .hero-actions { margin-top: 26px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { margin-top: 34px; padding-top: 24px; }

  .sobre-frame img { height: 340px; }
  .sobre-selo { padding: 14px 18px; }
  .sobre-selo strong { font-size: 1.6rem; }

  .check-list li { align-items: flex-start; }
  .check-list .icon { margin-top: 4px; }

  .contato-mapa { min-height: 360px; }
  .contato-mapa iframe { min-height: 360px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { width: 52px; height: 52px; right: 18px; bottom: 18px; }
  .whatsapp-float .icon { width: 26px; height: 26px; }
  .back-to-top { right: 22px; bottom: 82px; width: 40px; height: 40px; }
}

/* Celulares compactos */
@media (max-width: 420px) {
  .container { padding: 0 18px; }

  :root { --header-height: 74px; }
  .logo img { height: 50px; }

  .hero { padding-top: calc(var(--header-height) + 32px); }
  .hero h1 { font-size: 2.2rem; }
  .hero h2 { font-size: 1.02rem; }
  .hero-content > p { font-size: 0.98rem; }
  .hero-arch { border-width: 4px; outline-offset: 6px; }
  .hero-arch img { height: 330px; }
  .hero-stats { gap: 16px 24px; }
  .hero-stats dt { font-size: 1.1rem; }

  .pill { padding: 7px 14px; font-size: 0.78rem; }

  .section-head h2 { font-size: 1.55rem; }

  .ticker-track { gap: 24px; }
  .ticker-track span { font-size: 0.9rem; }

  .sobre-frame img { height: 280px; }
  .sobre-selo { right: 6px; bottom: 24px; }

  .mvv-card { padding: 28px 22px 26px; }
  .mvv-num { font-size: 2.6rem; }

  .produto-body { padding: 20px 20px 22px; }
  .servico-card { padding: 26px 22px; }
  .contato-item { padding: 16px; }
  .contato-cta { padding: 26px 22px; }

  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 26px; font-size: 0.95rem; }

  .site-footer { padding-top: 56px; }
}
