/* =========================================================
   TRIUNFO TOPOGRAFIA — STYLESHEET
   Paleta: verde-floresta + dourado champanhe (alto padrão)
   Mobile-first. CSS variables. Sem frameworks.
   ========================================================= */

/* -------- Variáveis -------- */
:root {
  /* Cores */
  --primary:        #1F3A2E;   /* verde-floresta profundo */
  --primary-light:  #2E5C45;   /* verde médio */
  --primary-dark:   #142820;
  --gold:           #C9A961;   /* dourado champanhe — CTA */
  --gold-dark:      #B0904A;
  --gold-light:     #DCC58A;
  --wa-green:       #25D366;
  --wa-green-dark:  #128C7E;
  --bg:             #FFFFFF;
  --bg-soft:        #F8F6F2;   /* off-white quente */
  --bg-cream:       #F2EEE5;
  --border:         #E5E0D6;
  --text:           #1A1A1A;
  --text-soft:      #5A5A5A;
  --text-muted:     #8A8580;
  --shadow-sm:      0 2px 8px rgba(31, 58, 46, 0.06);
  --shadow-md:      0 8px 24px rgba(31, 58, 46, 0.10);
  --shadow-lg:      0 16px 48px rgba(31, 58, 46, 0.14);

  /* Tipografia */
  --font-serif:     'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espaçamento */
  --section-pad-y:  4rem;
  --container-max:  1200px;
  --radius:         8px;
  --radius-lg:      14px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  :root {
    --section-pad-y: 5.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-pad-y: 7rem;
  }
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover, a:focus { color: var(--gold-dark); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2rem, 4.5vw + 0.5rem, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

::selection { background: var(--gold); color: var(--primary); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* -------- Container -------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* -------- Eyebrow / pequeno destaque -------- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.5rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--sm  { padding: 0.6rem 1.15rem; font-size: 0.875rem; }
.btn--lg  { padding: 1.05rem 2.25rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201, 169, 97, 0.35);
}
.btn--primary:hover, .btn--primary:focus {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover, .btn--outline:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline-light:hover, .btn--outline-light:focus {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn--whatsapp {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn--whatsapp:hover, .btn--whatsapp:focus {
  background: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--gold-dark); }

/* -------- Site header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  min-height: 72px;
}
@media (min-width: 768px) {
  .site-header__inner { padding: 1rem 2rem; }
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary);
}
.site-header__logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: var(--transition);
}
@media (min-width: 768px) {
  .site-header__logo-img { height: 52px; }
}
.site-footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
  /* Logo é preto + dourado; no footer escuro, invertemos o preto para branco
     mantendo o dourado por meio de hue-rotate + brightness ajustados. */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text__mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo-text__sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 4px;
}
.logo-text--footer .logo-text__mark { color: #fff; font-size: 1.75rem; }
.logo-text--footer .logo-text__sub  { color: var(--gold); }

/* -------- Hamburger -------- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* -------- Nav -------- */
.primary-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--primary);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  z-index: 105;
}
.primary-nav.is-open { transform: translateX(0); }
.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.primary-nav__list a {
  display: block;
  padding: 0.85rem 0.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.primary-nav__list a:hover,
.primary-nav__list a:focus { color: var(--gold); }

.primary-nav .submenu {
  list-style: none;
  padding-left: 1rem;
  margin: 0.25rem 0 0.75rem;
}
.primary-nav .submenu a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.55rem 0.5rem;
  border: 0;
}
.primary-nav__cta { margin-top: 1rem; }
.primary-nav__cta a {
  background: var(--gold);
  color: var(--primary) !important;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  border: 0;
}

@media (min-width: 1024px) {
  .primary-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
    transform: none;
    box-shadow: none;
    overflow: visible;
  }
  .primary-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }
  .primary-nav__list > li > a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border: 0;
    position: relative;
  }
  .primary-nav__list > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .primary-nav__list > li > a:hover::after { width: 100%; }
  .primary-nav__list > li.has-submenu { position: relative; }
  .primary-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: 0.75rem;
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    border: 1px solid var(--border);
  }
  .primary-nav__list > li.has-submenu:hover .submenu,
  .primary-nav__list > li.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .primary-nav .submenu a {
    color: var(--text);
    padding: 0.55rem 0.85rem;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  .primary-nav .submenu a:hover { background: var(--bg-soft); color: var(--primary); }
  .primary-nav__cta a {
    background: var(--gold);
    color: var(--primary) !important;
    padding: 0.6rem 1.15rem !important;
    border-radius: var(--radius) !important;
  }
  .primary-nav__cta a::after { display: none; }

  /* WhatsApp clicável no header (desktop) */
  .primary-nav__wa a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wa-green-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.5rem !important;
    border: 0 !important;
  }
  .primary-nav__wa a:hover { color: var(--wa-green) !important; }
  .primary-nav__wa a::after { display: none; }
}
@media (max-width: 1023.98px) {
  .primary-nav__wa a {
    color: var(--wa-green) !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
}

/* Backdrop quando menu mobile aberto */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 104;
}
.nav-backdrop.is-active { opacity: 1; visibility: visible; }

body.is-nav-open { overflow: hidden; }

/* -------- Hero base -------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(46, 92, 69, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  /* Padrão sutil de grid topográfico */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero { padding: 6rem 0 7rem; }
  .hero__inner { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
}
.hero__eyebrow {
  color: var(--gold);
}
.hero__eyebrow::before { background: var(--gold); }
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero__lead { font-size: 1.2rem; }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__trust-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__trust-item strong { color: var(--gold); font-weight: 600; font-size: 1.5rem; font-family: var(--font-serif); line-height: 1; }

.hero__visual {
  display: none;
}
@media (min-width: 1024px) {
  .hero__visual {
    display: block;
    position: relative;
  }
  .hero__visual-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero__visual-card h3 {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .hero__visual-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .hero__visual-list li {
    color: #fff;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
  }
  .hero__visual-list li:last-child { border-bottom: 0; }
  .hero__visual-list .check {
    width: 22px; height: 22px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
  }
}

/* Hero variantes */
.hero--servico { padding: 3rem 0 4rem; }
@media (min-width: 1024px) { .hero--servico { padding: 5rem 0 6rem; } }
.hero--cidade  { padding: 3rem 0 4rem; }
@media (min-width: 1024px) { .hero--cidade { padding: 5rem 0 6rem; } }
.hero--page    { padding: 3rem 0 3.5rem; }
@media (min-width: 1024px) { .hero--page { padding: 4.5rem 0 5rem; } }

/* -------- Breadcrumbs -------- */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-soft);
}
.breadcrumbs li + li::before {
  content: '/';
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs [aria-current="page"] { color: var(--primary); font-weight: 500; }

/* -------- Sections -------- */
.section {
  padding: var(--section-pad-y) 0;
}
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--primary); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }
.section--cream { background: var(--bg-cream); }
.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section__header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.section__lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* -------- Grids -------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* -------- Service card -------- */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* -------- Feature list -------- */
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.feature-list .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.feature-list strong { display: block; color: var(--primary); margin-bottom: 0.15rem; }
.feature-list p { margin: 0; color: var(--text-soft); font-size: 0.95rem; }

/* -------- Steps (numerados) -------- */
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step:hover { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.step__number {
  position: absolute;
  top: -16px;
  left: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; margin-top: 0.5rem; }
.step p { color: var(--text-soft); font-size: 0.95rem; margin: 0; }

/* -------- FAQ accordion -------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.faq__question:hover { color: var(--gold-dark); }
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 1px;
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after  { width: 2px; height: 12px; transition: var(--transition); }
.faq__question[aria-expanded="true"] .faq__icon { background: var(--gold); }
.faq__question[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-soft);
}
.faq__answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq__answer-inner p { margin-bottom: 0.75rem; }
.faq__answer-inner p:last-child { margin-bottom: 0; }
.faq__item.is-open .faq__answer { max-height: 1200px; }

/* -------- Form section -------- */
.form-section {
  padding: var(--section-pad-y) 0;
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.form-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .form-section__inner { grid-template-columns: 1.5fr 1fr; gap: 4rem; }
}
.form-section__header {
  text-align: center;
}
.form-section__header .eyebrow { color: var(--gold); }
.form-section__header .eyebrow::before { background: var(--gold); }
@media (min-width: 768px) {
  .form-section__header { text-align: left; max-width: 720px; margin: 0 auto 2.5rem; }
}
@media (min-width: 1024px) {
  .form-section__header { grid-column: 1 / -1; }
}
.form-section__title { color: #fff; margin-bottom: 0.75rem; }
.form-section__subtitle { color: rgba(255, 255, 255, 0.8); font-size: 1.05rem; margin: 0; }

.form-orcamento {
  background: #fff;
  color: var(--text);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) {
  .form-orcamento { padding: 2.5rem; }
}
.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.45rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231F3A2E' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
.form-field--consent { margin-top: 0.5rem; }
.checkbox {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--primary); flex-shrink: 0; }
.checkbox a { color: var(--primary); font-weight: 600; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-orcamento__submit {
  width: 100%;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
.form-orcamento__lgpd {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}
.form-orcamento__lgpd a {
  color: var(--primary);
  text-decoration: underline;
}
.form-orcamento__lgpd a:hover { color: var(--gold-dark); }
.btn__loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid var(--primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.form-orcamento.is-sending .btn__label { opacity: 0.5; }
.form-orcamento.is-sending .btn__loader { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-feedback {
  margin-top: 1.25rem;
  padding: 0;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.95rem;
  min-height: 1px;
}
.form-feedback.is-success {
  padding: 1rem;
  background: rgba(37, 211, 102, 0.10);
  border: 1px solid var(--wa-green);
  color: #064e2c;
}
.form-feedback.is-error {
  padding: 1rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid #dc2626;
  color: #991b1b;
}

.form-section__aside h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}
.form-aside-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.form-aside-list li {
  color: rgba(255, 255, 255, 0.88);
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.form-aside-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.form-aside-list strong { color: #fff; }

/* -------- Footer -------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 0;
  font-size: 0.92rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 3rem; }
}
.site-footer__col--brand .logo-text { margin-bottom: 1.25rem; }
.site-footer__tagline {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.site-footer__contacts {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.site-footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.site-footer__contacts a:hover { color: var(--gold); }

.site-footer__title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.site-footer__title--mt { margin-top: 1.75rem; }
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.site-footer__links--cols {
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}
.site-footer__links--small li { font-size: 0.85rem; }
.site-footer__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.site-footer__links a:hover { color: var(--gold); }
.site-footer__link-all { color: var(--gold) !important; font-weight: 600; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__bottom-inner p { margin: 0; }
@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* -------- WhatsApp Floating -------- */
.wa-float {
  position: fixed;
  bottom: 80px;
  right: 1rem;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 95;
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
  background: var(--wa-green-dark);
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: pulseWA 2.2s ease-out infinite;
}
@keyframes pulseWA {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (min-width: 1024px) {
  .wa-float {
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
  }
}

/* -------- Mobile CTA bar -------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.10);
  z-index: 90;
  border-top: 1px solid var(--border);
}
.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-cta-bar__btn--primary { background: var(--gold); color: var(--primary); }
.mobile-cta-bar__btn--wa      { background: var(--wa-green); color: #fff; }
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }

body { padding-bottom: 56px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* -------- Stat band -------- */
.stat-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 3rem 0;
}
.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stat-band__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat__number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat__label {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}

/* -------- Generic content blocks -------- */
.content-block {
  max-width: 820px;
  margin: 0 auto;
}
.content-block p, .content-block ul, .content-block ol { font-size: 1.02rem; color: var(--text-soft); line-height: 1.75; }
.content-block h3 { margin-top: 2rem; }
.content-block ul li::marker { color: var(--gold); }

.two-col {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
}
.two-col__main h2 { margin-top: 0; }
.aside-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.aside-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.aside-card p  { font-size: 0.95rem; color: var(--text-soft); margin-bottom: 1.25rem; }
.aside-card .btn { width: 100%; margin-bottom: 0.5rem; }

/* -------- City cards -------- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px)  { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.city-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  font-size: 0.92rem;
  min-height: 68px;
}
.city-card:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* -------- CTA strip -------- */
.cta-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  padding: 3rem 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2vw + 0.75rem, 2.2rem);
}
.cta-strip p {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.cta-strip .btn--primary {
  background: var(--primary);
  color: var(--gold);
  border-color: var(--primary);
}
.cta-strip .btn--primary:hover {
  background: var(--primary-dark);
  color: var(--gold-light);
  border-color: var(--primary-dark);
}

/* -------- Trust list -------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .trust-row { grid-template-columns: repeat(4, 1fr); } }
.trust-row__item {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.875rem;
}
.trust-row__item strong { display: block; color: var(--primary); font-family: var(--font-serif); font-size: 1.5rem; }

/* -------- Equipment / Norms blocks -------- */
.eq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .eq-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .eq-grid { grid-template-columns: repeat(3, 1fr); } }
.eq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.eq-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.eq-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.eq-card p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }
.eq-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 169, 97, 0.10);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* -------- Page hero (institucional) -------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.10), transparent 50%);
}
.page-hero__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 { color: #fff; }
.page-hero__lead { color: rgba(255, 255, 255, 0.86); font-size: 1.1rem; margin: 0; }

/* -------- Misc utilities -------- */
.text-center { text-align: center; }
.mb-0  { margin-bottom: 0 !important; }
.mt-0  { margin-top: 0 !important; }
.mt-2  { margin-top: 1.5rem; }
.mt-3  { margin-top: 2.5rem; }
.pt-0  { padding-top: 0 !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* -------- 404 -------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.error-page__inner { max-width: 520px; }
.error-page__code { font-family: var(--font-serif); font-size: 6rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.error-page h1 { font-size: 1.75rem; margin-bottom: 1rem; }
.error-page p { color: var(--text-soft); margin-bottom: 2rem; }

/* -------- Focus visible -------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------- Print stylesheet -------- */
@media print {
  /* Esconde elementos navegacionais e CTAs flutuantes */
  .site-header,
  .site-footer,
  .wa-float,
  .mobile-cta-bar,
  .hero__actions,
  .cta-strip,
  .form-section,
  .breadcrumbs,
  .hamburger,
  .primary-nav,
  .aside-card,
  nav { display: none !important; }

  /* Tipografia e cores para impressão */
  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
    background: #fff !important;
    padding-bottom: 0;
  }
  h1, h2, h3, h4, h5 { color: #000; page-break-after: avoid; }
  h1 { font-size: 22pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 13pt; }
  a { color: #000; text-decoration: underline; }
  /* Mostra URL após links externos para referência impressa */
  a[href^="http"]:after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  a[href^="#"]:after, a[href^="/"]:after { content: ""; }

  /* Reset de seções com fundo escuro/colorido */
  .hero, .section--dark, .cta-strip {
    background: #fff !important;
    color: #000 !important;
    padding: 1rem 0 !important;
  }
  .hero::before, .hero::after { display: none; }

  /* Estatísticas e cards saem em fluxo único */
  .stat-band, .grid, .service-card, .eq-card, .step, .city-grid {
    display: block !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
    padding: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    color: #000 !important;
  }
  .stat__number, .hero__trust-item strong { color: #000 !important; }

  /* FAQ abre tudo */
  .faq__answer { max-height: none !important; display: block !important; }
  .faq__icon { display: none; }

  /* Logo fica preto */
  .site-header__logo-img, .site-footer__logo-img { filter: none !important; }

  /* Evita quebra ruim */
  p, li { orphans: 3; widows: 3; }
}
