/* =========================================================
   Limpa Aí João Pessoa — style.css
   Design: paleta "maresia limpa" (teal profundo + verde fresco)
   com motivo de "etiqueta de cuidado" (tag de tecido) como
   assinatura visual, remetendo às etiquetas de estofados.
   ========================================================= */

:root {
  /* Cor — extraída da logo real (verde + azul) e ajustada para
     contraste acessível em texto/botões (ver README) ---------- */
  --teal-900: #192C3E;   /* marca principal / header / footer */
  --teal-700: #375876;   /* secundária, links, gradientes */
  --teal-600: #46698A;
  --green-500: #237C1D;  /* ação / whatsapp / destaques (verde da marca, escurecido para AA) */
  --green-600: #1D671A;
  --green-brand: #48B741; /* verde exato da logo — só para uso decorativo, não em texto */
  --foam-50: #F7F9FA;    /* fundo geral (branco levemente azulado) */
  --sand-100: #E9EDF2;   /* fundo alternado de seção */
  --line-200: #D1DAE3;   /* bordas / divisores */
  --ink-900: #19242E;    /* texto principal */
  --ink-600: #425567;    /* texto secundário */
  --white: #FFFFFF;

  /* Tipografia -------------------------------------------- */
  --font-display: 'Sora', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* Espaçamento / forma ------------------------------------ */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --section-pad: clamp(3.5rem, 6vw, 6.5rem);

  /* Sombra / transição -------------------------------------- */
  --shadow-sm: 0 2px 10px rgba(11, 79, 74, 0.08);
  --shadow-md: 0 14px 34px rgba(11, 79, 74, 0.14);
  --ease: cubic-bezier(.25, .8, .35, 1);
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--foam-50);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal-900);
  line-height: 1.15;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-600); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { padding-block: var(--section-pad); }

/* Foco visível para navegação por teclado */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--teal-900);
  color: var(--white);
  padding: .8em 1.2em;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ---------- Etiqueta / tag (assinatura visual) ---------- */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--white);
  border: 1.5px dashed var(--teal-700);
  border-radius: 999px;
  padding: .5em 1.1em .5em .8em;
  margin-bottom: 1.1em;
}
.eyebrow-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-brand);
  box-shadow: 0 0 0 3px rgba(72, 183, 65, .18);
  flex: none;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: 999px;
  padding: .55em 1em .55em .6em;
  position: relative;
}
.tag-chip .hole {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand-100);
  border: 1px solid var(--line-200);
  flex: none;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  border-radius: 999px;
  padding: .95em 1.6em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { flex: none; width: 20px; height: 20px; }

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--teal-900);
  border-color: var(--teal-900);
}
.btn-outline:hover { background: var(--teal-900); color: var(--white); transform: translateY(-2px); }

.btn-light {
  background: var(--white);
  color: var(--teal-900);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--foam-50);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-200);
  box-shadow: 0 6px 20px rgba(11, 79, 74, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .8rem;
}
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.main-nav a:not(.btn) {
  font-weight: 600;
  font-size: .96rem;
  color: var(--teal-900);
  position: relative;
  padding-block: .3em;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--green-500);
  transition: width .22s var(--ease);
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.main-nav .btn { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: .4rem;
  cursor: pointer;
  color: var(--teal-900);
}
.nav-toggle svg { width: 26px; height: 26px; }

.header-cta { display: none; }

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line-200);
  color: var(--teal-900);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.social-icon-btn svg { width: 19px; height: 19px; }
.social-icon-btn:hover {
  background: var(--teal-900);
  color: var(--white);
  border-color: var(--teal-900);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--foam-50);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    border-top: 1px solid var(--line-200);
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a:not(.btn) {
    width: 100%;
    padding-block: .95em;
    border-bottom: 1px solid var(--line-200);
  }
  .main-nav .btn { display: inline-flex; margin-top: 1.2em; width: 100%; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 901px) {
  .header-cta { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy p.lede {
  font-size: 1.14rem;
  color: var(--ink-900);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-block: 1.6rem 1.2rem;
}
.trust-line {
  display: flex;
  align-items: center;
  gap: .6em;
  font-size: .92rem;
  font-weight: 600;
  color: var(--teal-700);
}
.trust-line svg { width: 20px; height: 20px; flex: none; }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-200);
  box-shadow: var(--shadow-md);
  background: var(--sand-100);
  position: relative;
}
.hero-media .frame::before {
  /* stitched-tag border accent, echoing a fabric care label */
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(245, 250, 248, .55);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
  z-index: 2;
}
.hero-media .frame img,
.hero-media .frame picture { display: block; }
.hero-media img { width: 100%; height: auto; object-fit: cover; }

.hero-media .float-tag {
  margin-top: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: .95rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 340px;
  border: 1px solid var(--line-200);
}
.hero-media .float-tag .dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand-100);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.hero-media .float-tag .dot svg { width: 20px; height: 20px; color: var(--green-600); }
.hero-media .float-tag strong { display: block; font-size: .86rem; color: var(--teal-900); font-family: var(--font-display); }
.hero-media .float-tag span { font-size: .78rem; color: var(--ink-600); }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ---------- Grade de Serviços (home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; }
.service-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand-100);
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { margin-bottom: .4em; }
.service-card__body p { font-size: .93rem; margin: 0 0 1.1em; flex: 1; }
.service-card__cta {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  color: var(--green-600);
}
.service-card__cta svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.service-card:hover .service-card__cta svg { transform: translateX(4px); }

@media (max-width: 940px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Benefícios ---------- */
.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-alt { background: var(--sand-100); }

.section-head-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background: url('../assets/images/sala-sofa-higienizado.jpg') center 46%/cover no-repeat;
  box-shadow: var(--shadow-md);
}
.section-head-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 44, 62, .25) 0%, rgba(25, 44, 62, .92) 100%);
}
.section-head-photo::after {
  /* borda tracejada no estilo "etiqueta", ecoando o frame do hero */
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(245, 250, 248, .35);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}
.section-head-photo__overlay {
  position: relative;
  z-index: 1;
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.8rem, 4vw, 3rem);
  max-width: 62ch;
}
.section-head-photo h2,
.section-head-photo p { color: var(--white); }
.section-head-photo p { color: rgba(245, 250, 248, .82); margin: 0; }

.eyebrow-tag--on-dark {
  background: rgba(245, 250, 248, .1);
  border-color: rgba(245, 250, 248, .45);
  color: var(--white);
}
.eyebrow-tag--on-dark::before { background: #6FDA68; box-shadow: 0 0 0 3px rgba(111, 218, 104, .22); }

.section-head-photo.section-head-photo--colchao {
  background-image: url('../assets/images/quarto-colchao-higienizado.jpg');
  background-position: center 38%;
}

.section-head-photo.section-head-photo--impermeabilizacao {
  background-image: url('../assets/images/impermeabilizacao-gotas-cinza.jpg');
  background-position: center 55%;
}

.section-head-photo.section-head-photo--tapetes {
  background-image: url('../assets/images/menina-tapete-limpo.jpg');
  background-position: center 40%;
}

.section-head-photo.section-head-photo--carpetes {
  background-image: url('../assets/images/carpete-extracao-sujeira.jpg');
  background-position: center 78%;
}

@media (max-width: 620px) {
  .section-head-photo { min-height: 260px; background-position: center 30%; }
  .section-head-photo { background-image: url('../assets/images/sala-sofa-higienizado-sm.jpg'); }
  .section-head-photo.section-head-photo--colchao { background-image: url('../assets/images/quarto-colchao-higienizado-sm.jpg'); }
  .section-head-photo.section-head-photo--impermeabilizacao { background-image: url('../assets/images/impermeabilizacao-gotas-cinza-sm.jpg'); }
  .section-head-photo.section-head-photo--tapetes { background-image: url('../assets/images/menina-tapete-limpo-sm.jpg'); }
  .section-head-photo.section-head-photo--carpetes { background-image: url('../assets/images/carpete-extracao-sujeira-sm.jpg'); }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0; left: 1.6rem;
  width: 34px; height: 6px;
  border-radius: 0 0 6px 6px;
  background: var(--green-brand);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sand-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--teal-700);
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { margin-bottom: .4em; }
.benefit-card p { margin: 0; font-size: .95rem; }

@media (max-width: 940px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ---------- Como funciona ---------- */
.steps-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}
.step-tag {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem 1.3rem;
  position: relative;
}
.step-tag::after {
  /* grommet hole, like a hang-tag */
  content: "";
  position: absolute;
  top: 14px; right: 14px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sand-100);
  border: 1px solid var(--line-200);
}
.step-number {
  counter-increment: step;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .82rem;
  color: var(--green-600);
  display: inline-block;
  margin-bottom: .8em;
}
.step-number::before {
  content: "0" counter(step);
}
.step-tag h3 { font-size: 1.02rem; margin-bottom: .3em; }
.step-tag p { font-size: .9rem; margin: 0; }

@media (max-width: 980px) { .steps-rail { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .steps-rail { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .steps-rail { grid-template-columns: 1fr; } }

/* ---------- Sobre o serviço ---------- */
.about-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-service .lead-copy p { color: var(--ink-900); }
.about-list {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.7rem;
}
.about-list li {
  display: flex;
  gap: .7em;
  align-items: flex-start;
  padding-block: .55em;
  border-bottom: 1px dashed var(--line-200);
  font-size: .95rem;
  color: var(--ink-900);
}
.about-list li:last-child { border-bottom: none; }
.about-list svg { width: 19px; height: 19px; flex: none; margin-top: .15em; color: var(--green-600); }

@media (max-width: 860px) { .about-service { grid-template-columns: 1fr; } }

/* ---------- Áreas atendidas ---------- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-block: 1.6rem 1.8rem;
}
.areas-note {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  max-width: 60ch;
}
.areas-note svg { width: 22px; height: 22px; flex: none; color: var(--green-600); margin-top: .1em; }
.areas-note p { margin: 0; font-size: .93rem; }

/* ---------- Horário ---------- */
.hours-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: var(--teal-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem clamp(1.6rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.hours-card .hours-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: rgba(245, 250, 248, .12);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.hours-card .hours-icon svg { width: 30px; height: 30px; color: var(--foam-50); }
.hours-card h2 { color: var(--white); margin-bottom: .2em; font-size: 1.4rem; }
.hours-card .hours-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: #CFE9DF;
  letter-spacing: .02em;
}
.hours-card p { color: rgba(245, 250, 248, .78); margin: .3em 0 0; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: .3rem 1.5rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-900);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-900);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--teal-900);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.faq-item summary .plus::before { width: 11px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 11px; }
.faq-item[open] summary .plus { background: var(--green-500); border-color: var(--green-500); }
.faq-item[open] summary .plus::before,
.faq-item[open] summary .plus::after { background: var(--white); }
.faq-item[open] summary .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-item .faq-answer { padding-bottom: 1.2rem; margin: 0; font-size: .96rem; }

/* ---------- CTA final ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.2rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(245, 250, 248, .25);
  border-radius: calc(var(--radius-lg) - 12px);
  pointer-events: none;
}
.final-cta__intro { position: relative; z-index: 1; }
.final-cta__intro h2 { color: var(--white); }
.final-cta__intro p { color: rgba(245, 250, 248, .82); max-width: 42ch; margin: 0 0 1.4rem; }
.final-cta__intro .btn { display: inline-flex; }

@media (max-width: 780px) {
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .final-cta__intro p { margin-inline: auto; margin-bottom: 1.4rem; }
}

/* ---------- Formulário de orçamento ---------- */
.quote-form {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.3rem, 3vw, 1.8rem);
  display: grid;
  gap: .85rem;
  box-shadow: var(--shadow-md);
  text-align: left;
}
.quote-form label {
  display: grid;
  gap: .35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  color: var(--teal-900);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font: inherit;
  font-size: .95rem;
  font-weight: 400;
  padding: .7em .9em;
  border-radius: 10px;
  border: 1.5px solid var(--line-200);
  background: var(--foam-50);
  color: var(--ink-900);
  width: 100%;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
}
.quote-form textarea { resize: vertical; min-height: 64px; }
.quote-form__actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .1rem; }
.quote-form__actions .btn { flex: 1 1 150px; justify-content: center; }
.quote-form__note {
  font-size: .74rem;
  color: var(--ink-600);
  margin: -.2rem 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(245, 250, 248, .82);
  padding-block: 3rem 1.6rem;
  margin-top: var(--section-pad);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr .85fr .85fr;
  gap: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(245, 250, 248, .14);
}
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: .9rem; }
.footer-brand p { color: rgba(245, 250, 248, .7); font-size: .92rem; max-width: 32ch; }
.site-footer h4 {
  color: var(--foam-50);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.site-footer ul { display: grid; gap: .65em; }
.site-footer a { font-size: .92rem; color: rgba(245, 250, 248, .8); display: inline-flex; align-items: center; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  padding-top: 1.5rem;
  font-size: .82rem;
  color: rgba(245, 250, 248, .55);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 4vw, 1.8rem);
  bottom: clamp(1rem, 4vw, 1.8rem);
  z-index: 150;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(11, 79, 74, .32);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }
.whatsapp-float:hover { transform: scale(1.07); box-shadow: 0 14px 30px rgba(11, 79, 74, .38); }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green-500);
  opacity: .55;
  animation: pulse-ring 2.4s var(--ease) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(.9); opacity: .55; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; display: none; }
}

/* ---------- Reveal on scroll ----------
   Visível por padrão (sem JS, crawlers e leitores de tela nunca perdem
   conteúdo). Só fica oculta brevemente se o JS confirmar suporte E marcar
   o elemento para animar — sempre com um limite de segurança no script. */
.reveal.will-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.will-animate.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal.will-animate { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utilidades ---------- */
.text-center { text-align: center; margin-inline: auto; }
.mx-auto { margin-inline: auto; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
