/* ==========================================================================
   LAVAGEM DE CORTINA PERTO DE MIM — lavagemdecortinapertodemim.com.br
   Identidade visual baseada na Limpelux (limpelux.com.br)
   ========================================================================== */

:root {
  --vinho: #7A264C;
  --vinho-escuro: #5E1C3B;
  --vinho-claro: #804C6A;
  --rosa-bg: #F6EEF2;
  --texto: #3A3A3A;
  --texto-suave: #6B6B6B;
  --branco: #FFFFFF;
  --borda: #E8DDE3;
  --sombra: 0 10px 30px rgba(94, 28, 59, .12);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Poppins', 'Open Sans', sans-serif; line-height: 1.25; color: var(--vinho-escuro); }

img { max-width: 100%; display: block; }

a { color: var(--vinho); }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sombra); }

.btn-primario { background: var(--vinho); color: var(--branco); }
.btn-primario:hover { background: var(--vinho-escuro); }

.btn-branco { background: var(--branco); color: var(--vinho); }
.btn-branco:hover { background: var(--rosa-bg); }

.btn-contorno { background: transparent; color: var(--branco); border-color: var(--branco); }
.btn-contorno:hover { background: var(--branco); color: var(--vinho); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--vinho-escuro);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--branco); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--branco);
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }

.marca { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.marca-icone {
  width: 46px; height: 46px;
  background: var(--vinho);
  border-radius: 12px 12px 12px 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.marca-icone svg { width: 26px; height: 26px; }
.marca-texto { font-family: 'Poppins', sans-serif; line-height: 1.2; }
.marca-texto strong { display: block; color: var(--vinho-escuro); font-size: 17px; font-weight: 700; }
.marca-texto span { display: block; color: var(--texto-suave); font-size: 12.5px; font-weight: 500; }

.menu { display: flex; align-items: center; gap: 28px; list-style: none; }
.menu a { text-decoration: none; color: var(--texto); font-weight: 600; font-size: 15px; transition: color .2s; }
.menu a:hover { color: var(--vinho); }

.header .btn { padding: 12px 24px; font-size: 14.5px; }

/* ---------- Hero (aconchego) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--branco);
  overflow: hidden;
  background: #2A1508;
}

.hero-fundo { position: absolute; inset: 0; }
.hero-fundo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* vinheta suave para leitura */
.hero-veu {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(30, 12, 4, .25) 0%, rgba(30, 12, 4, .78) 100%);
}

.hero-conteudo {
  position: relative;
  max-width: 860px;
  padding-top: 100px;
  padding-bottom: 120px;
  animation: heroEntra .9s ease-out both;
}

@keyframes heroEntra {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-linha { width: 60px; height: 2px; background: #E8C9A9; margin: 0 auto 28px; }

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8C9A9;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--branco);
  font-size: 60px;
  line-height: 1.15;
  margin-bottom: 26px;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
}

.hero p {
  font-size: 19px;
  color: rgba(255,255,255,.9);
  max-width: 560px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.hero-botoes { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .8;
  animation: heroScrollDesce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 28px; height: 28px; fill: #fff; }
.hero-scroll:hover { opacity: 1; }

@keyframes heroScrollDesce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-conteudo, .hero-scroll { animation: none; }
}

/* ---------- Faixa de confiança ---------- */
.confianca { padding: 40px 0 10px; }
.confianca-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.confianca-item { text-align: center; padding: 10px; }
.confianca-item strong { display: block; font-family: 'Poppins', sans-serif; font-size: 34px; font-weight: 700; color: var(--vinho); }
.confianca-item span { font-size: 15px; color: var(--texto-suave); }

/* ---------- Seções ---------- */
.secao { padding: 90px 0; }
.secao-rosa { background: var(--rosa-bg); }
.secao-vinho { background: linear-gradient(135deg, var(--vinho-escuro), var(--vinho)); color: var(--branco); }

.secao-cabecalho { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.secao-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vinho);
  margin-bottom: 12px;
}
.secao-vinho .secao-tag { color: #F3CEE0; }
.secao-cabecalho h2 { font-size: 36px; margin-bottom: 16px; }
.secao-vinho h2, .secao-vinho h3 { color: var(--branco); }
.secao-cabecalho p { color: var(--texto-suave); font-size: 18px; }
.secao-vinho .secao-cabecalho p { color: rgba(255,255,255,.85); }

/* ---------- Como funciona (passos) ---------- */
.passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.passo {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--sombra);
  position: relative;
}
.passo-numero {
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  background: var(--vinho);
  color: var(--branco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.passo h3 { font-size: 20px; margin-bottom: 12px; }
.passo p { font-size: 15.5px; color: var(--texto-suave); }
.passo a { font-weight: 600; }

/* ---------- Serviços (cards com foto) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}
.card:hover { transform: translateY(-6px); }
.card-foto { height: 210px; overflow: hidden; }
.card-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-foto img { transform: scale(1.06); }
.card-corpo { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-corpo h3 { font-size: 21px; margin-bottom: 12px; }
.card-corpo p { font-size: 15.5px; color: var(--texto-suave); flex: 1; }
.card-corpo ul { list-style: none; margin: 14px 0 0; }
.card-corpo li { font-size: 15px; padding: 5px 0 5px 28px; position: relative; color: var(--texto); }
.card-corpo li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 16px; height: 16px;
  background: var(--vinho);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- Método (lavagem ultrassônica) ---------- */
.metodo { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.metodo-conteudo h2 { font-size: 34px; margin-bottom: 20px; }
.metodo-conteudo p { margin-bottom: 18px; color: rgba(255,255,255,.88); }
.metodo-lista { list-style: none; margin: 26px 0 34px; }
.metodo-lista li { padding: 8px 0 8px 36px; position: relative; font-size: 16.5px; }
.metodo-lista li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 22px; height: 22px;
  background: #F3CEE0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2 4 5v6c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2 4 5v6c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.metodo-figura {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.metodo-figura img { margin: 0 auto 10px; max-width: 320px; }
.metodo-figura figcaption { font-size: 14px; color: rgba(255,255,255,.75); }

/* ---------- Regiões ---------- */
.regioes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.regiao {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  text-decoration: none;
  color: var(--texto);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: block;
}
.regiao:hover { transform: translateY(-4px); box-shadow: var(--sombra); border-color: var(--vinho-claro); }
.regiao-topo { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.regiao-topo svg { width: 24px; height: 24px; color: var(--vinho); flex-shrink: 0; }
.regiao-topo h3 { font-size: 19px; }
.regiao p { font-size: 14.5px; color: var(--texto-suave); margin-bottom: 12px; }
.regiao span { font-size: 14.5px; font-weight: 700; color: var(--vinho); display: inline-flex; align-items: center; gap: 6px; }
.regiao span svg { width: 15px; height: 15px; transition: transform .2s; }
.regiao:hover span svg { transform: translateX(4px); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--vinho-escuro);
  position: relative;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute; right: 24px; top: 50%;
  width: 22px; height: 22px;
  transform: translateY(-50%);
  background: var(--vinho);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 26px 24px; color: var(--texto-suave); font-size: 16px; }
.faq details a { font-weight: 600; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: 38px; margin-bottom: 16px; }
.cta-final p { font-size: 19px; max-width: 620px; margin: 0 auto 36px; color: rgba(255,255,255,.9); }
.cta-final .hero-botoes { margin-bottom: 26px; }
.cta-final .cta-sac { font-size: 16px; color: rgba(255,255,255,.85); }
.cta-final .cta-sac a { color: var(--branco); font-weight: 700; text-decoration: none; }
.cta-final .cta-sac a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: #2E0F1F; color: rgba(255,255,255,.8); padding: 60px 0 0; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer h4 { color: var(--branco); font-size: 16px; margin-bottom: 18px; }
.footer p { margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer a:hover { color: var(--branco); text-decoration: underline; }
.footer-logo { max-width: 170px; margin-bottom: 18px; border-radius: 8px; }
.footer-contato-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contato-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 5px; color: #F3CEE0; }
.footer-barra { border-top: 1px solid rgba(255,255,255,.14); padding: 20px 0; font-size: 13.5px; text-align: center; color: rgba(255,255,255,.6); }
.footer-barra a { color: rgba(255,255,255,.8); }

/* ---------- Botão flutuante ---------- */
.flutuante {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vinho);
  color: var(--branco);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(46, 15, 31, .4);
  transition: transform .2s ease, background .2s ease;
}
.flutuante:hover { transform: translateY(-3px); background: var(--vinho-escuro); }
.flutuante svg { width: 20px; height: 20px; }

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .menu { display: none; }
  .hero h1 { font-size: 46px; }
  .hero-conteudo { padding-top: 80px; padding-bottom: 110px; }
  .passos, .cards, .regioes { grid-template-columns: repeat(2, 1fr); }
  .metodo { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .secao { padding: 64px 0; }
  .hero h1 { font-size: 35px; }
  .hero p { font-size: 17px; }
  .hero-conteudo { padding-top: 64px; padding-bottom: 100px; }
  .hero-eyebrow { letter-spacing: 2.5px; }
  .secao-cabecalho h2 { font-size: 27px; }
  .cta-final h2 { font-size: 28px; }
  .passos, .cards, .regioes { grid-template-columns: 1fr; }
  .confianca-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .topbar-item.topbar-email { display: none; }
  .header .btn span { display: none; }
  .header .btn { padding: 12px 14px; }
  .marca-texto strong { font-size: 15px; }
  .flutuante span { display: none; }
  .flutuante { padding: 16px; }
}
