/* =============================================
   HIDROTEC DESENTUPIMENTO — CSS Principal
   Site: hidrotecdesentupimento.com.br
   Design: Webformas
   ============================================= */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* === Variáveis CSS === */
:root {
  --green-primary:  #1aa045;
  --green-dark:     #0c3d1e;
  --green-hover:    #157a38;
  --green-light:    #e8f5e9;
  --orange-cta:     #f97316;
  --orange-hover:   #ea6c0e;
  --text-dark:      #1e293b;
  --text-gray:      #64748b;
  --text-light:     #94a3b8;
  --bg-light:       #f8fafc;
  --bg-section:     #f1f5f9;
  --white:          #ffffff;
  --border:         #e2e8f0;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow:         0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:      0 10px 30px rgba(0,0,0,.12);
  --radius:         8px;
  --radius-lg:      16px;
  --radius-full:    999px;
  --transition:     200ms ease;
  --font-body:      'Inter', sans-serif;
  --font-heading:   'Poppins', sans-serif;
  --max-width:      1200px;
  --header-h:       80px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === Utilitários === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === Tipografia === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-gray); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-dark); font-weight: 600; }

/* === Botões === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-hover); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-cta {
  background: var(--orange-cta);
  color: var(--white);
}
.btn-cta:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(249,115,22,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--green-dark); }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* === TOP BAR === */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left span {
  font-weight: 600;
  letter-spacing: .02em;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}
.top-bar-right a:hover { color: var(--white); }
.top-bar-right svg { width: 16px; height: 16px; }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-weight: 500;
  font-size: .9375rem;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--green-primary);
  background: var(--green-light);
}
.nav-menu > li > a svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-menu > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-menu > li:hover .nav-dropdown,
.nav-menu > li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: .9375rem;
  color: var(--text-dark);
  transition: all var(--transition);
}
.nav-dropdown li a:hover {
  background: var(--green-light);
  color: var(--green-primary);
}
.nav-dropdown li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.nav-dropdown li:last-child a { border-radius: 0 0 var(--radius) var(--radius); }
.nav-dropdown li a svg { width: 16px; height: 16px; color: var(--green-primary); }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile > ul { padding: 0 24px; }
.nav-mobile > ul > li { border-bottom: 1px solid var(--border); }
.nav-mobile > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-dark);
}
.nav-mobile .mobile-sub { padding: 0 0 8px 16px; }
.nav-mobile .mobile-sub a {
  display: block;
  padding: 8px 0;
  color: var(--text-gray);
  font-size: .9375rem;
}
.nav-mobile .btn { margin: 16px 24px 0; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/desentupidora-sorocaba-atendimento-24-horas-1.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,61,30,.88) 40%, rgba(12,61,30,.55) 100%);
}
.hero .container { width: 100%; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,160,69,.25);
  border: 1px solid rgba(26,160,69,.5);
  color: #6ee08a;
  font-size: .875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title .accent { color: #6ee08a; }
.hero-lead {
  color: rgba(255,255,255,.85);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 16px;
  width: 680px;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 36px;
  width: 680px;
}
.hero-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .9375rem;
}
.hero-benefit svg { width: 18px; height: 18px; color: #6ee08a; flex-shrink: 0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  border-top: 3px solid var(--green-primary);
  box-shadow: var(--shadow);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 24px; height: 24px; color: var(--green-primary); }
.trust-item h4 { font-size: 1rem; margin-bottom: 2px; }
.trust-item p { font-size: .875rem; margin: 0; }

/* === SOBRE === */
.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.0625rem; max-width: 600px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .section-desc { max-width: 100%; }
.about-list { margin-top: 24px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
  color: var(--text-gray);
}
.about-list li:last-child { border-bottom: none; }
.about-list svg { width: 20px; height: 20px; color: var(--green-primary); flex-shrink: 0; margin-top: 2px; }
.about-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.about-img { position: relative; }
.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green-primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge strong { font-size: 2rem; font-family: var(--font-heading); display: block; line-height: 1; }
.about-badge span { font-size: .8125rem; opacity: .9; }

/* === SERVIÇOS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--green-primary); }
.service-card-img { position: relative; height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,61,30,.7) 0%, transparent 60%);
}
.service-card-body { padding: 20px; }
.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.service-card-icon svg { width: 22px; height: 22px; color: var(--green-primary); }
.service-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.service-card p { font-size: .9375rem; margin: 0; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--green-primary);
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 10px; }
.service-card-link svg { width: 16px; height: 16px; }

/* === CLIENTES === */
.clients-section { background: var(--bg-section); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}
.client-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--transition);
}
.client-item:hover { box-shadow: var(--shadow); }
.client-item img { max-height: 60px; width: auto; object-fit: contain; filter: grayscale(30%); transition: filter var(--transition); }
.client-item:hover img { filter: grayscale(0); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a5e30 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.8); margin: 0; font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* === FOOTER === */
.site-footer {
  background: #0b1e0e;
  color: rgba(255,255,255,.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 52px; margin-bottom: 16px; filter: brightness(1.2); }
.footer-brand p { font-size: .9375rem; line-height: 1.7; color:#fff }
.footer-widget h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-primary);
  display: inline-block;
}
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a {
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-widget ul li a:hover { color: var(--white); }
.footer-widget ul li a svg { width: 16px; height: 16px; color: var(--green-primary); flex-shrink: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
}
.footer-contact li svg { width: 18px; height: 18px; color: var(--green-primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact li a { color: rgba(255,255,255,.7); }
.footer-contact li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.footer-bottom p { margin: 0; font-size: .875rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom img { height: 50px; transition: opacity var(--transition); }
.footer-bottom img:hover { opacity: 1; }

/* === INNER HEADER (páginas internas) === */
.inner-hero {
  background: linear-gradient(105deg, rgba(12,61,30,.90) 0%, rgba(12,61,30,.70) 100%),
              url('../images/desentupidora-sorocaba-atendimento-24-horas-1.jpg') center/cover;
  padding: 80px 0 60px;
}
.inner-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb li { font-size: .875rem; color: rgba(255,255,255,.7); }
.breadcrumb li.active { color: #6ee08a; }
.breadcrumb li a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb li a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* === LAYOUT INTERNO 2 colunas === */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}
.service-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.service-content h1 { margin-bottom: 24px; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.service-content h2 {
  font-size: 1.375rem;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.service-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}
.service-grid-2 img { border-radius: var(--radius); width: 100%; }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-widget-head {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-widget-head svg { width: 20px; height: 20px; }
.sidebar-widget-body { padding: 4px 0; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: .9375rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.sidebar-nav li:last-child a { border-bottom: none; }
.sidebar-nav li a:hover,
.sidebar-nav li.active a {
  background: var(--green-light);
  color: var(--green-primary);
}
.sidebar-nav li a svg { width: 16px; height: 16px; color: var(--green-primary); flex-shrink: 0; }
.sidebar-contact { padding: 16px 20px; }
.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9375rem;
  color: var(--text-gray);
}
.sidebar-contact-item:last-child { margin-bottom: 0; }
.sidebar-contact-item svg { width: 18px; height: 18px; color: var(--green-primary); flex-shrink: 0; margin-top: 2px; }
.sidebar-contact-item a { color: var(--text-gray); }
.sidebar-cta {
  background: var(--green-primary);
  padding: 24px 20px;
  text-align: center;
}
.sidebar-cta p { color: rgba(255,255,255,.9); font-size: .875rem; margin-bottom: 14px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* === PÁGINA DE CONTATO === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-form-col h2 { margin-bottom: 8px; }
.contact-form-col > p { margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-weight: 600; font-size: .9375rem; color: var(--text-dark); }
.form-field label span { color: var(--orange-cta); }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(26,160,69,.12); }
textarea.form-input { resize: vertical; min-height: 140px; }
.contact-form .btn { align-self: flex-start; }
.form-message { font-size: .9375rem; padding: 12px 16px; border-radius: var(--radius); display: none; }
.form-message.form-success { display: block; background: var(--green-light); color: var(--green-dark); border: 1px solid var(--green-primary); }
.form-message.form-error { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.contact-info-card h3 { margin-bottom: 8px; }
.contact-info-card > p { margin-bottom: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  color: var(--green-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-list strong { display: block; font-size: .875rem; color: var(--text-gray); font-weight: 500; margin-bottom: 2px; }
.contact-info-list a, .contact-info-list span { font-weight: 600; color: var(--text-dark); font-size: .9375rem; }
.contact-info-list a:hover { color: var(--green-primary); }

.contact-services-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.contact-services-card h4 { color: var(--white); margin-bottom: 16px; }
.contact-services-card .sidebar-nav li a { color: rgba(255,255,255,.85); }
.contact-services-card .sidebar-nav li a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.contact-services-card .sidebar-nav li a svg { color: #6ee08a; }

/* === PÁGINA DE OBRIGADO === */
.thankyou-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--green-light);
  color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-icon svg { width: 44px; height: 44px; }
.thankyou-wrap h1 { margin-bottom: 16px; }
.thankyou-wrap p { font-size: 1.0625rem; margin-bottom: 12px; }
.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  border: none;
  z-index: 50;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--green-hover); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 50;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* === ANIMAÇÕES === */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVO === */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { order: -1; }
  .about-img img { height: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .section-pad { padding: 56px 0; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .service-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding: 60px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 16px; }
  .top-bar-left { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form .btn { width: 100%; justify-content: center; }
  .hero-lead { width: 100%; }
  .hero-benefits { width: 100%; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-lead { width: 100%; }
  .hero-benefits { width: 100%; }
}
}
