/* Cooper3 — Landing page clean e minimalista */
:root {
  /* Design tokens */
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-2: #f5f5f5;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --border: #e8e8e8;
  --accent: #03a65a;
  --accent-hover: #028a4a;
  --accent-2: #03588c;
  --accent-2-hover: #024a73;
  --brand: #03a65a;
  --brand-hover: #028a4a;
  --brand-soft: rgba(3, 166, 90, 0.1);
  --gold: #e2b474;
  --ring: var(--brand);
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.08);
  --container: 1140px;
  --section-pad: clamp(48px, 6vw, 72px);
  --header-h: 72px;
  --scroll-offset: calc(var(--header-h) + 16px);

  /* Tipografia */
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --h1: clamp(1.75rem, 3.5vw, 2.25rem);
  --h2: clamp(1.5rem, 2.5vw, 1.75rem);
  --h3: clamp(1.25rem, 2vw, 1.375rem);
  --text-s: 0.9375rem;
  --text-m: 1rem;
  --text-l: 1.125rem;
  --line-tight: 1.2;
  --line-body: 1.6;
  --line-relaxed: 1.7;
  --text-max: 65ch;
}

/* Reset e base */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  min-height: 100vh;
  font-size: var(--text-m);
  font-weight: 400;
  line-height: var(--line-body);
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

/* Offset para header fixo em âncoras */
[id] {
  scroll-margin-top: var(--scroll-offset);
}

::selection { background: rgba(3, 166, 90, 0.2); }

/* Background desativado (design clean) */
.bg-grid, .bg-noise {
  display: none;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  object-fit: contain;
}

.brand .name {
  display: flex;
  flex-direction: column;
  line-height: var(--line-tight);
}

.brand .name strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.brand .name span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  padding: 8px 0;
  color: var(--text);
  font-weight: 500;
  font-size: var(--text-s);
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav a.active {
  color: var(--accent);
  font-weight: 600;
  border-bottom-color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ========== Botões ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-s);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: white;
}

.btn-outline {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Focus visível */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========== Burger (mobile) ========== */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
  border-radius: 2px;
}

.mobile-panel {
  display: none;
  position: absolute;
  top: calc(var(--header-h) - 1px);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
}

.mobile-panel .container {
  padding: 24px 0;
}

.mobile-panel a {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  font-weight: 500;
  border-radius: var(--radius);
  margin-bottom: 4px;
}

.mobile-panel a:hover,
.mobile-panel a.active {
  color: var(--accent);
  background: var(--bg);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-2-hover) 0%, var(--accent-2) 40%, var(--accent) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-height: clamp(360px, 55vh, 520px);
}

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

.hero-media .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-2-hover);
}

.hero-media .slide.active { opacity: 1; }

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 45%, transparent 75%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: var(--section-pad) 24px;
  min-height: clamp(360px, 55vh, 520px);
  display: grid;
  align-content: end;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h1);
  line-height: var(--line-tight);
  color: white;
  max-width: 18ch;
}

.hero p {
  color: rgba(255,255,255,0.95);
  max-width: var(--text-max);
  margin-top: 16px;
  font-size: var(--text-l);
}

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

.hero-actions .btn-primary {
  background: white;
  color: var(--accent);
  border-color: white;
}

.hero-actions .btn-primary:hover {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--bg);
}

.hero-actions .btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.7);
}

.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: white;
}

/* ========== Stats bar ========== */
.stats-bar {
  background: var(--accent);
  color: white;
  padding: 24px 16px;
  margin-top: -1px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-item .number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 1.1;
}

.stat-item .label {
  font-size: var(--text-s);
  font-weight: 500;
  opacity: 0.95;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stat-divider { display: none; }
}

/* ========== Values bar ========== */
.values-bar {
  background: var(--accent-2);
  color: white;
  padding: 48px 16px;
}

.values-bar .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.values-head {
  margin-bottom: 0;
  text-align: center;
}

.values-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.values-head p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-s);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.value-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
}

.value-item .icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.value-item .label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-s);
}

.value-item .desc {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.25;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Sections ========== */
.section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.section--alt {
  background: var(--bg);
}

.section-title {
  margin-bottom: 32px;
  max-width: var(--text-max);
}

.section-title .kicker {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h2);
  color: var(--text);
  line-height: var(--line-tight);
}

.section-title h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h3);
  color: var(--text);
  line-height: var(--line-tight);
}

.section-title p {
  color: var(--muted);
  margin-top: 8px;
  font-size: var(--text-m);
  line-height: var(--line-relaxed);
}

.section-title--compact {
  margin-top: 48px;
  margin-bottom: 24px;
}

.text-muted {
  color: var(--muted);
  margin-top: 16px;
  font-size: var(--text-s);
  line-height: var(--line-relaxed);
  max-width: var(--text-max);
}

/* Grid responsiva */
.grid {
  display: grid;
  gap: 24px;
}

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

@media (min-width: 600px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Cards clean */
.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(3, 166, 90, 0.2);
}

.card .kicker {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: var(--text-s);
  line-height: var(--line-relaxed);
}

.card .list {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  padding-left: 0;
}

.card .list li {
  list-style: none;
  padding-left: 1.25rem;
  position: relative;
  color: var(--muted);
  font-size: var(--text-s);
}

.card .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Media card (sobre) */
.media-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.media-card > * { min-width: 0; }

.media-card--intro {
  grid-template-columns: 0.9fr 1.1fr;
}

.media-card--intro .media {
  max-width: min(380px, 100%);
  justify-self: start;
}

.media {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media--1x1 { aspect-ratio: 1 / 1; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--16x9 { aspect-ratio: 16 / 9; }

/* Serviços - layout clean (cards + 1 imagem) */
.services-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.services-main .service-card {
  padding: 1rem;
}

.services-main .service-card .kicker {
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.services-main .service-card p {
  margin: 0.35rem 0 0.65rem;
  font-size: var(--text-s);
  line-height: 1.35;
}

.services-main .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.services-main .chip {
  font-size: 0.85rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
  color: var(--muted);
}

.services-media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
  aspect-ratio: 4 / 3;
  position: relative;
}

.services-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services-media figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.85rem;
}

@media (max-width: 920px) {
  .services-split {
    grid-template-columns: 1fr;
  }
  .services-media {
    aspect-ratio: 16 / 10;
  }
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 600px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

.gallery .shot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg);
  aspect-ratio: 4 / 3;
}

.gallery .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .shot .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent);
  color: white;
}

.gallery .shot .cap strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-s);
}

.gallery .shot .cap span {
  display: block;
  font-size: 0.8125rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* Partners grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
  justify-items: stretch;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 560px;
  }
}

.partners-grid .logo-badge {
  width: 100%;
  height: 100%;
  min-height: 56px;
  max-height: 64px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.partners-grid .logo-badge img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* FAQ Accordion */
.accordion {
  display: grid;
  gap: 12px;
}

.qa {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.qa button {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: var(--text-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.qa .a {
  padding: 0 20px 16px;
  color: var(--muted);
  font-size: var(--text-s);
  display: none;
  line-height: var(--line-relaxed);
}

.qa.open .a { display: block; }

.qa .chev {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}

.qa.open .chev {
  transform: rotate(180deg);
  border-color: var(--accent);
  background: rgba(3, 166, 90, 0.08);
}

/* CTA box */
.cta {
  margin-top: 32px;
  padding: 24px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h3);
  color: var(--text);
}

.cta p {
  color: var(--muted);
  margin-top: 4px;
  font-size: var(--text-s);
}

/* Split (legado) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--shadow);
}

.panel h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h3);
  color: var(--text);
}

.panel p {
  color: var(--muted);
  margin-top: 8px;
  font-size: var(--text-s);
}

.panel-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.panel .media {
  margin-top: 24px;
}

/* Form base */
.form {
  display: grid;
  gap: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: var(--text-s);
  color: var(--text);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-m);
  transition: border-color 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.helper {
  color: var(--muted);
  font-size: var(--text-s);
  margin-top: 8px;
}

/* ========== Contato — layout 2 colunas equilibrado ========== */
.contact {
  background: var(--surface-2);
  padding: 72px 0;
}

.contact__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

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

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

@media (max-width: 900px) {
  .contact-card {
    padding: 24px;
  }
}

.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 4 / 3;
  min-height: 240px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.contact-map-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.contact-map-hint {
  font-size: var(--text-s);
  color: var(--muted);
  margin: 0;
}

.contact-map-hint a {
  color: var(--brand);
  font-weight: 600;
}

.contact-map-hint a:hover {
  color: var(--brand-hover);
}

.contact-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h2);
  color: var(--text);
  line-height: var(--line-tight);
  margin: 0 0 12px;
}

.contact-text {
  color: var(--muted);
  font-size: var(--text-m);
  line-height: var(--line-relaxed);
  max-width: var(--text-max);
  margin: 0 0 16px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .contact-actions {
    flex-direction: column;
  }
  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-list__label {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.contact-list a {
  color: var(--brand);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--brand-hover);
}

/* Form — labels acima, inputs outlined */
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-form .field:last-of-type {
  margin-bottom: 0;
}

.contact-form .label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.contact-form .input,
.contact-form .textarea {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color 0.2s ease, outline 0.2s ease;
}

.contact-form .input::placeholder,
.contact-form .textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

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

.contact-form .input:focus,
.contact-form .textarea:focus {
  outline: none;
}

.contact-form .input:focus-visible,
.contact-form .textarea:focus-visible,
.contact-form .btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ring) 65%, transparent 35%);
  outline-offset: 2px;
}

.contact-form .btn {
  margin-top: 24px;
}

.contact-form .hint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.btn--full-mobile {
  width: auto;
}

@media (max-width: 900px) {
  .btn--full-mobile {
    width: 100%;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-m);
  letter-spacing: 0.02em;
  color: var(--text);
}

.footer small {
  color: var(--muted);
  font-size: var(--text-s);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 60;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-hover);
  transition: transform 0.2s ease;
}

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

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ========== Responsivo ========== */
@media (max-width: 992px) {
  .nav { display: none; }
  .burger { display: inline-flex; flex-direction: column; }
  .mobile-panel.show { display: block; }

  .hero-content { padding: 48px 16px; }
  .media-card { grid-template-columns: 1fr; }
  .media-card--intro .media {
    max-width: 100%;
    order: 2; /* texto primeiro, foto depois — evita duas fotos seguidas após o hero */
  }
  .media-card--intro > div:not(.media) { order: 1; }
  .split { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}

/* Aperta o espaçamento entre Parceiros e FAQ */
.section--tight-bottom {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.section--tight-top {
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* (Opcional) Se a área dos logos estiver com altura "sobrando" */
#parceiros .partners-carousel,
#parceiros .partners-grid,
#parceiros .partners-carousel__track {
  padding-block: 0;
  min-height: 0;
}

/* (Opcional) deixa o título da seção mais "colado" nos logos */
#parceiros .section-title {
  margin-bottom: 1rem;
}

.partners-grid .logo-badge--suzano,
.partners-grid .logo-badge--large {
  min-height: 68px;
  max-height: 78px;
  padding: 6px;
}

.partners-grid .logo-badge--suzano img,
.partners-grid .logo-badge--large img {
  max-height: 100%;
}
