/* ============================================================
   TEP Engenharia — Site
   Fonte Poppins (igual ao site original) · Marfim + Preto + Bordô
   Seção-destaque vermelha (#6B0000) com dourado (#d4af37)
   ============================================================ */

:root {
  /* Color tokens */
  --background: #FAFAF8;
  --foreground: #1A1A1A;
  --muted: #F5F3F0;
  --muted-foreground: #6B6B6B;
  --accent: #8E1F26;            /* Bordô institucional TEP */
  --accent-secondary: #A8262E;  /* Bordô hover */
  --accent-foreground: #FFFFFF;
  --accent-muted: rgba(142, 31, 38, 0.06);
  --border: #E8E4DF;
  --border-hover: #D8D2CB;
  --card: #FFFFFF;
  --ring: #8E1F26;

  /* Seção-destaque */
  --red-deep: #6B0000;          /* Vermelho do site original */
  --gold: #d4af37;              /* Dourado do site original */

  /* Typography — Poppins (igual ao site original) */
  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 8px 24px rgba(26, 26, 26, 0.08);
  --shadow-accent: 0 8px 24px rgba(142, 31, 38, 0.18);

  /* Layout */
  --container: 64rem;
  --container-wide: 72rem;
  --radius-md: 6px;
  --radius-lg: 8px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container-wide { max-width: var(--container-wide); }

.section { position: relative; z-index: 2; padding-block: 7rem; }
@media (max-width: 768px) { .section { padding-block: 4rem; } }
.section-muted { background-color: var(--muted); }

/* Section label: rule — LABEL — rule */
.section-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.section-label::before, .section-label::after { content: ""; height: 1px; flex: 1; background: var(--border); }
.section-label.left::before { display: none; }
.section-label span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
}

.small-caps { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
.h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); line-height: 1.08; letter-spacing: -0.025em; font-weight: 700; }
.h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.h3 { font-size: 1.2rem; line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; }
.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--muted-foreground); line-height: 1.65; font-weight: 400; }
.text-muted { color: var(--muted-foreground); }
.center { text-align: center; }
.section-head { max-width: 44rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }

.rule-under { width: 60px; height: 3px; background: var(--accent); margin-top: 1.5rem; border-radius: 2px; }
.center .rule-under, .section-head.center .rule-under { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 48px; padding: 0.8rem 1.7rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border: 1px solid transparent; transition: all 200ms ease-out; touch-action: manipulation;
}
.btn-primary { background: var(--accent); color: var(--accent-foreground); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-secondary); box-shadow: var(--shadow-accent); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; border-color: var(--foreground); color: var(--foreground); }
.btn-outline:hover { background: var(--muted); border-color: var(--accent); color: var(--accent); }
.btn-light { background: #fff; color: var(--accent); }
.btn-light:hover { background: #f3eeee; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring); border-radius: var(--radius-md); }

/* ---------- Header ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--accent); color: #fff; padding: 0.75rem 1rem; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; transition: all 250ms ease-out;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand img { height: 44px; width: auto; transition: filter 250ms ease-out; }
/* Logo claro sobre o hero escuro */
.header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; color: #fff; position: relative; padding-block: 0.25rem; transition: color 200ms; }
.header.scrolled .nav a { color: var(--foreground); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width 200ms ease-out; }
.nav a:hover::after { width: 100%; }
.nav a.btn::after { display: none; }
/* CTA dentro do nav é só para o menu mobile aberto */
.nav > .btn { display: none; }
.header.scrolled {
  background: color-mix(in srgb, var(--background) 92%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.header__cta { display: flex; align-items: center; gap: 1.25rem; }

.nav-toggle { display: none; background: none; border: none; padding: 0.5rem; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px auto; transition: all 200ms ease-out; }
.header.scrolled .nav-toggle span { background: var(--foreground); }

@media (max-width: 880px) {
  .nav, .header__cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--background); border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.75rem; box-shadow: var(--shadow-md);
  }
  .nav.open a { width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; color: var(--foreground); }
  .nav.open .btn { display: inline-flex; margin-top: 1rem; }
}

/* ---------- HERO com slideshow ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; background: #1a0a0a; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease-in-out; transform: scale(1.05);
}
.hero__slide.is-active { opacity: 1; animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.16); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(18,6,6,0.92) 0%, rgba(18,6,6,0.7) 45%, rgba(107,0,0,0.55) 100%),
    linear-gradient(to top, rgba(18,6,6,0.85) 0%, transparent 38%);
}
.hero__inner { position: relative; padding-block: 8rem 4rem; max-width: 56rem; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--gold); margin-bottom: 1.6rem; }
.hero .eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--gold); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: rgba(255,255,255,0.86); max-width: 50ch; margin: 1.6rem 0 2.4rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 480px) { .hero__cta .btn { width: 100%; } }

.hero__trust {
  margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; color: rgba(255,255,255,0.82);
}
.hero__trust div { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; letter-spacing: 0.02em; }
.hero__trust svg { color: var(--gold); flex-shrink: 0; }

/* Slideshow dots */
.hero__dots { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 0.6rem; }
.hero__dots button { width: 30px; height: 3px; border: none; border-radius: 2px; background: rgba(255,255,255,0.35); padding: 0; transition: background 200ms; }
.hero__dots button.is-active { background: var(--gold); }

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 1.75rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.1rem; box-shadow: var(--shadow-sm); transition: all 200ms ease-out; position: relative; }
.card--accent-top { border-top: 3px solid var(--accent); }
.card--hover:hover { box-shadow: var(--shadow-md); border-color: var(--border-hover); transform: translateY(-3px); }
.card__icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; background: var(--accent-muted); color: var(--accent); margin-bottom: 1.4rem; }
.card h3 { margin-bottom: 0.55rem; }
.card p { color: var(--muted-foreground); font-size: 0.98rem; }

/* ---------- Seção VERMELHA "O que faz a TEP ser referência" ---------- */
.referencia { position: relative; z-index: 2; background: var(--red-deep); color: #fff; padding-block: 7rem; overflow: hidden; }
@media (max-width: 768px) { .referencia { padding-block: 4.5rem; } }
.referencia::before { /* textura sutil */
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background: radial-gradient(circle at 80% -10%, rgba(212,175,55,0.12), transparent 45%),
              radial-gradient(circle at 0% 110%, rgba(0,0,0,0.4), transparent 40%);
}
.referencia__head { position: relative; max-width: 50rem; margin: 0 auto 3.5rem; text-align: center; }
.referencia__label { color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; display: inline-block; margin-bottom: 1rem; }
.referencia h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.referencia h2 .gold { color: var(--gold); }
.referencia__sub { color: rgba(255,255,255,0.78); margin-top: 1rem; font-size: 1.1rem; }

.referencia__body { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
@media (max-width: 900px) { .referencia__body { grid-template-columns: 1fr; gap: 2.5rem; } }

.ref-list { display: grid; gap: 1.6rem; }
.ref-item { padding-top: 1.4rem; border-top: 1px solid rgba(212,175,55,0.32); }
.ref-item h3 { color: var(--gold); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.ref-item p { color: rgba(255,255,255,0.82); font-size: 0.97rem; line-height: 1.6; }

/* Vídeo de apresentação */
.ref-video { position: relative; width: 100%; max-width: 340px; margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(212,175,55,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.45); background: #000; }
.ref-video video { width: 100%; display: block; aspect-ratio: 9 / 16; object-fit: cover; background: #000; }
.ref-video__cap { position: relative; color: rgba(255,255,255,0.7); font-size: 0.8rem; letter-spacing: 0.05em; margin-top: 0.9rem; text-align: center; }
@media (max-width: 900px) { .ref-video { order: -1; } }

/* ---------- "Sou Síndico" asymmetric ---------- */
.split { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 3.5rem; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.split ul { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.split li { display: flex; gap: 0.9rem; padding: 1rem 0; border-top: 1px solid var(--border); align-items: flex-start; }
.split li:last-child { border-bottom: 1px solid var(--border); }
.split li svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.split li strong { display: block; font-weight: 600; }
.split li span { color: var(--muted-foreground); font-size: 0.95rem; }

.abstract { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); background: linear-gradient(155deg, #2a2a2a, #1A1A1A 55%, var(--accent)); overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: flex-end; padding: 2rem; }
.abstract::before, .abstract::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; }
.abstract::before { width: 280px; height: 280px; top: -80px; right: -80px; }
.abstract::after { width: 180px; height: 180px; bottom: 40px; left: -60px; border-color: rgba(212,175,55,0.5); }
.abstract__quote { position: relative; color: #fff; }
.abstract__quote .mark { font-size: 4rem; line-height: 0.5; color: var(--gold); display: block; font-weight: 700; }
.abstract__quote p { font-size: 1.25rem; line-height: 1.45; margin-top: 1rem; font-weight: 500; }

/* ---------- Patologias gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin: 0; aspect-ratio: 1; background: var(--muted); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease-out; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; background: linear-gradient(transparent, rgba(26,26,26,0.85)); color: #fff; padding: 1.5rem 1rem 0.9rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 1.75rem; border-top: 2px solid var(--accent); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-size: 2.2rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 0.6rem; line-height: 1; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted-foreground); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info ul { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.contact-info li { display: flex; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--border); align-items: flex-start; }
.contact-info li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact-info .label { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); display: block; font-weight: 600; }
.contact-info .value { font-size: 1.05rem; }

.form { background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--accent); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.field input, .field textarea, .field select { width: 100%; min-height: 48px; padding: 0.7rem 0.9rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: transparent; font-family: var(--font-body); font-size: 1rem; color: var(--foreground); transition: all 150ms ease-out; }
.field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted-foreground) 60%, transparent); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--border-hover); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring); }
.form .btn { width: 100%; margin-top: 0.5rem; }
.form__note { font-size: 0.8rem; color: var(--muted-foreground); text-align: center; margin-top: 1rem; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-top: 3rem; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(0.25); }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--border); background: var(--muted); padding-block: 3.5rem 2.5rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 768px) { .footer__top { grid-template-columns: 1fr; gap: 2rem; } }
.footer img { height: 46px; margin-bottom: 1.25rem; }
.footer p { color: var(--muted-foreground); font-size: 0.95rem; max-width: 34ch; }
.footer h4 { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--foreground); margin-bottom: 1.1rem; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer ul a, .footer ul li { color: var(--muted-foreground); font-size: 0.95rem; }
.footer ul a:hover { color: var(--accent); }
.footer__bottom { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--muted-foreground); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------- Utilidades de texto por dispositivo ---------- */
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
}

/* ---------- Seção de NÚMEROS DE IMPACTO ---------- */
.stats { position: relative; z-index: 2; background: #151515; color: #fff; padding-block: 6.5rem; overflow: hidden; }
@media (max-width: 768px) { .stats { padding-block: 4.5rem; } }
.stats::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background: radial-gradient(circle at 50% -20%, rgba(212,175,55,0.14), transparent 55%),
              radial-gradient(circle at 100% 120%, rgba(142,31,38,0.35), transparent 45%);
}
.stats__hero { position: relative; text-align: center; max-width: 56rem; margin: 0 auto 3.5rem; }
.stats__big { font-weight: 700; line-height: 0.92; color: var(--gold); font-size: clamp(4.5rem, 20vw, 9.5rem); letter-spacing: -0.03em; }
.stats__big .of { display: block; font-size: 0.2em; letter-spacing: 0.28em; color: #fff; font-weight: 600; margin-top: 0.6rem; }
.stats__hero p { position: relative; font-size: clamp(1.2rem, 3.5vw, 1.9rem); font-weight: 500; margin-top: 1.4rem; line-height: 1.25; }
.stats__hero p .gold { color: var(--gold); }
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 56rem; margin: 0 auto; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 680px) { .stats__grid { grid-template-columns: 1fr; gap: 2.25rem; } }
.stat { text-align: center; }
.stat__num { font-size: clamp(2.6rem, 9vw, 3.4rem); font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.stat__num .u { color: var(--gold); }
.stat p { color: rgba(255,255,255,0.72); margin-top: 0.5rem; font-size: 0.92rem; line-height: 1.45; }

/* ---------- SERVIÇOS — lista dinâmica (substitui os quadrados) ---------- */
.serv-list { margin-top: 3rem; border-top: 1px solid var(--border); }
.serv-row {
  display: grid; grid-template-columns: 3rem 3rem 1fr 1.5rem; align-items: center; gap: 1.5rem;
  padding: 1.9rem 0.5rem; border-bottom: 1px solid var(--border);
  transition: background 250ms ease-out, padding 250ms ease-out;
}
.serv-row:hover { background: var(--muted); padding-inline: 1rem; }
.serv-row__n { font-size: 0.95rem; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; }
.serv-row__icon { color: var(--accent); display: flex; }
.serv-row__title { font-size: clamp(1.2rem, 2.4vw, 1.65rem); font-weight: 600; letter-spacing: -0.01em; }
.serv-row__desc { color: var(--muted-foreground); font-size: 0.98rem; margin-top: 0.25rem; max-width: 52ch; }
.serv-row__arrow { color: var(--accent); font-size: 1.4rem; opacity: 0; transform: translateX(-6px); transition: all 250ms ease-out; }
.serv-row:hover .serv-row__arrow { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .serv-row { grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.4rem 0; }
  .serv-row__n, .serv-row__desc, .serv-row__arrow { display: none; }
  .serv-row__title { font-size: 1.25rem; }
}

/* ---------- WhatsApp float ---------- */

/* ---------- Carrossel da seção Síndico ---------- */
.sindico-carousel {
  position: relative; width: 100%; max-width: 400px; margin-inline: auto;
  aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--muted); border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.sindico-carousel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.7s ease-in-out;
}
.sindico-carousel img.is-active { opacity: 1; }
.sindico-carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(255,255,255,0.9); color: var(--accent); font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: all 200ms ease-out;
}
.sindico-carousel__arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.sindico-carousel__arrow.prev { left: 0.6rem; }
.sindico-carousel__arrow.next { right: 0.6rem; }
.sindico-carousel__dots { position: absolute; bottom: 0.9rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 0.45rem; }
.sindico-carousel__dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); padding: 0; transition: background 200ms; }
.sindico-carousel__dots button.is-active { background: var(--accent); width: 22px; border-radius: 4px; }

/* ---------- Passos (contato) ---------- */
.steps-vert { display: grid; gap: 2.5rem; align-content: center; }
.step-v__tag { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--accent); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.step-v__tag::before { content: ""; width: 34px; height: 2px; background: var(--accent); }
.step-v__row { display: flex; gap: 1.1rem; margin-top: 0.85rem; align-items: flex-start; }
.step-v__icon { width: 54px; height: 54px; border-radius: 12px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.step-v__row h3 { margin-bottom: 0.35rem; }
.step-v__row p { color: var(--muted-foreground); font-size: 0.98rem; }

/* ---------- Localização ---------- */
.loc-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }
@media (max-width: 880px) { .loc-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.loc-grid .map-wrap iframe { height: 420px; }

/* ---------- Sucesso do formulário ---------- */
.form-success { text-align: center; padding: 2rem 0.5rem; }
.form-success svg { color: #2e7d32; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-foreground); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform 200ms ease-out; }
.wa-float:hover { transform: scale(1.06); }
