/* ===== RESET + BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1F2937;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== TOKENS DESIGN SYSTEM ===== */
:root {
  --navy: #003366;
  --navy-dark: #002244;
  --navy-light: #1A4D8F;
  --yellow: #FCBB00;
  --yellow-dark: #E0A800;
  --gray-50: #FAFBFC;
  --gray-100: #F5F7FA;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #1F2937;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --container: 1180px;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.site-header__nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-header__nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: color .2s;
}
.site-header__nav a:hover { color: var(--navy); }
.site-header__cta {
  background: var(--yellow);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: transform .15s, box-shadow .2s;
}
.site-header__cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.site-header__menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  /* padrão de blueprint sutil no background */
  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: 50px 50px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252, 187, 0, 0.15);
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(252, 187, 0, 0.3);
}
.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__title strong {
  color: var(--yellow);
  font-weight: 800;
}
.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(252, 187, 0, 0.35);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 187, 0, 0.45);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn--whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 2px solid rgba(37, 211, 102, 0.4);
}
.btn--whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25D366;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__trust-item__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.hero__trust-item__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

/* Hero · lado direito · imagem em destaque */
.hero__visual {
  position: relative;
  z-index: 2;
}
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  aspect-ratio: 4 / 5;
}
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--yellow), transparent 60%);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
  filter: blur(24px);
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.hero__image-badge-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  color: var(--navy-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero__image-badge-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 3px;
}
.hero__image-badge-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.2;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 88px 0;
  position: relative;
}
.section--gray { background: var(--gray-50); }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(0, 51, 102, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.section__title strong {
  color: var(--navy);
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== SECTION · SOBRE ===== */
.sobre__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.sobre__stat {
  text-align: center;
  padding: 0 12px;
}
.sobre__stat-value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.sobre__stat-value span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
}
.sobre__stat-label {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.4;
}
.pilares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pilares--wide {
  grid-template-columns: repeat(4, 1fr);
}
.pilar {
  display: flex;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pilar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}
.pilar__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(252, 187, 0, 0.15);
  color: var(--yellow-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.pilar__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pilar__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== SECTION · SERVIÇOS ===== */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.servico-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s, box-shadow .25s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.servico-card:hover::before {
  transform: scaleX(1);
}
.servico-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.servico-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.servico-card__list {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.servico-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.servico-card__list li::before {
  content: '✓';
  color: var(--yellow-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== SECTION · CASES ===== */
.cases__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.case-logo {
  flex: 0 1 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  min-height: 130px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: background .2s ease, box-shadow .2s ease;
}
.case-logo img {
  max-width: 160px;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter .25s ease, transform .25s ease;
}
.case-logo:hover {
  background: var(--gray-50);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.case-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ===== SECTION · DEPOIMENTOS ===== */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.depoimento {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .2s, box-shadow .25s;
}
.depoimento:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.depoimento__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--yellow);
  font-family: 'Georgia', serif;
  font-weight: 700;
  height: 28px;
}
.depoimento__text {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.65;
  font-style: italic;
  flex-grow: 1;
}
.depoimento__stars {
  color: var(--yellow);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.depoimento__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.depoimento__name {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}
.depoimento__role {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ===== SECTION · GALERIA DE OBRAS ===== */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.galeria__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
}
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.galeria__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0, 34, 68, 0.92) 0%, rgba(0, 34, 68, 0) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transform: translateY(4px);
  opacity: 0.95;
  transition: transform .3s ease, opacity .3s ease;
}
.galeria__item:hover img {
  transform: scale(1.08);
}
.galeria__item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.galeria__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color .25s ease;
  pointer-events: none;
}
.galeria__item:hover::after {
  border-color: var(--yellow);
}

/* ===== SECTION · GARANTIA (banner azul) ===== */
.garantia {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.garantia::before {
  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: 50px 50px;
  pointer-events: none;
}
.garantia__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.garantia__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.garantia__item-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: rgba(252, 187, 0, 0.18);
  color: var(--yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1.5px solid rgba(252, 187, 0, 0.35);
}
.garantia__item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.garantia__item-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.garantia__item-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ===== SECTION · FAQ ===== */
.faq__inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  list-style: none;
  transition: background .15s;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover { background: var(--gray-50); }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .2s, background .2s, color .2s;
}
.faq-item[open] .faq-item__icon {
  background: var(--yellow);
  color: var(--navy-dark);
  transform: rotate(45deg);
}
.faq-item__answer {
  padding: 0 24px 22px;
  color: var(--gray-600);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ===== SECTION · CONTATO ===== */
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.contato__info-title {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.contato__info-title strong { color: var(--navy); }
.contato__info-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
}
.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.contato__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color .2s, transform .15s;
  text-decoration: none;
  color: inherit;
}
.contato__channel:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.contato__channel-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contato__channel-content { flex-grow: 1; }
.contato__channel-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
}
.contato__channel-value {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.contato__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}
.contato__address-icon {
  flex-shrink: 0;
  color: var(--navy);
  font-size: 1.3rem;
  margin-top: 2px;
}
.contato__address-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contato__address-text strong {
  color: var(--gray-800);
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}
.contato__hours {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contato__hours::before {
  content: '🕐';
  font-size: 1rem;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--yellow), transparent 70%);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
  filter: blur(18px);
}
.form-card__title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.form-card__subtitle {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 26px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--gray-800);
  transition: border-color .15s, box-shadow .15s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(252, 187, 0, 0.18);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
  line-height: 1.5;
}
.form-card__submit {
  width: 100%;
  background: var(--yellow);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  box-shadow: 0 6px 18px rgba(252, 187, 0, 0.3);
}
.form-card__submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(252, 187, 0, 0.4);
}
.form-card__privacy {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.45;
  text-align: center;
}
.form-card__privacy a {
  color: var(--navy);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #001633 100%);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  position: relative;
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__brand-logo {
  height: 72px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  box-sizing: content-box;
}
.site-footer__brand-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
  margin-bottom: 22px;
}
.site-footer__social {
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--white);
  transition: background .15s, transform .15s;
}
.site-footer__social a:hover {
  background: var(--yellow);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.site-footer__col-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.site-footer__col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color .15s;
}
.site-footer__col a:hover { color: var(--yellow); }
.site-footer__contact { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.site-footer__contact a { color: rgba(255,255,255,0.65); transition: color .15s; }
.site-footer__contact a:hover { color: var(--yellow); }
.site-footer__contact strong { color: var(--white); display: block; margin-bottom: 4px; }
.site-footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.site-footer__bottom a {
  color: rgba(255,255,255,0.6);
  transition: color .15s;
}
.site-footer__bottom a:hover { color: var(--yellow); }
.site-footer__bottom-links {
  display: flex;
  gap: 20px;
}

/* ===== POLÍTICA DE PRIVACIDADE ===== */
.policy {
  padding: 64px 0 80px;
  background: var(--white);
}
.policy__container {
  max-width: 820px;
  margin: 0 auto;
}
.policy__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.policy__meta {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.policy h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 14px;
}
.policy p {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
}
.policy ul {
  margin: 12px 0 20px;
  padding-left: 22px;
  list-style: disc;
}
.policy ul li {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 6px;
}
.policy ul li::marker { color: var(--yellow-dark); }

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.2);
}
.whatsapp-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsappPulse 2s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0; }
}
@media (max-width: 560px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; font-size: 1.5rem; }
}
/* ===== CTA INTERMEDIÁRIO (banda) ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark, #002244) 0%, var(--navy, #003366) 100%);
  padding: 44px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-band__text strong {
  color: var(--white, #fff);
  font-size: 1.32rem;
  line-height: 1.25;
}
.cta-band__text span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}
.cta-band__btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band__btn { width: 100%; text-align: center; }
}

/* ===== COOKIE CONSENT (LGPD) ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy-dark, #002244);
  color: rgba(255,255,255,0.92);
  padding: 18px 20px;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 760px;
}
.cookie-banner__text a {
  color: var(--yellow, #FCBB00);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--white);
  transition: background .15s, color .15s;
}
.cookie-banner__btn:hover { background: rgba(255,255,255,0.12); }
.cookie-banner__btn--accept {
  background: var(--yellow, #FCBB00);
  color: var(--navy-dark, #002244);
  border-color: var(--yellow, #FCBB00);
}
.cookie-banner__btn--accept:hover { filter: brightness(0.95); background: var(--yellow, #FCBB00); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 16px; }
  .cookie-banner__actions { justify-content: center; }
  .whatsapp-float { bottom: 150px; }
}

@media print {
  .whatsapp-float, .site-header__cta, .site-header, .cookie-banner { display: none !important; }
  .hero { padding: 32px 0; }
  .section { padding: 32px 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .site-header__nav a:not(.site-header__cta) { display: none; }
  .hero { padding: 56px 0 72px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual { order: -1; }
  .hero__card { padding: 24px; }
  .hero__trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 1100px) {
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .case-logo { flex-basis: 200px; min-height: 100px; padding: 22px 16px; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 460px) {
  .galeria__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) and (min-width: 721px) {
  .depoimentos__grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .garantia__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .contato__inner { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__main { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-footer__main { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
  .garantia__grid { grid-template-columns: 1fr; gap: 18px; }
  .faq-item__question { font-size: 0.96rem; padding: 18px 20px; }
  .form-card { padding: 28px 22px; }
}
@media (max-width: 960px) {
  .sobre__stats { grid-template-columns: repeat(2, 1fr); }
  .pilares--wide { grid-template-columns: repeat(2, 1fr); }
  .pilares { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sobre__stats { grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }
  .pilares--wide { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .servicos__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; padding: 14px 22px; }
  .hero__card-services { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .sobre__photo { width: 220px; height: 220px; }
}

/* ==========================================================
   ÍCONES OFICIAIS · vetores enviados pela Marcella (v0.7)
   Substituem os emojis anteriores nos pilares, serviços,
   garantia e contato. Fundos ajustados pra amarelo claro
   pra não competir com o navy interno dos ícones.
   ========================================================== */
.pilar__icon img,
.servico-card__icon img,
.garantia__item-icon img,
.contato__channel-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
}
.contato__address-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.contato__address-icon {
  font-size: 0 !important;
}
/* Trocar fundos navy escuros por amarelo claro (senão o navy dos ícones some) */
.servico-card__icon,
.contato__channel-icon {
  background: rgba(252, 187, 0, 0.15) !important;
}
