/* ══════════════════════════════════════════════
   VERITA ENGENHARIA — style.css
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── VARIABLES ─────────────────────────────── */
:root {
  --pet: #0B3B42;
  --pet-dark: #082D33;
  --pet-mid: #0E4A53;
  --cop: #C47C5A;
  --cop-light: #D4956E;
  --cop-dark: #A8663E;
  --ow: #F7F5F0;
  --gr: #2F3233;
  --gr-mid: #5A5F61;
  --gr-light: #8A9091;
  --white: #FFFFFF;

  --serif: 'Cinzel', serif;
  --sans: 'Raleway', sans-serif;
  --nav-h: 72px;
  --radius: 3px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--ow);
  color: var(--gr);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: var(--sans); }

/* ── CONTAINER ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
.t-serif   { font-family: var(--serif); }
.t-sans    { font-family: var(--sans); }
.t-pet     { color: var(--pet); }
.t-cop     { color: var(--cop); }
.t-ow      { color: var(--ow); }
.t-gr      { color: var(--gr); }
.t-mid     { color: var(--gr-mid); }

.kicker {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cop);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  color: var(--pet);
}

.section-title.on-dark { color: var(--ow); }

.section-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gr-mid);
  max-width: 560px;
}
.section-sub.on-dark { color: rgba(247,245,240,.65); }

.rule-cop {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--cop);
  margin: 16px 0;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cop);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--cop-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,124,90,.35);
}

.btn-outline {
  background: transparent;
  color: var(--ow);
  border: 1px solid rgba(247,245,240,.4);
}
.btn-outline:hover {
  border-color: var(--cop);
  color: var(--cop);
}

.btn-outline-dark {
  background: transparent;
  color: var(--pet);
  border: 1px solid rgba(11,59,66,.4);
}
.btn-outline-dark:hover {
  border-color: var(--cop);
  color: var(--cop);
}

/* ── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

nav.transparent { background: transparent; }
nav.scrolled {
  background: var(--pet-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo svg { width: 36px; height: 36px; }

.nav-wordmark { display: flex; flex-direction: column; }
.nav-v {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ow);
  line-height: 1;
}
.nav-e {
  font-size: 6.5px;
  font-weight: 300;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cop);
  line-height: 1;
  margin-top: 3px;
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247,245,240,.7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cop);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ow); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ow);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--pet-dark);
  padding: 24px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247,245,240,.75);
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--cop); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--pet-dark);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 60% 40%, rgba(14,74,83,.6) 0%, transparent 60%),
              radial-gradient(ellipse 50% 60% at 20% 80%, rgba(196,124,90,.06) 0%, transparent 50%);
}

.hero-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(65vh, 600px);
  height: min(65vh, 600px);
  opacity: .035;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cop);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cop);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ow);
  line-height: 1.0;
}

.hero-headline .eng-line {
  font-family: var(--sans);
  font-size: clamp(14px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: .4em;
  color: var(--cop);
  display: block;
  margin-top: 10px;
}

.hero-slogan {
  margin-top: 32px;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(247,245,240,.65);
  max-width: 500px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(247,245,240,.3);
}
.hero-scroll svg { opacity: .3; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  background: var(--pet-dark);
  padding: calc(var(--nav-h) + 72px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(14,74,83,.5) 0%, transparent 60%);
}
.page-hero-watermark {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: min(50vh, 400px);
  height: min(50vh, 400px);
  opacity: .03;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .kicker { margin-bottom: 16px; }
.page-hero .section-title {
  font-size: clamp(30px, 5vw, 56px);
  color: var(--ow);
}
.page-hero .section-sub { margin-top: 16px; }

/* ── SECTIONS ───────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.bg-white { background: var(--white); }
.bg-ow { background: var(--ow); }
.bg-pet { background: var(--pet); }
.bg-pet-dark { background: var(--pet-dark); }

.section-header { margin-bottom: 60px; }
.section-header .kicker { margin-bottom: 12px; }
.section-header .section-title { margin-bottom: 0; }
.section-header .section-sub { margin-top: 16px; }

/* ── SERVICE CARDS ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc-card {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cop);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { background: #fafaf8; }

.svc-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--cop);
}

.svc-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  color: rgba(196,124,90,.5);
  margin-bottom: 12px;
}

.svc-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--pet);
  letter-spacing: .04em;
  line-height: 1.3;
  margin-bottom: 14px;
}

.svc-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gr-mid);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cop);
  transition: gap var(--transition);
}
.svc-link:hover { gap: 12px; }

/* ── STATS ──────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--cop);
  letter-spacing: .04em;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247,245,240,.45);
  margin-top: 12px;
  line-height: 1.5;
}

/* ── PROCESS ────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: rgba(196,124,90,.25);
  z-index: 0;
}

.process-step {
  padding: 0 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(196,124,90,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--cop);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}
.process-step:hover .process-dot {
  background: var(--cop);
  color: var(--white);
  border-color: var(--cop);
  box-shadow: 0 4px 20px rgba(196,124,90,.3);
}

.process-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--pet);
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gr-mid);
}

/* ── WHY US ─────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.why-item {
  padding: 44px 48px;
  background: var(--ow);
  display: flex;
  gap: 24px;
}

.why-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cop);
}

.why-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--pet);
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.why-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gr-mid);
}

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner {
  background: var(--pet);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(14,74,83,.8) 0%, transparent 70%);
}
.cta-banner-wm {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  opacity: .03;
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner .section-title { font-size: clamp(24px, 4vw, 42px); }
.cta-banner .section-sub { margin: 16px auto 36px; text-align: center; }
.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SERVICE DETAIL (servicos.html) ─────────── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.svc-detail.reverse { direction: rtl; }
.svc-detail.reverse > * { direction: ltr; }

.svc-detail-visual {
  background: var(--pet);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-detail-visual-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(14,74,83,.7) 0%, transparent 70%);
}
.svc-detail-visual svg {
  width: 40%;
  height: 40%;
  opacity: .15;
  position: relative;
}

.svc-detail-content {}
.svc-detail-content .kicker { margin-bottom: 12px; }
.svc-detail-content .section-title { font-size: clamp(22px, 3vw, 34px); margin-bottom: 16px; }

.svc-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gr);
  line-height: 1.6;
}
.svc-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cop);
  margin-top: 7px;
}

/* ── SOBRE (about) ──────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  background: var(--pet);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--ow);
  padding: 40px;
}
.about-visual-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.about-visual-role {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cop);
}
.about-visual-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 30%, rgba(14,74,83,.6) 0%, transparent 60%);
}
.about-visual svg {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  opacity: .05;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
.value-item {
  padding: 24px 28px;
  background: var(--ow);
  border-left: 2px solid var(--cop);
}
.value-title {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--pet);
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.value-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--gr-mid);
  line-height: 1.6;
}

.cert-strip {
  display: flex;
  gap: 0;
  background: var(--pet);
  border-radius: var(--radius);
  overflow: hidden;
}
.cert-item {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.cert-item:last-child { border-right: none; }
.cert-code {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--cop);
  letter-spacing: .06em;
}
.cert-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247,245,240,.4);
  margin-top: 4px;
}

/* ── CONTACT ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gr-mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 300;
  color: var(--gr);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--cop); }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row .form-group { margin-bottom: 0; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196,124,90,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cop);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gr-mid);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--gr);
}
.contact-value a { color: var(--pet); transition: color var(--transition); }
.contact-value a:hover { color: var(--cop); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--gr);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo svg { width: 32px; height: 32px; }
.footer-logo .nav-v { font-size: 14px; }

.footer-about {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,245,240,.45);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cop);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--ow); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.footer-contact-item span:first-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(196,124,90,.7);
}
.footer-contact-item span:last-child {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,.5);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(247,245,240,.25);
  letter-spacing: .05em;
}

/* ── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── DIVIDER ────────────────────────────────── */
.rule { height: 1px; background: rgba(0,0,0,.08); }
.rule-dark { height: 1px; background: rgba(255,255,255,.07); }

/* ── OBRIGADO ───────────────────────────────── */
.thanks-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pet-dark);
  text-align: center;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(2n) { }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail.reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cert-strip { flex-direction: column; }
  .cert-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
