/* ==========================================================================
   CASA LIVRE ESTOFADOS - JAÚ / SP
   Design System Premium - Paleta Harmoniosa em 4 Tons de Verde
   
   1. Verde Floresta / Esmeralda Escuro: #0f3d2e (Elegância, profundidade e contraste)
   2. Verde Folha / Esmeralda Vibrante:  #16a34a (Ação, destaque e energia)
   3. Verde Menta / Salvia Suave:        #6ee7b7 (Brilho, detalhes e highlights)
   4. Verde Claro / Fundo Fresco:        #f0fdf4 (Leveza, limpeza e frescor)
   ========================================================================== */

:root {
  /* Os 4 Tons de Verde */
  --green-deep: #0f3d2e;      /* Tom 1: Verde Escuro Profundo */
  --green-vibrant: #16a34a;   /* Tom 2: Verde Folha Vibrante */
  --green-mint: #6ee7b7;      /* Tom 3: Verde Menta / Salvia */
  --green-light: #f0fdf4;     /* Tom 4: Verde Claro Fresco */

  /* Cores Complementares & Neutras */
  --green-950: #052e16;
  --green-900: #064e3b;
  --green-800: #0f3d2e;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-300: #86efac;
  --green-200: #bbf7d0;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;

  /* Neutros Suaves */
  --dark-text: #0f172a;
  --body-text: #334155;
  --muted-text: #64748b;
  --border-light: #e2e8f0;
  --border-green: #bbf7d0;
  --white: #ffffff;

  /* Botão WhatsApp */
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1eb956;

  /* Tipografia */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Efeitos e Raios */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(15, 61, 46, 0.06);
  --shadow-md: 0 4px 16px -2px rgba(15, 61, 46, 0.1);
  --shadow-lg: 0 10px 30px -4px rgba(15, 61, 46, 0.14);
  --shadow-xl: 0 20px 45px -8px rgba(15, 61, 46, 0.2);
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset Básico & Estilos Globais --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: #f8fafc;
  color: var(--body-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   1. SITE HEADER (Cabeçalho Branco e Verde)
   ========================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-green);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Menu de Navegação */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--green-vibrant);
}

.nav-link .dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
  color: var(--green-vibrant);
}

.nav-item:hover .nav-link .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 580px;
  max-width: 95vw;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1050;
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--green-100);
}

.dropdown-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-title i {
  color: var(--green-vibrant);
}

.dropdown-tag {
  background: var(--green-light);
  color: var(--green-deep);
  border: 1px solid var(--green-200);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
}

.dropdown-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  border: 1px solid rgba(22, 163, 74, 0.12);
  transition: var(--transition);
}

.dropdown-card:hover {
  background: var(--white);
  border-color: var(--green-vibrant);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.12);
}

.dropdown-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.dropdown-card:hover .dropdown-icon {
  background: var(--green-vibrant);
  color: var(--white);
}

.dropdown-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-text);
}

.dropdown-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--green-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted-text);
}

.dropdown-btn-link {
  font-weight: 700;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-btn-link i {
  color: var(--whatsapp-green);
}

.dropdown-btn-link:hover {
  color: var(--green-vibrant);
  text-decoration: underline;
}

/* Header CTA Button */
.header-cta {
  display: flex;
  align-items: center;
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-vibrant) 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, #0b2e22 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
  color: var(--white);
}

.btn-header-cta i {
  color: #a7f3d0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--green-deep);
}

.mobile-toggle .icon-close {
  display: none;
}

/* ==========================================================================
   2. H1 HEADLINE BAR (Acima do Banner)
   ========================================================================== */
.headline-section {
  background: var(--green-light);
  border-bottom: 1px solid var(--border-green);
  padding: 26px 0 22px 0;
  text-align: center;
}

.headline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-200);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.headline-badge i {
  color: var(--green-vibrant);
}

.main-h1-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin: 0 auto;
}

.main-h1-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  margin-top: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   3. FULL-WIDTH HERO BANNER (De Fora a Fora / Edge to Edge)
   ========================================================================== */
.hero-banner-section-fullwidth {
  position: relative;
  width: 100%;
  background: #f0fdf4;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-green);
  overflow: hidden;
}

.banner-image-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0fdf4;
  overflow: hidden;
}

.hero-full-banner-img {
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 460px;
  max-height: 720px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Barra Inferior de Benefícios (Toda a Extensão / Full-width) */
.hero-bottom-bar-fullwidth {
  width: 100%;
  background: linear-gradient(90deg, #092c21 0%, var(--green-deep) 50%, #092c21 100%);
  color: var(--white);
  padding: 22px 30px;
  border-top: 1px solid rgba(110, 231, 183, 0.25);
  z-index: 10;
}

.benefits-grid-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(110, 231, 183, 0.15);
  border: 1px solid var(--green-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-mint);
  flex-shrink: 0;
}

.benefit-texts h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.benefit-texts p {
  font-size: 0.8rem;
  color: var(--green-200);
  margin-top: 2px;
}

/* Seção de Conversão Abaixo do Banner */
.hero-action-strip {
  background: #ffffff;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.hero-cta-action-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--green-deep) 0%, #15803d 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #0b2e22 0%, var(--green-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 61, 46, 0.38);
  color: var(--white);
}

/* Botões de WhatsApp do Hero, Serviços, Galeria, Diferenciais e Landing Pages */
.btn-hero-whatsapp,
.hero-cta-btn,
.services-cta-btn,
.btn-cta-whatsapp,
.why-cta-btn,
.about-action-btn,
.btn-landing-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-hero-whatsapp i,
.hero-cta-btn i,
.services-cta-btn i,
.btn-cta-whatsapp i,
.why-cta-btn i,
.about-action-btn i,
.btn-landing-whatsapp i {
  color: #ffffff !important;
  font-size: 1.2rem;
}

.btn-hero-whatsapp:hover,
.hero-cta-btn:hover,
.services-cta-btn:hover,
.btn-cta-whatsapp:hover,
.why-cta-btn:hover,
.about-action-btn:hover,
.btn-landing-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #ffffff !important;
}

/* Containers dos Botões de Conversão */
.hero-cta-action-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services-footer-cta,
.why-footer-cta {
  text-align: center;
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   5. SEÇÃO DE SERVIÇOS PRESTADOS EM JAÚ (Cards / Carrossel em Grid)
   ========================================================================== */
.services-section {
  background: #f4fbf7;
  padding: 80px 0 90px 0;
  border-bottom: 1px solid var(--border-green);
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 50px auto;
}

.services-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-200);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.services-badge-tag i {
  color: var(--green-vibrant);
}

.services-h2-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.services-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

/* Container do Carrossel e Grid */
.services-carousel-wrapper {
  position: relative;
  width: 100%;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card de Serviço Individual */
.service-card-item {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-green);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  scroll-margin-top: 105px;
}

.service-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-vibrant);
}

/* Imagem e Top Badge do Card */
.service-card-image-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--green-deep);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-item:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 61, 46, 0.92);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(110, 231, 183, 0.4);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-badge i {
  color: var(--green-mint);
}

/* Conteúdo do Card */
.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.service-card-title a:hover {
  color: var(--green-vibrant);
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-desc strong {
  color: var(--green-deep);
}

/* Link de Ação do Card */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-deep);
  transition: var(--transition);
  margin-top: auto;
}

.service-card-link i {
  color: var(--green-vibrant);
  transition: transform 0.2s ease;
}

.service-card-item:hover .service-card-link {
  color: var(--green-vibrant);
}

.service-card-item:hover .service-card-link i {
  transform: translateX(4px);
}

/* Botões de Navegação do Carrossel (Desktop e Tablet) */
.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  border: 2px solid var(--green-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(15, 61, 46, 0.3);
  transition: var(--transition);
}

.carousel-nav-btn:hover {
  background: var(--green-vibrant);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.45);
}

.carousel-btn-prev {
  left: -24px;
}

.carousel-btn-next {
  right: -24px;
}

/* Footer CTA da Seção */
.services-footer-cta {
  margin-top: 50px;
  text-align: center;
}

.btn-services-cta {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-vibrant) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.btn-services-cta:hover {
  background: linear-gradient(135deg, #0b2e22 0%, var(--green-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 61, 46, 0.45);
  color: var(--white);
}

/* ==========================================================================
   6. TRAÇO DIVISOR EM VERDE GRADIENTE
   ========================================================================== */
.green-gradient-divider {
  width: 100%;
  max-width: 1100px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(22, 163, 74, 0) 0%, rgba(22, 163, 74, 0.4) 20%, #16a34a 50%, rgba(22, 163, 74, 0.4) 80%, rgba(22, 163, 74, 0) 100%);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   6.1 SEÇÃO QUEM ATENDEMOS - EMPRESAS & SEGMENTOS EM JAÚ
   ========================================================================== */
.segments-section {
  background: #f8fafc;
  padding: 85px 0 95px 0;
  position: relative;
}

.segments-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.segments-header-text {
  max-width: 820px;
}

.segments-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-200);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.segments-badge-tag i {
  color: var(--green-vibrant);
}

.segments-h2-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.segments-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.6;
}

.segments-nav-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
}

.segment-arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-green);
  background: var(--white);
  color: var(--green-deep);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.segment-arrow-btn:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.segments-carousel-outer {
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
  margin-bottom: 24px;
}

.segments-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Individual de Segmento */
.segment-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(22, 163, 74, 0.16);
  border-top: 4px solid var(--green-vibrant);
  box-shadow: 0 4px 20px rgba(15, 61, 46, 0.06);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  scroll-margin-top: 105px;
}

.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(15, 61, 46, 0.12);
  border-color: var(--green-vibrant);
}

.segment-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.segment-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f5e9;
  color: var(--green-vibrant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.segment-card:hover .segment-icon-box {
  background: var(--green-vibrant);
  color: var(--white);
  transform: scale(1.05);
}

.segment-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.3;
}

.segment-card-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.segment-card-title a:hover {
  color: var(--green-vibrant);
}

.segment-card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.segment-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-vibrant);
  margin-top: auto;
  transition: var(--transition);
}

.segment-card-btn i {
  transition: transform 0.2s ease;
}

.segment-card-btn:hover {
  color: var(--green-deep);
}

.segment-card-btn:hover i {
  transform: translateX(4px);
}

.segments-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.segment-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--green-200);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.segment-dot.active {
  width: 28px;
  background: var(--green-deep);
}

@media (max-width: 992px) {
  .segment-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .segments-h2-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .segment-card {
    flex: 0 0 100%;
    padding: 24px 20px;
  }
  .segments-h2-title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   7. SEÇÃO DE CARROSSEL DE FOTOS REAIS (ANTES E DEPOIS EM JAÚ)
   ========================================================================== */
.photos-gallery-section {
  background: #ffffff;
  padding: 85px 0 95px 0;
  position: relative;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 45px auto;
}

.gallery-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid var(--green-200);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.gallery-badge-tag i {
  color: var(--green-vibrant);
}

.gallery-h2-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.gallery-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto;
}

/* Carrossel de Fotos Grandes (Mais Largo / Panorâmico) */
.gallery-carousel-outer {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(15, 61, 46, 0.12);
  border: 2px solid var(--green-200);
  background: #ffffff;
}

.gallery-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.gallery-slide-item {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.gallery-image-box {
  position: relative;
  width: 100%;
  min-height: 440px;
  max-height: 640px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0;
}

.gallery-large-img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.gallery-slide-info {
  padding: 22px 30px;
  background: linear-gradient(180deg, #ffffff 0%, var(--green-light) 100%);
  border-top: 1px solid var(--border-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-slide-title-area h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-deep);
}

.gallery-slide-title-area p {
  font-size: 0.92rem;
  color: var(--body-text);
  margin-top: 4px;
}

.gallery-badge-real {
  background: var(--green-deep);
  color: var(--green-mint);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--green-vibrant);
}

/* Setas de Navegação do Carrossel */
.gallery-arrow-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 61, 46, 0.95);
  color: #ffffff;
  border: 2px solid var(--green-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  font-size: 1.2rem;
  transition: var(--transition);
}

.gallery-arrow-btn:hover {
  background: var(--green-vibrant);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.5);
}

.gallery-arrow-prev {
  left: -20px;
}

.gallery-arrow-next {
  right: -20px;
}

/* Indicadores / Paginação (Bolinhas) */
.gallery-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-200);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--green-300);
}

.gallery-dot.active {
  background: var(--green-vibrant);
  width: 32px;
  border-radius: 12px;
}

/* ==========================================================================
   8. SEÇÃO POR QUE ESCOLHER A CASA LIVRE (Fundo Verde com Cards Translúcidos)
   ========================================================================== */
.why-choose-section {
  position: relative;
  background-color: #15803d;
  background-image: 
    url('../assets/furniture-pattern.svg'),
    linear-gradient(135deg, #15803d 0%, #16a34a 45%, #0f3d2e 100%);
  background-size: 360px 360px, cover;
  background-repeat: repeat, no-repeat;
  padding: 95px 0 105px 0;
  overflow: hidden;
  color: var(--white);
}

/* Grandes Silhuetas Flutuantes de Mobiliário em Marca d'Água */
.why-decor-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  color: #ffffff;
  z-index: 1;
  transition: transform 0.4s ease;
}

.why-decor-1 {
  top: 30px;
  left: 40px;
  font-size: 9rem;
  transform: rotate(-12deg);
}

.why-decor-2 {
  top: 50px;
  right: 60px;
  font-size: 8.5rem;
  transform: rotate(18deg);
}

.why-decor-3 {
  bottom: 60px;
  left: 30px;
  font-size: 8.5rem;
  transform: rotate(15deg);
}

.why-decor-4 {
  bottom: 40px;
  right: 40px;
  font-size: 9.5rem;
  transform: rotate(-20deg);
}

.why-decor-5 {
  top: 45%;
  left: 2%;
  font-size: 7.5rem;
  transform: translateY(-50%) rotate(8deg);
}

.why-decor-6 {
  top: 48%;
  right: 2%;
  font-size: 7.5rem;
  transform: translateY(-50%) rotate(-10deg);
}

.why-decor-7 {
  top: 15%;
  left: 45%;
  font-size: 6rem;
  transform: rotate(5deg);
  opacity: 0.07;
}

.why-decor-8 {
  bottom: 12%;
  left: 48%;
  font-size: 6.5rem;
  transform: rotate(-8deg);
  opacity: 0.07;
}

.why-header {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 55px auto;
  position: relative;
  z-index: 2;
}

.why-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-badge-tag i {
  color: #a7f3d0;
}

.why-h2-title {
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.why-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

/* Grid de Cards Translúcidos / Glassmorphism */
.why-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.why-glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  padding: 38px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.why-glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

/* Bolha Branca do Ícone */
.why-icon-bubble {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease;
}

.why-icon-bubble i {
  font-size: 1.85rem;
  color: var(--green-vibrant);
}

.why-glass-card:hover .why-icon-bubble {
  transform: scale(1.1) rotate(5deg);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.why-card-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

/* CTA Footer da Seção Por Que Escolher */
.why-footer-cta {
  margin-top: 55px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-why-whatsapp {
  background: #ffffff;
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.btn-why-whatsapp:hover {
  background: var(--whatsapp-green);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.btn-why-whatsapp i {
  color: var(--whatsapp-green);
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.btn-why-whatsapp:hover i {
  color: #ffffff;
}

/* ==========================================================================
   9. SEÇÃO QUEM SOMOS E POR QUE HIGIENIZAMOS ESTOFADOS EM JAÚ
   ========================================================================== */
.about-story-section {
  background: #ffffff;
  padding: 95px 0 105px 0;
  border-bottom: 1px solid var(--border-green);
  position: relative;
}

.about-header {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 60px auto;
}

.about-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid var(--green-200);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.about-badge-tag i {
  color: var(--green-vibrant);
}

.about-h2-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

/* Grid de Conteúdo (Imagem Fixa/Sticky à Esquerda + Textos Rolando à Direita) */
.about-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
  align-items: flex-start;
  position: relative;
}

/* Coluna da Esquerda Fixa com Efeito Sticky */
.about-image-sticky-col {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 10;
  width: 100%;
}

/* Card de Foto com Badges Flutuantes */
.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 61, 46, 0.18);
  border: 3px solid var(--green-200);
  background: var(--green-deep);
}

.about-main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Badge Superior Direito da Imagem */
.about-floating-badge-top {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15, 61, 46, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(110, 231, 183, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.about-floating-badge-top i {
  color: var(--green-mint);
}

/* Badge Inferior Esquerdo da Imagem */
.about-floating-badge-bottom {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  background: rgba(15, 61, 46, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110, 231, 183, 0.35);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.about-bottom-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-vibrant);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-bottom-texts h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.about-bottom-texts p {
  font-size: 0.8rem;
  color: var(--green-200);
  margin-top: 2px;
}

/* Coluna da Direita: Conteúdo Textual Estruturado */
.about-content-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Box de Citação / Destaque Superior */
.about-quote-box {
  background: var(--green-light);
  border-left: 5px solid var(--green-vibrant);
  border-radius: 0 14px 14px 0;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-quote-box i {
  color: var(--green-vibrant);
  font-size: 1.5rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-quote-box p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.45;
}

/* Parágrafos de História e Missão */
.about-paragraph {
  font-size: 0.98rem;
  color: var(--body-text);
  line-height: 1.7;
}

.about-paragraph strong {
  color: var(--green-deep);
}

/* Box de Destaque Central */
.about-highlight-box {
  background: #f0fdf4;
  border: 1px solid var(--border-green);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}

.about-highlight-box p {
  font-size: 0.98rem;
  color: var(--green-deep);
  line-height: 1.65;
  font-weight: 500;
}

.about-highlight-box strong {
  font-weight: 800;
  color: #092c21;
}

/* Linha Divisória Sutil */
.about-content-divider {
  width: 100%;
  height: 1px;
  background: var(--border-green);
  margin: 10px 0;
}

/* Subseção de Diferencial */
.about-diff-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.about-diff-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-deep);
}

.about-diff-title i {
  color: var(--green-vibrant);
  font-size: 1.35rem;
}

/* Grid 2x2 de Diferenciais Específicos */
.about-diff-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.about-feature-card {
  background: #ffffff;
  border: 1px solid var(--border-green);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(15, 61, 46, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.about-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-vibrant);
  box-shadow: 0 10px 24px rgba(15, 61, 46, 0.12);
}

.about-feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-deep);
  color: var(--green-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-feature-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.3;
}

.about-feature-desc {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.55;
}

.about-feature-desc strong {
  color: var(--green-deep);
}

/* Botão de Ação CTA da Seção */
.about-action-btn-wrap {
  margin-top: 14px;
}

.btn-about-action {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-vibrant) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.btn-about-action:hover {
  background: linear-gradient(135deg, #0b2e22 0%, var(--green-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 61, 46, 0.4);
  color: #ffffff;
}

.btn-about-action i {
  font-size: 1.25rem;
}

/* ==========================================================================
   9.1 SEÇÃO CIDADES & REGIÕES ATENDIDAS
   ========================================================================== */
.cities-section {
  background: #ffffff;
  padding: 85px 0 95px 0;
  position: relative;
  scroll-margin-top: 105px;
}

.cities-container-card {
  background: #ffffff;
  border: 1px solid var(--border-green);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(15, 61, 46, 0.08);
  padding: 36px 42px;
  position: relative;
}

.cities-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--green-100);
  flex-wrap: wrap;
  gap: 14px;
}

.cities-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cities-main-icon {
  font-size: 1.6rem;
  color: var(--green-vibrant);
}

.cities-h2-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.25;
}

.cities-region-tag {
  background: var(--green-light);
  color: var(--green-deep);
  border: 1px solid var(--green-200);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 18px;
  margin: 30px 0;
}

.city-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid rgba(22, 163, 74, 0.14);
  transition: var(--transition);
  cursor: pointer;
}

.city-card-item:hover {
  background: var(--white);
  border-color: var(--green-vibrant);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.14);
}

.city-pin-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e8f5e9;
  color: var(--green-vibrant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.city-card-item:hover .city-pin-icon {
  background: var(--green-vibrant);
  color: var(--white);
}

.city-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}

.cities-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--green-100);
  flex-wrap: wrap;
  gap: 16px;
}

.cities-footer-text {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
}

.btn-cities-whatsapp {
  background: var(--green-deep);
  color: var(--white);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(15, 61, 46, 0.2);
}

.btn-cities-whatsapp i {
  color: var(--whatsapp-green);
  font-size: 1.1rem;
}

.btn-cities-whatsapp:hover {
  background: var(--green-vibrant);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.btn-cities-whatsapp:hover i {
  color: var(--white);
}

@media (max-width: 1100px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cities-container-card {
    padding: 24px 20px;
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
  }
  .cities-footer-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .btn-cities-whatsapp {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10. BOTÃO FLUTUANTE DO WHATSAPP (CELULAR) & RESPONSIVIDADE
   ========================================================================== */

/* ==========================================================================
   10. GRUPO DE BOTÕES FLUTUANTES (WhatsApp, Telefone e E-mail)
   ========================================================================== */
.floating-contact-group {
  position: fixed;
  bottom: 26px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  color: #ffffff;
}

/* 1. Botão WhatsApp com Efeito Radar/Pulso Hiper Vibrante */
.float-btn-whatsapp {
  background-color: var(--whatsapp-green);
  font-size: 28px;
  position: relative;
  animation: pulseWhatsAppHyper 1.6s infinite ease-in-out;
  z-index: 1;
}

/* Onda Radar 1 (Anel Interno Expansivo) */
.float-btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.65);
  z-index: -1;
  animation: radarWave 1.6s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

/* Onda Radar 2 (Anel Externo em Cascata) */
.float-btn-whatsapp::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.75);
  z-index: -2;
  animation: radarWaveOuter 1.6s infinite cubic-bezier(0.2, 0.8, 0.2, 1) 0.35s;
  pointer-events: none;
}

.float-btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  animation-play-state: paused;
  transform: scale(1.18) !important;
  box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.5), 0 12px 28px rgba(37, 211, 102, 0.55);
}

/* Animação do Botão Principal (Batimento & Brilho) */
@keyframes pulseWhatsAppHyper {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.85), 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  30% {
    transform: scale(1.10);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.45), 0 8px 22px rgba(37, 211, 102, 0.45);
  }
  60% {
    transform: scale(1);
    box-shadow: 0 0 0 24px rgba(37, 211, 102, 0), 0 4px 14px rgba(0, 0, 0, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 14px rgba(0, 0, 0, 0.22);
  }
}

/* Animação da Onda 1 (Preenchimento Translúcido Irradiando) */
@keyframes radarWave {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

/* Animação da Onda 2 (Borda em Expansão) */
@keyframes radarWaveOuter {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.0);
    opacity: 0;
  }
}

/* 2. Botão Telefone Grafite */
.float-btn-phone {
  background-color: #54626c;
  font-size: 21px;
}

.float-btn-phone:hover {
  background-color: #434f57;
}

/* 3. Botão E-mail Vermelho */
.float-btn-email {
  background-color: #ea4335;
  font-size: 20px;
}

.float-btn-email:hover {
  background-color: #d33426;
}

/* Responsividade Mobile para o Grupo Flutuante */
@media (max-width: 640px) {
  .floating-contact-group {
    bottom: 18px;
    right: 14px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn-whatsapp {
    font-size: 25px;
  }

  .float-btn-phone {
    font-size: 19px;
  }

  .float-btn-email {
    font-size: 18px;
  }
}

/* --- Breakpoint: 1024px (Laptops Pequenos & Tablets) --- */
@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefits-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .main-h1-title {
    font-size: 1.85rem;
  }

  .about-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* --- Breakpoint: 900px (Tablets Retrato) --- */
@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 24px;
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .mobile-toggle.active .icon-open {
    display: none;
  }

  .mobile-toggle.active .icon-close {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }

  .mega-dropdown {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--border-green);
    margin-top: 10px;
    display: none;
  }

  .mega-dropdown.show-mobile {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-cta {
    width: 100%;
  }

  .btn-header-cta {
    width: 100%;
    justify-content: center;
  }

  .about-grid-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-image-sticky-col {
    position: static;
  }

  .about-main-img {
    height: 380px;
  }
}

/* --- Breakpoint: 768px (Smartphones Médios e Grandes) --- */
@media (max-width: 768px) {
  .services-section,
  .photos-gallery-section,
  .why-choose-section,
  .about-story-section,
  .segments-section,
  .cities-section {
    padding: 55px 0 65px 0;
  }

  .main-h1-title {
    font-size: 1.55rem;
  }

  .main-h1-subtitle {
    font-size: 0.95rem;
  }

  .services-h2-title,
  .gallery-h2-title,
  .why-h2-title,
  .about-h2-title,
  .segments-h2-title,
  .cities-h2-title {
    font-size: 1.75rem;
  }

  .services-subtitle,
  .gallery-subtitle,
  .why-subtitle,
  .about-subtitle,
  .segments-subtitle {
    font-size: 0.95rem;
  }

  .hero-full-banner-img {
    min-height: 240px;
    max-height: 380px;
  }

  .hero-bottom-bar-fullwidth {
    padding: 18px 20px;
  }

  .benefits-grid-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-cta-action-bar {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-hero-primary, .btn-hero-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.98rem;
  }

  /* Grid de Serviços (#limpeza-sofas) no Mobile */
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-item {
    scroll-margin-top: 90px;
  }

  .service-card-image-wrap {
    height: 190px;
  }

  .service-card-body {
    padding: 18px 20px;
  }

  .service-card-title {
    font-size: 1.15rem;
  }

  .service-card-desc {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  /* Galeria Antes e Depois no Mobile */
  .gallery-image-box {
    min-height: 240px;
    max-height: 360px;
  }

  .gallery-slide-info {
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gallery-slide-title-area h3 {
    font-size: 1.15rem;
  }

  .gallery-slide-title-area p {
    font-size: 0.86rem;
  }

  .gallery-arrow-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .gallery-arrow-prev {
    left: 8px;
  }

  .gallery-arrow-next {
    right: 8px;
  }

  /* Seção Por Que Escolher no Mobile */
  .why-grid-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-glass-card {
    padding: 26px 20px;
  }

  .why-icon-bubble {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .why-icon-bubble i {
    font-size: 1.5rem;
  }

  .why-card-title {
    font-size: 1.15rem;
  }

  .why-card-desc {
    font-size: 0.88rem;
  }

  .why-decor-shape {
    display: none;
  }

  /* Quem Somos no Mobile */
  .about-main-img {
    height: 300px;
  }

  .about-floating-badge-bottom {
    padding: 10px 14px;
    gap: 10px;
  }

  .about-bottom-icon-box {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .about-bottom-texts h4 {
    font-size: 0.88rem;
  }

  .about-bottom-texts p {
    font-size: 0.75rem;
  }

  .btn-about-action,
  .btn-services-cta,
  .btn-why-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 0.95rem;
  }
}

/* --- Breakpoint: 480px (Smartphones Pequenos e Telas Estreitas) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .main-h1-title {
    font-size: 1.35rem;
  }

  .headline-badge,
  .services-badge-tag,
  .gallery-badge-tag,
  .why-badge-tag,
  .about-badge-tag,
  .segments-badge-tag {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-diff-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-arrow-btn {
    display: none;
  }

  .segments-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================================================
   11. PÁGINA DEDICADA: LIMPEZA DE SOFÁS (limpeza-sofas.html)
   ========================================================================== */

/* Landing Hero (Acima da Dobra - Modelo Print 1) */
.landing-hero-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 60%, #e8f5e9 100%);
  padding: 65px 0 75px 0;
  border-bottom: 1px solid var(--border-green);
  position: relative;
  overflow: hidden;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-200);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.landing-hero-badge i {
  color: var(--green-vibrant);
}

.landing-h1-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  text-transform: none;
}

.landing-hero-subtitle {
  font-size: 1.08rem;
  color: var(--body-text);
  line-height: 1.65;
  margin-bottom: 24px;
}

.landing-hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin-bottom: 28px;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-deep);
}

.hero-highlight-item i {
  color: var(--green-vibrant);
  font-size: 1.1rem;
}

.landing-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-landing-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-landing-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-landing-secondary {
  background: var(--white);
  color: var(--green-deep);
  border: 2px solid var(--green-200);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-landing-secondary:hover {
  background: var(--green-deep);
  color: #ffffff;
  border-color: var(--green-deep);
}

.google-rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--green-100);
}

.rating-stars {
  color: #f59e0b;
  display: flex;
  gap: 3px;
  font-size: 1.05rem;
}

.rating-text {
  font-size: 0.88rem;
  color: #475569;
}

/* Card de Imagem Hero */
.landing-hero-card-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 61, 46, 0.16);
  border: 3px solid var(--white);
  background: var(--green-deep);
}

.landing-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-image-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 61, 46, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(110, 231, 183, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-image-badge-top i {
  color: var(--green-mint);
}

.hero-image-card-bottom {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--green-200);
}

.hero-card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-vibrant);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-card-texts h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.25;
}

.hero-card-texts p {
  font-size: 0.8rem;
  color: var(--body-text);
  margin-top: 2px;
}

/* Seção Principal de Métodos (Alternada no Desktop, Ordenada no Mobile) */
.method-section {
  background: #ffffff;
  padding: 85px 0 95px 0;
  position: relative;
}

.method-main-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.method-h2-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.method-main-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.method-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* Linha de Passo (Grid 2 Colunas no Desktop) */
.method-step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.text-right-row .method-step-image {
  order: 1;
}

.text-right-row .method-step-text {
  order: 2;
}

.step-number-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-deep);
  border: 1px solid var(--green-200);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.method-step-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.3;
  margin-bottom: 18px;
}

.method-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.method-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--body-text);
  line-height: 1.55;
}

.method-bullet-list li i {
  color: var(--green-vibrant);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.step-image-wrapper {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 61, 46, 0.1);
  border: 2px solid var(--border-green);
  background: var(--white);
}

.step-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.step-image-wrapper:hover .step-img {
  transform: scale(1.03);
}

.method-footer-cta {
  margin-top: 60px;
  text-align: center;
}

/* --- Responsividade da Landing Page (`limpeza-sofas.html`) --- */
@media (max-width: 1024px) {
  .landing-h1-title {
    font-size: 2.1rem;
  }
  .method-step-row {
    gap: 35px;
  }
  .step-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .landing-hero-section {
    padding: 45px 0 55px 0;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .landing-h1-title {
    font-size: 1.7rem;
  }

  .landing-hero-subtitle {
    font-size: 0.95rem;
  }

  .landing-hero-highlights-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .landing-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-landing-whatsapp,
  .btn-landing-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .landing-hero-img {
    height: 280px;
  }

  .method-h2-title {
    font-size: 1.65rem;
  }

  /* ORDENAÇÃO ESTRITA NO CELULAR: 1. TÍTULO/TEXTO BULLETS -> 2. IMAGEM */
  .method-step-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .method-step-text {
    order: 1 !important; /* Sempre o texto/título primeiro no mobile */
    width: 100%;
  }

  .method-step-image {
    order: 2 !important; /* Sempre a imagem abaixo do texto no mobile */
    width: 100%;
  }

  .method-step-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .method-bullet-list li {
    font-size: 0.9rem;
    gap: 10px;
  }

  .step-img {
    height: 250px;
  }

  .method-steps-wrapper {
    gap: 45px;
  }
}

/* ==========================================================================
   12. NOVO RODAPÉ DE 4 COLUNAS (Estilo dedetizacaobauru.com.br)
   ========================================================================== */
.site-footer {
  background-color: #06241a;
  color: #ffffff;
  padding: 70px 0 30px 0;
  border-top: 4px solid var(--green-vibrant);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.15fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--green-vibrant);
  border-radius: 2px;
}

/* Coluna Marca */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-bio-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.socials-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
  background: var(--green-vibrant);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

/* Lista de Contato */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(22, 163, 74, 0.15);
  color: var(--green-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--green-mint);
}

/* Listas de Links */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links-list li a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links-list li a i {
  font-size: 0.72rem;
  color: var(--green-vibrant);
  transition: transform 0.2s ease;
}

.footer-links-list li a:hover {
  color: var(--green-mint);
  transform: translateX(4px);
}

.footer-links-list li a:hover i {
  color: var(--green-mint);
}

/* Barra Inferior */
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.bottom-legal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-mint);
}

/* Responsividade do Rodapé */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 50px 0 25px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


