/* ============================================================
   HIGIENIZAÇÃO DE ESTOFADOS — STYLESHEET (TEMA CLARO & CHAMATIVO)
   Paleta: Branco, Azul Vibrante, Teal, Verde WhatsApp
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:     #0ea5e9;
  --primary-dark:#0284c7;
  --secondary:   #0f172a;
  --accent:      #f43f5e;
  --white:       #ffffff;
  --light:       #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-500:    #64748b;
  --gray-800:    #1e293b;
  --green:       #25D366;
  --green-dark:  #1aad52;
  --font:        'Inter', sans-serif;
  --radius:      16px;
  --radius-sm:   8px;
  --shadow:      0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

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

.text-teal   { color: var(--primary); }
.text-center { text-align: center; }

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary);
}

.section-sub {
  color: var(--gray-500);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn--green {
  background: var(--green);
  color: #fff;
}
.btn--green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,211,102,0.3);
}

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

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
}

.logo-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--secondary);
}

.logo-city {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

.header__nav a:hover { color: var(--primary); }

@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }
  
  .header__nav.open {
    max-height: 300px;
  }
  
  .header__nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  
  .hamburger { display: flex !important; }
  .header__cta { display: none !important; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ---------- HERO ---------- */
.hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top right, #e0f2fe, #ffffff);
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  
  .hero__actions {
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .hero__actions .btn {
    width: 100%;
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
  }
  
  .hero__image {
    order: -1;
  }
}

.hero__text { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__quote {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

.hero__image {
  position: relative;
  z-index: 1;
}

.hero__image img {
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 8px solid white;
}

/* ---------- SERVIÇOS ---------- */
.servicos {
  padding: 100px 0;
  background: var(--light);
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.servico-card__icon {
  width: 60px; height: 60px;
  background: rgba(14,165,233,0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.servico-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary);
}

/* ---------- SOBRE ---------- */
.sobre {
  padding: 100px 0;
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__image img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.sobre__stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}

.stat__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
}

/* ---------- BENEFÍCIOS ---------- */
.beneficios {
  padding: 100px 0;
  background: var(--secondary);
  color: var(--white);
}

.beneficios .section-title { color: var(--white); }
.beneficios .section-sub { color: var(--gray-200); }

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.beneficio-item {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.beneficio-item__icon {
  font-size: 2rem;
  color: var(--primary);
}

/* ---------- PROCESSO ---------- */
.processo {
  padding: 100px 0;
}

.processo__steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}

.step {
  text-align: center;
  flex: 1;
}

.step__num {
  width: 60px; height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(rgba(14,165,233,0.9), rgba(14,165,233,0.9)), url('{{PLUGIN_URL}}images/higienizacao3.jpg') center/cover;
  color: var(--white);
  text-align: center;
}

.cta-final .section-title { color: var(--white); }

.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px; height: 60px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}

@media (max-width: 768px) {
  .sobre__inner { grid-template-columns: 1fr; }
  .processo__steps { flex-direction: column; }
  .cta-final__actions { flex-direction: column; }
}
