/*
Theme Name: Wash Lavanderia
Theme URI: https://www.wash.com.br/
Author: Sette Marketing
Author URI: https://settemkt.com.br/
Description: Tema WordPress próprio (sem depender do Elementor) que reproduz o layout e a identidade visual do site da Lavanderia Wash: cabeçalho com menu suspenso, banner, seção institucional, grade de serviços, seção Grifes e Ateliês, grade de parceiros, formulário de contato e rodapé com as unidades.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: wash-lavanderia
*/

/* =====================================================
   0. DESIGN TOKENS
   ===================================================== */
:root{
  --wash-blue-dark:   #1c3a52;   /* variação mais escura p/ hover/estados */
  --wash-blue:         #225980;  /* azul principal: títulos, botões, rodapé */
  --wash-blue-light:   #4a7ba6;  /* linhas/detalhes decorativos */
  --wash-gold:         #c9a24b;  /* detalhe dourado (seção Grifes e Ateliês) */
  --wash-text:         #3a4f66;  /* texto de corpo */
  --wash-text-soft:    #6b7c8d;
  --wash-bg:           #fafbfc;  /* fundo padrão das seções claras */
  --wash-bg-alt:       #f5f5f5;  /* fundo padrão das seções alternadas */
  --wash-white:        #ffffff;
  --wash-border:       #e3e7ea;

  --wash-font-heading: "karmina-sans", Georgia, "Times New Roman", serif;
  --wash-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wash-radius-card: 34px 34px 18px 18px;
  --wash-radius-pill: 999px;
  --wash-container: 1200px;
  --wash-shadow-card: 0 10px 30px rgba(28, 58, 82, 0.08);
}

/* =====================================================
   1. RESET / BASE
   ===================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--wash-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--wash-text);
  background: var(--wash-bg);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{
  font-family: var(--wash-font-heading);
  color: var(--wash-blue);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}
h2{ font-size: 40px; }
h3{ font-size: 24px; }
p{ margin: 0 0 16px; }
strong{ color: var(--wash-blue); }
.wash-container{
  width: 100%;
  max-width: var(--wash-container);
  margin: 0 auto;
  padding: 0 24px;
}
.wash-btn{
  display: inline-block;
  background: var(--wash-blue);
  color: var(--wash-white) !important;
  font-family: var(--wash-font-heading);
  font-weight: 700;
  font-size: 18px;
  padding: 15px 40px;
  border-radius: var(--wash-radius-pill);
  border: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.wash-btn:hover{ background: var(--wash-blue-dark); transform: translateY(-1px); }
.wash-section{ padding: 80px 0; }
.wash-section--alt{ background: var(--wash-bg-alt); }
.wash-section-title{ text-align: center; margin-bottom: 48px; }
.wash-eyebrow{
  display:block; text-transform: uppercase; letter-spacing: .12em;
  font-size: 13px; color: var(--wash-blue-light); font-weight: 700; margin-bottom: 8px;
}

/* =====================================================
   2. HEADER / NAV
   ===================================================== */
.wash-header{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(61, 61, 61, 0.4);
  transition: background .25s ease, box-shadow .25s ease, position .25s ease;
}
.wash-header.is-static{ position: relative; background: var(--wash-blue); }
.wash-header.is-scrolled{
  position: fixed;
  background: rgba(28, 58, 82, .95);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.wash-header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}
.wash-logo img{ height: 42px; width: auto; }
.wash-logo{ flex: 0 0 auto; }

.wash-nav{ flex: 1 1 auto; display: flex; justify-content: center; }
.wash-nav > ul{ display: flex; align-items: center; gap: 34px; }
.wash-nav > ul > li{ position: relative; }
.wash-nav > ul > li > a{
  display: block;
  color: var(--wash-white);
  font-family: var(--wash-font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 10px 0;
  text-shadow: 0 1px 3px rgba(0,0,0,.35);
}
.wash-nav > ul > li > a:after{
  content: "";
  display: none;
}
.wash-nav li.menu-item-has-children > a:after{
  content: "\25BE";
  font-size: 10px;
  margin-left: 6px;
  opacity: .8;
}
.wash-nav .sub-menu{
  position: absolute;
  top: 100%; left: 0;
  min-width: 260px;
  background: var(--wash-white);
  box-shadow: 0 16px 32px rgba(0,0,0,.15);
  border-radius: 0 0 10px 10px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.wash-nav li.menu-item-has-children:hover > .sub-menu,
.wash-nav li.menu-item-has-children:focus-within > .sub-menu{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.wash-nav .sub-menu a{
  display: block;
  padding: 10px 22px;
  color: var(--wash-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.wash-nav .sub-menu a:hover{ background: var(--wash-bg-alt); }

.wash-header-social{ display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.wash-header-social a{
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--wash-white); border: 1px solid rgba(255,255,255,.6);
}
.wash-header-social svg{ width: 15px; height: 15px; fill: currentColor; }

.wash-nav-toggle{ display: none; }

@media (max-width: 960px){
  .wash-nav-toggle{
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: transparent; border: 0; cursor: pointer;
  }
  .wash-nav-toggle span, .wash-nav-toggle span:before, .wash-nav-toggle span:after{
    content: ""; display: block; width: 24px; height: 2px; background: #fff; position: relative; transition: .2s;
  }
  .wash-nav-toggle span:before{ position:absolute; top:-8px; }
  .wash-nav-toggle span:after{ position:absolute; top:8px; }
  .wash-nav{
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 86vw);
    background: var(--wash-blue-dark); flex-direction: column; justify-content: flex-start;
    padding: 90px 28px 28px; transition: right .25s ease; overflow-y: auto;
  }
  .wash-nav.is-open{ right: 0; }
  .wash-nav > ul{ flex-direction: column; align-items: flex-start; gap: 6px; width: 100%; }
  .wash-nav > ul > li{ width: 100%; }
  .wash-nav .sub-menu{ position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.06); display: none; }
  .wash-nav li.menu-item-has-children.is-open > .sub-menu{ display: block; }
  .wash-nav .sub-menu a{ color: var(--wash-white); }
  .wash-header-social{ display: none; }
}

/* =====================================================
   3. HERO
   ===================================================== */
.wash-hero{ position: relative; overflow: hidden; }
.wash-hero img{ width: 100%; display: block; }
.wash-hero--page{
  background: var(--wash-blue);
  padding: 160px 0 60px;
  text-align: left;
}
.wash-hero--page h1{ color: var(--wash-white); margin: 0; }

/* =====================================================
   4. SOBRE (imagem + texto)
   ===================================================== */
.wash-about{ display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.wash-about-media img{ width: 100%; height: 100%; object-fit: cover; }
.wash-about-content{ display: flex; align-items: center; padding: 60px; background: var(--wash-white); }
.wash-about-content p{ font-size: 16px; }
@media (max-width: 860px){
  .wash-about{ grid-template-columns: 1fr; }
  .wash-about-content{ padding: 36px 24px; }
}

/* =====================================================
   5. SERVIÇOS - grid de cards
   ===================================================== */
.wash-services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.wash-services-grid--3{ grid-template-columns: repeat(3, 1fr); }
.wash-card{
  background: var(--wash-white);
  border-radius: var(--wash-radius-card);
  box-shadow: var(--wash-shadow-card);
  padding: 40px 24px 32px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wash-card:hover{ transform: translateY(-4px); box-shadow: 0 16px 34px rgba(28,58,82,.14); }
.wash-card-icon{
  width: 74px; height: 74px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wash-blue);
}
.wash-card-icon svg{ width: 56px; height: 56px; stroke: var(--wash-blue); fill: none; stroke-width: 1.4; }
.wash-card-icon img{ max-width: 74px; max-height: 74px; width: auto; height: auto; object-fit: contain; }
.wash-card-rule{
  width: 46px; height: 3px; background: var(--wash-blue-light); margin: 0 auto 18px; border-radius: 2px;
}
.wash-card h3{
  font-size: 16px; text-transform: uppercase; letter-spacing: .02em;
  color: var(--wash-blue); margin-bottom: 18px; min-height: 44px;
}
.wash-card-link{
  width: 34px; height: 34px; border: 1px solid var(--wash-blue-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto; color: var(--wash-blue-light);
  font-size: 18px; transition: background .2s ease, color .2s ease;
}
.wash-card-link:hover{ background: var(--wash-blue); color: #fff; border-color: var(--wash-blue); }

@media (max-width: 960px){
  .wash-services-grid, .wash-services-grid--3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .wash-services-grid, .wash-services-grid--3{ grid-template-columns: 1fr; }
}

/* =====================================================
   6. GRIFES E ATELIÊS (CTA banda)
   ===================================================== */
.wash-cta{ display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.wash-cta-content{ padding: 0 24px 0 0; }
.wash-cta-media{ position: relative; }
.wash-cta-media img{ width: 100%; }
@media (max-width: 860px){
  .wash-cta{ grid-template-columns: 1fr; }
  .wash-cta-content{ padding: 0 24px 32px; order: 2; }
  .wash-cta-media{ order: 1; }
}

/* =====================================================
   7. PARCEIROS - grade de logos
   ===================================================== */
.wash-partners-grid{
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--wash-border);
  border-left: 0;
}
.wash-partners-grid div{
  box-sizing: border-box;
  width: 16.66667%;
  border: 1px solid var(--wash-border);
  border-right: 0; border-top: 0;
  aspect-ratio: 1.22 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.wash-partners-grid img{ width: 100%; height: auto; max-width: 100%; }
@media (max-width: 960px){ .wash-partners-grid div{ width: 33.33334%; } }
@media (max-width: 560px){ .wash-partners-grid div{ width: 50%; } }

/* =====================================================
   8. FORMULÁRIO DE CONTATO
   ===================================================== */
.wash-contact-wrap{ max-width: 620px; margin: 0 auto; }
.wash-contact-card{
  background: var(--wash-bg-alt);
  border-radius: 18px;
  padding: 44px;
}
.wash-contact-card h2{ text-align: center; font-size: 26px; margin-bottom: 30px; }
.wash-field{ margin-bottom: 20px; }
.wash-field label{ display: block; font-size: 13px; color: var(--wash-text-soft); margin-bottom: 6px; }
.wash-field input, .wash-field textarea{
  width: 100%; border: 1px solid var(--wash-border); border-radius: 4px;
  padding: 12px 14px; font-family: var(--wash-font-body); font-size: 15px;
  background: var(--wash-white); color: var(--wash-text);
}
.wash-field textarea{ min-height: 130px; resize: vertical; }
.wash-contact-card .wash-btn{ display: block; width: max-content; margin: 8px auto 0; }
.wash-form-notice{ text-align:center; padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.wash-form-notice--ok{ background:#e4f3e9; color:#1e6b3f; }
.wash-form-notice--err{ background:#fbe7e7; color:#a12626; }

/* =====================================================
   9. RODAPÉ
   ===================================================== */
.wash-delivery-bar{
  background: var(--wash-blue);
  color: var(--wash-white);
  text-align: center;
  padding: 26px 24px;
  font-family: var(--wash-font-heading);
  font-weight: 700;
  font-size: 18px;
}
.wash-delivery-bar svg{ width: 22px; height: 22px; vertical-align: -4px; margin-left: 8px; fill: currentColor; }

.wash-footer{ background: var(--wash-blue); color: var(--wash-white); padding: 56px 24px 30px; }
.wash-footer-grid{
  display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 32px; align-items: start;
}
.wash-footer-logo img{ height: 46px; margin-bottom: 10px; }
.wash-footer-tagline{ font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.wash-footer-unit strong{ color: var(--wash-white); display: block; margin-bottom: 10px; font-size: 15px; }
.wash-footer-unit p{ margin: 0 0 4px; font-size: 14px; color: rgba(255,255,255,.9); }
.wash-footer-unit .wash-hours{ margin-top: 10px; font-size: 13px; opacity: .85; }
.wash-footer-social strong{ display:block; margin-bottom: 14px; }
.wash-footer-social-icons{ display: flex; gap: 12px; }
.wash-footer-social-icons a{
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
}
.wash-footer-social-icons svg{ width: 15px; height: 15px; fill: currentColor; }
.wash-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.18); margin-top: 40px; padding-top: 20px;
  text-align: center; font-size: 13px; opacity: .75;
}
@media (max-width: 860px){
  .wash-footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .wash-footer-grid{ grid-template-columns: 1fr; }
}

/* =====================================================
   10. PÁGINA GENÉRICA (page.php)
   ===================================================== */
.wash-page-content{ max-width: 860px; margin: 0 auto; padding: 60px 24px 90px; }
.wash-page-content img{ border-radius: 12px; margin: 24px 0; }
.wash-page-content h2{ font-size: 28px; }

/* =====================================================
   10b. CONTATO E UNIDADES / OBRIGADO / WASH+ (páginas extra)
   ===================================================== */
.wash-unit-block{ max-width: 760px; text-align: center; }
.wash-unit-info p{ margin: 4px 0; }
.wash-unit-map{ margin-top: 28px; border-radius: 12px; overflow: hidden; }
.wash-unit-map iframe{ display: block; width: 100%; }

.wash-obrigado{ padding: 140px 0; }
.wash-obrigado-content{ max-width: 640px; text-align: center; margin: 0 auto; }
.wash-obrigado-content p{ font-size: 22px; font-weight: 700; color: var(--wash-blue-dark); line-height: 1.5; margin-bottom: 32px; }

.wash-plus-hero{
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; align-items: stretch;
  background: var(--wash-blue-dark);
}
.wash-plus-hero-text{
  padding: 90px 48px; color: var(--wash-white); display: flex; flex-direction: column; justify-content: center; gap: 32px;
}
.wash-plus-hero-text h1{ color: var(--wash-white); font-size: 34px; line-height: 1.3; margin: 0; }
.wash-plus-logo{ max-width: 220px; opacity: .95; }
.wash-plus-hero .wash-contact-wrap{ margin: 40px; max-width: none; }
.wash-plus-hero .wash-contact-card{ background: var(--wash-white); }
.wash-plus-form-intro{ font-weight: 700; text-align: center; margin-bottom: 24px; }
@media (max-width: 900px){
  .wash-plus-hero{ grid-template-columns: 1fr; }
  .wash-plus-hero .wash-contact-wrap{ margin: 24px; }
}

.wash-plus-neighborhoods{ display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.wash-plus-neighborhood-badge{
  background: var(--wash-blue-dark); color: var(--wash-white); text-align: center;
  padding: 32px 16px; border-radius: 12px 12px 0 0;
}
.wash-plus-neighborhood-badge h3{ color: var(--wash-white); margin: 0 0 16px; }
.wash-plus-neighborhood-badge svg{ width: 40px; height: 40px; }
.wash-plus-neighborhood iframe{ display: block; border-radius: 0 0 12px 12px; }
@media (max-width: 700px){ .wash-plus-neighborhoods{ grid-template-columns: 1fr; } }

.wash-plus-brand{
  background: var(--wash-blue-dark); color: var(--wash-white); padding: 70px 0;
}
.wash-plus-brand .wash-container{ max-width: 760px; }
.wash-plus-brand p{ font-size: 22px; line-height: 1.5; }

.wash-plus-closing{ max-width: 760px; text-align: center; }
.wash-plus-closing p{ margin-bottom: 24px; }
.wash-plus-social{ margin-top: 40px; }
.wash-plus-social .wash-footer-social-icons{ justify-content: center; margin-top: 12px; }

/* =====================================================
   11. WHATSAPP FLUTUANTE
   ===================================================== */
.wash-whatsapp-float{
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.wash-whatsapp-float svg{ width: 28px; height: 28px; fill: #fff; }
