/* ==========================================================================
   Lavanderia Renovação — style.css
   Direção: o vocabulário de uma lavanderia de bairro — ticket de retirada,
   etiqueta furada, varal, carimbo e o listradinho do toldo da loja.
   ========================================================================== */

:root {
  --navy: #1d3477;
  --navy-deep: #12224f;
  --paper: #eef0f8;
  --card: #ffffff;
  --ink: #1d3477;
  --ink-soft: #565f83;
  --ink-faint: #8890b3;

  --yellow: #f9c80e;
  --orange: #f86523;
  --red: #ea3547;
  --teal: #42bdca;
  --purple: #5e17bd;

  --tint-yellow: #ffd23f;
  --tint-orange: #ff9142;
  --tint-red: #ff6570;
  --tint-teal: #2ec4c6;
  --tint-purple: #9b6bf2;

  --texture: repeating-linear-gradient(45deg, rgba(29,52,119,0.05) 0 1px, transparent 1px 5px), repeating-linear-gradient(-45deg, rgba(29,52,119,0.05) 0 1px, transparent 1px 5px);

  --yellow-ink: #8a6a00;
  --whatsapp: #25d366;

  --font-display: "Fredoka", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-mono: "Poppins", sans-serif;

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(45deg, rgba(29,52,119,0.035) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(29,52,119,0.035) 0 1px, transparent 1px 5px),
    radial-gradient(rgba(29,52,119,0.05) 1px, transparent 1.4px);
  background-size: auto, auto, 9px 9px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  line-height: 1.05;
  font-weight: 600;
}
p { margin: 0; }
svg { display: block; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

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

.icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.eyebrow::before { content: "—"; }

.section-head { max-width: 620px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 600; }
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 17px; max-width: 480px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 68px 0; } }

.mark {
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
}

/* ---------- Botões estilo ticket ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon { width: 17px; height: 17px; }

.btn-primary, .btn-light {
  padding: 16px 30px;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(248, 101, 35, 0.6);
}
.btn-primary:hover { background: #e3560f; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--paper); }

.btn-outline {
  background: transparent;
  border: 1.5px dashed var(--navy);
  color: var(--navy);
  border-radius: 8px;
  padding: 14.5px 26px;
}
.btn-outline:hover { background: var(--card); border-style: solid; }

/* ---------- Valance (toldo listrado, como o toldo real da loja) ---------- */
.valance {
  width: 100%;
  height: 51px;
  background-image: repeating-linear-gradient(90deg, var(--navy) 0 8px, #ffffff 8px 16px);
  box-shadow: 0 3px 8px rgba(18, 34, 79, 0.18);
}
@media (max-width: 640px) {
  .valance { height: 34px; }
}
.valance-footer { order: -1; box-shadow: 0 -3px 8px rgba(18, 34, 79, 0.18); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #c7cfec; }
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.topbar-socials { display: flex; gap: 16px; }
.topbar-socials a { color: #c7cfec; display: flex; }
.topbar-socials .icon { width: 14px; height: 14px; }
.topbar-socials a:hover { color: var(--yellow); }
@media (max-width: 640px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-socials { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 240, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px dashed rgba(29, 52, 119, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.brand img { height: 50px; width: auto; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  text-underline-offset: 6px;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}
.main-nav a:hover { text-decoration: underline dashed; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { padding: 6px; display: none; }
.nav-toggle .icon { width: 24px; height: 24px; color: var(--navy); }

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}
.nav-whatsapp .icon { color: var(--whatsapp); width: 23px; height: 23px; }
.nav-whatsapp:hover { color: var(--whatsapp); }

@media (max-width: 940px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -12px 0 40px rgba(20, 25, 43, 0.15);
    padding: 100px 32px 32px;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .main-nav a { font-size: 18px; }
  .nav-toggle { display: block; }
  .nav-whatsapp span { display: none; }
}
@media (max-width: 420px) {
  .nav-whatsapp .icon { width: 22px; height: 22px; }
}
@media (min-width: 941px) { .nav-scrim { display: none !important; } }
.nav-scrim {
  position: fixed; inset: 0; background: rgba(18, 34, 79, 0.45);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 99;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  padding: 68px 0 96px;
  overflow: hidden;
  background-color: var(--tint-yellow);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.01em;
  font-weight: 600;
}
.hero-lead { margin-top: 24px; font-size: 18px; max-width: 460px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-stubs { margin-top: 44px; display: flex; gap: 22px; flex-wrap: wrap; }
.hero-stub {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.02em;
}
.hero-stub .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

.hero-media { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.arch-photo {
  border-radius: 190px 190px 16px 16px;
  overflow: hidden;
  box-shadow: 0 34px 60px -22px rgba(18, 34, 79, 0.4);
  border: 6px solid var(--card);
}
.arch-photo img { width: 100%; height: 460px; object-fit: cover; }

.hero-tag {
  position: absolute;
  bottom: 18px; left: -26px;
  background: var(--card);
  border: 1.5px dashed var(--orange);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 34px -16px rgba(18, 34, 79, 0.35);
  max-width: 240px;
}
.hero-tag::before {
  content: "";
  position: absolute; top: -8px; left: 20px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper);
  border: 1.5px dashed var(--orange);
}
.hero-tag .icon { color: var(--orange); }
.hero-tag strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--navy); }
.hero-tag span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); }

@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin: 0 auto 12px; }
  .arch-photo { border-radius: 130px 130px 14px 14px; }
  .arch-photo img { height: 320px; }
  .hero-tag { left: 8px; }
}

/* ---------- Trust band (mesmo listrado do toldo) ---------- */
.trust-band {
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: repeating-linear-gradient(90deg, var(--navy) 0 8px, #ffffff 8px 16px);
  box-shadow: inset 0 3px 8px rgba(18, 34, 79, 0.18), inset 0 -3px 8px rgba(18, 34, 79, 0.18);
}
.trust-band p {
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--navy);
  text-transform: uppercase;
  background: #ffffff;
  padding: 9px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(18, 34, 79, 0.4);
}
@media (max-width: 640px) {
  .trust-band { height: 34px; }
}

/* ---------- Serviços — varal de tickets ---------- */
.section-services {
  background-color: var(--tint-teal);
}
.clothesline {
  position: relative;
  height: 2px;
  background: var(--navy);
  opacity: 0.22;
  margin: 0 0 70px;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}

.ticket {
  --accent: var(--navy);
  position: relative;
  background: var(--card);
  border: 1.5px dashed var(--accent);
  border-radius: 10px;
  padding: 30px 24px 26px;
  box-shadow: 0 14px 30px -20px rgba(18, 34, 79, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ticket::before {
  content: "";
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--paper);
  border: 1.5px dashed var(--accent);
}
.ticket-num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--accent-ink, var(--accent));
}
.ticket-media {
  position: relative;
  width: 96px;
  margin: 0 auto 20px;
}
.ticket-photo {
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden;
  border: 3px dashed var(--accent);
  box-shadow: 0 10px 20px -10px rgba(18, 34, 79, 0.4);
}
.ticket-photo img { width: 100%; height: 100%; object-fit: cover; }
.ticket-icon {
  position: absolute; bottom: -6px; right: -6px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--card);
  display: flex; align-items: center; justify-content: center;
}
.ticket-icon .icon { width: 17px; height: 17px; color: #fff; }
.ticket h3 { font-size: 21px; margin-bottom: 9px; }
.ticket p { font-size: 14.5px; }

.ticket[data-accent="yellow"] { --accent: var(--yellow); --accent-ink: var(--yellow-ink); }
.ticket[data-accent="orange"] { --accent: var(--orange); }
.ticket[data-accent="red"] { --accent: var(--red); }
.ticket[data-accent="teal"] { --accent: var(--teal); }
.ticket[data-accent="purple"] { --accent: var(--purple); }
.ticket[data-accent="navy"] { --accent: var(--navy); }

.ticket-grid .ticket:nth-child(1) { transform: rotate(-1.3deg); }
.ticket-grid .ticket:nth-child(2) { transform: rotate(0.9deg) translateY(10px); }
.ticket-grid .ticket:nth-child(3) { transform: rotate(-0.7deg) translateY(2px); }
.ticket-grid .ticket:nth-child(4) { transform: rotate(1.5deg) translateY(4px); }
.ticket-grid .ticket:nth-child(5) { transform: rotate(-1deg) translateY(12px); }
.ticket-grid .ticket:nth-child(6) { transform: rotate(0.7deg); }
.ticket-grid .ticket:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.015);
  box-shadow: 0 26px 44px -18px rgba(18, 34, 79, 0.4);
}

@media (max-width: 940px) { .ticket-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .ticket-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .ticket-grid .ticket { transform: none !important; }
}

/* ---------- Estatísticas — fita métrica ---------- */
.stats {
  background: var(--navy);
  color: #fff;
}
.stats .section-head p { color: #b7c0e6; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { border-left: 1.5px dashed rgba(255,255,255,0.3); padding-left: 18px; }
.stat-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-item span { font-size: 14px; color: #b7c0e6; }
.stat-item:nth-child(1) strong { color: var(--yellow); }
.stat-item:nth-child(2) strong { color: var(--teal); }
.stat-item:nth-child(3) strong { color: var(--orange); }
.stat-item:nth-child(4) strong { color: #ff90a0; }

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }

/* ---------- Sobre ---------- */
.about {
  background-color: var(--tint-yellow);
}
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .arch-photo img { height: 440px; }
.about-motto {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--orange); color: #fff;
  padding: 16px 20px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: 15px; max-width: 210px;
  box-shadow: 0 18px 36px -16px rgba(248,101,35,0.55);
  transform: rotate(-2deg);
}
.about-body p { font-size: 16.5px; margin-bottom: 16px; }
.about-address {
  margin-top: 6px; display: flex; gap: 10px; align-items: flex-start;
  font-weight: 600; color: var(--navy); font-family: var(--font-mono); font-size: 13.5px;
}
.about-address .icon { color: var(--orange); margin-top: 2px; }

.about-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-feature {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px dashed rgba(29,52,119,0.35);
  border-radius: 8px; padding: 12px 14px;
  font-weight: 600; font-size: 13.5px; color: var(--navy);
}
.about-feature .icon { color: var(--teal); width: 18px; height: 18px; }

@media (max-width: 940px) {
  .about .container { grid-template-columns: 1fr; }
  .about-media .arch-photo { border-radius: 130px 130px 14px 14px; }
  .about-media .arch-photo img { height: 300px; }
  .about-features { grid-template-columns: 1fr; }
}

/* ---------- Como funciona — trilha do ticket ---------- */
.section-steps {
  background-color: var(--tint-purple);
}
.stage-track { display: flex; justify-content: space-between; gap: 24px; position: relative; }
.stage-track::before {
  content: "";
  position: absolute; top: 44px; left: 90px; right: 90px; height: 0;
  border-top: 2px dashed rgba(29,52,119,0.3);
}
.stage { position: relative; text-align: center; flex: 1; }
.stage-badge {
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px dashed var(--orange);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--navy);
}
.stage-badge .icon { width: 30px; height: 30px; color: var(--orange); }
.stage h3 { font-size: 18px; margin-bottom: 8px; }
.stage p { font-size: 14.5px; max-width: 240px; margin: 0 auto; color: var(--navy-deep); }

@media (max-width: 768px) {
  .stage-track { flex-direction: column; gap: 40px; }
  .stage-track::before { display: none; }
  .stage p { max-width: 100%; }
}

/* ---------- FAQ — etiquetas de cuidado ---------- */
.section-faq {
  background-color: var(--tint-orange);
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px dashed rgba(29,52,119,0.3); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 4px; text-align: left;
}
.faq-question .q-num {
  font-family: var(--font-mono); font-weight: 700; font-size: 12.5px;
  color: var(--orange); flex-shrink: 0; width: 30px;
}
.faq-question .q-text {
  font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--navy);
  flex: 1;
}
.faq-question .icon { color: var(--orange); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 4px 22px 46px; font-size: 15.5px; max-width: 620px; }

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
  background-color: var(--navy);
}
.cta-final h2 { color: #fff; }
.cta-final .eyebrow { justify-content: center; color: var(--yellow); }
.cta-final h2 { font-size: clamp(28px, 4vw, 42px); max-width: 720px; margin: 0 auto; }
.cta-final .btn { margin-top: 32px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #b7c0e6;
}
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 52px; margin-bottom: 16px; border-radius: 8px; }
.footer-brand p { font-size: 14px; color: #97a1c6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-mono); color: #fff; font-size: 12.5px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: #c7cfec; display: flex; align-items: center; gap: 10px; }
.footer-col a:hover { color: var(--yellow); }
.footer-col li { font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.footer-col .icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
}
.footer-social .icon { width: 16px; height: 16px; color: #fff; }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }

.footer-bottom { border-top: 1.5px dashed rgba(255,255,255,0.18); padding: 20px 0; }
.footer-bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; color: #8b95bd;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -10px rgba(37, 211, 102, 0.6);
  z-index: 90; transition: transform 0.2s ease;
}
.whatsapp-float .icon { width: 28px; height: 28px; color: #fff; }
.whatsapp-float:hover { transform: scale(1.08); }
