/* =============================================
   ECO CLEAN – STYLE.CSS
   Empresa de Limpeza Ecológica
============================================== */

/* ── VARIÁVEIS ─────────────────────────────── */
:root {
  --primaria: #02747c;
  --primaria-light: #04969f;
  --primaria-dark: #015a61;
  --primaria-xlight: #e6f5f6;
  --secundaria: #a1b1b9;
  --terciaria: #ffffff;
  --quaternaria: #865943;
  --verde-acento: #57b894;
  --dark: #1e2a2c;
  --dark-2: #2d3f42;
  --text: #4a5568;
  --text-light: #718096;
  --bg-light: #f7fafa;
  --border: #d6e8ea;
  --sombra: 0 4px 24px rgba(2, 116, 124, 0.12);
  --sombra-hover: 0 8px 40px rgba(2, 116, 124, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

a {
  color: var(--primaria);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primaria-dark);
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.section-padding {
  padding: 90px 0;
}
.bg-light-eco {
  background: var(--bg-light);
}
.bg-primary-eco {
  background: var(--primaria);
}

/* ── PLACEHOLDERS DE IMAGEM ─────────────────── */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #d0eff2 0%, #b8e4e8 100%);
  border: 2px dashed var(--primaria-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaria-dark);
  position: relative;
  overflow: hidden;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 20px;
  z-index: 1;
}

.placeholder-inner i {
  font-size: 2.5rem;
  opacity: 0.5;
}
.placeholder-inner strong {
  font-size: 0.9rem;
  font-weight: 700;
}
.placeholder-inner span {
  font-size: 0.8rem;
}
.placeholder-inner small {
  font-size: 0.72rem;
  opacity: 0.8;
  color: var(--dark-2);
}
.placeholder-inner b {
  color: var(--primaria-dark);
}

.img-placeholder-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--primaria-xlight);
  border: 1.5px dashed var(--primaria-light);
  border-radius: var(--radius);
  color: var(--primaria-dark);
  font-size: 0.8rem;
}
.img-placeholder-inline i {
  font-size: 1.6rem;
}
.img-placeholder-inline strong {
  display: block;
  font-size: 0.85rem;
}
.img-placeholder-inline small {
  font-size: 0.72rem;
  color: var(--text-light);
}

.img-placeholder-inline.light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Avatar placeholder */
.avatar-ph {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50% !important;
  border: 2px dashed var(--primaria-light);
  background: var(--primaria-xlight);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--primaria);
}
.avatar-ph i {
  font-size: 1.4rem;
}

/* ── TOPBAR ─────────────────────────────────── */
.topbar {
  background: var(--primaria-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  transition: var(--transition);
}
.topbar-link:hover {
  color: #fff;
}
.topbar-link i {
  font-size: 0.9rem;
}

.topbar-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  transition: var(--transition);
}
.topbar-social:hover {
  background: var(--verde-acento);
  color: #fff;
}

/* ── HEADER / NAVBAR ────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(2, 116, 124, 0.15);
}

.header .navbar {
  padding: 14px 0;
}

/* Logo */
.header .navbar-brand img,
.header .custom-logo {
  height: 60px;
  width: auto;
}

.logo-placeholder {
  display: flex;
  align-items: center;
}

/* Nav Links */
.header .navbar-nav .nav-link {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primaria);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
  color: var(--primaria) !important;
}
.header .navbar-nav .nav-link:hover::after,
.header .navbar-nav .nav-link.active::after {
  width: 60%;
}

/* Toggler customizado */
.navbar-toggler {
  border: none;
  padding: 6px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primaria);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons no header */
.btn-outline-header {
  border: 1.5px solid var(--primaria);
  color: var(--primaria);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  transition: var(--transition);
}
.btn-outline-header:hover {
  background: var(--primaria);
  color: #fff;
}

.btn-header-cta {
  background: var(--primaria);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-header-cta:hover {
  background: var(--primaria-dark);
  color: #fff;
  box-shadow: var(--sombra-hover);
  transform: translateY(-1px);
}

/* ── HERO / BANNER SLIDER ───────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Slide — imagem de fundo cobrindo 100% */
.hero-slide {
  position: relative;
  display: block;
  line-height: 0;
}

/* Imagem ocupa 100% da largura, altura proporcional */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Indicadores */
.hero-indicators [data-bs-target] {
  width: 36px;
  height: 5px;
  border-radius: 3px;
  background: rgba(6, 71, 122, 0.5);
  border: none;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.22);
  opacity: 1;
  margin: 0 4px;
  transition: var(--transition);
}
.hero-indicators .active {
  background: var(--azul-print, #06477a);
  box-shadow:
    0 0 0 1.5px #fff,
    0 1px 4px rgba(0, 0, 0, 0.28);
  width: 60px;
}

/* Botões prev/next */
.hero-prev,
.hero-next {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.hero-prev {
  left: 16px;
}
.hero-next {
  right: 16px;
}
.hero-prev:hover,
.hero-next:hover {
  background: var(--primaria);
  border-color: var(--primaria);
}

.hero-control-icon {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

/* ── NÚMEROS / STATS ────────────────────────── */
/* ── SOBRE (SEÇÃO 2) ────────────────────────── */

/* Pílula "Sobre" do lado esquerdo */
.sobre-pill {
  background: #29b6f6;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: italic;
  padding: 28px 52px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(41, 182, 246, 0.35);
  letter-spacing: 0.02em;
}

.sobre-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.sobre-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

/* Cards com imagem em forma de gota */
.drop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Forma de gota: círculo na base, pontudo no topo */
.drop-shape {
  width: 170px;
  height: 215px;
  /* top corners less rounded (forms the pointed tip), bottom corners fully rounded */
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  overflow: hidden;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.12),
    0 0 0 5px rgba(255, 255, 255, 0.85),
    0 0 0 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.drop-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drop-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.35;
}
.drop-title--green {
  color: #57b894;
}
.drop-title--navy {
  color: #1a2f5e;
}
.drop-title--blue {
  color: var(--primaria-light);
}

.drop-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  max-width: 230px;
}

/* ── QUALIDADE DE ATENDIMENTO ────────────────── */
.qualidade-section {
  background: #0d2e4d; /* azul escuro do print */
  overflow: hidden;
}

/* Coluna esquerda */
.qualidade-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 40px;
  position: relative;
  gap: 22px;
  min-height: 520px;
}

/* Gota grande — mesmo mecanismo das gotas do Sobre */
.qualidade-drop {
  width: 320px;
  height: 390px;
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  overflow: hidden;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.12),
    0 0 0 14px rgba(255, 255, 255, 0.05),
    0 12px 40px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  background: #04969f;
}

.qualidade-drop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tag cursiva embaixo da gota */
.qualidade-tagline {
  font-family: "Poppins", Arial, sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: 0.01em;
}

/* Coluna direita */
.qualidade-content {
  padding: 60px 52px 60px 40px;
}

.qualidade-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.qualidade-destaque {
  font-style: normal;
  color: #29b6f6; /* azul ciano — mesmo da pílula Sobre */
}

.qualidade-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 480px;
}

.qualidade-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  margin-top: 10px;
}

/* Bloco de palavras-destaque */
.qualidade-words {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin-top: 4px;
}

.qw-normal {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
}

.qw-teal {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #57e8c5; /* verde-água claro */
}

.qw-blue {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #29b6f6; /* azul ciano */
}

/* ── FAIXA WHATSAPP ──────────────────────────── */
.whats-faixa {
  background: #5cb85c;
  padding: 26px 0;
}

.whats-faixa-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.whats-faixa-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.whats-faixa-text {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #1a3a1a;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* ── SECTION TAGS & TITLES ──────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primaria-xlight);
  color: var(--primaria);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.section-tag.center {
  margin-left: auto;
  margin-right: auto;
}
.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title .highlight {
  color: var(--primaria);
  position: relative;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}
.section-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── GLOBAL BUTTONS ─────────────────────────── */
.btn-primary-custom {
  background: var(--primaria);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
}
.btn-primary-custom:hover {
  background: var(--primaria-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.btn-outline-primary-custom {
  border: 2px solid var(--primaria);
  color: var(--primaria);
  background: transparent;
  border-radius: 50px;
  font-weight: 700;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-primary-custom:hover {
  background: var(--primaria);
  color: #fff;
}

/* ── NOSSOS SERVIÇOS – GRID ──────────────────── */

/* Cabeçalho */
.servicos-grid-section {
  background: #fff;
}

.servicos-header {
  padding: 48px 0 30px;
}

.servicos-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  margin: 0;
  line-height: 1.1;
}

.servicos-header-img {
  width: auto;
  height: 180px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Grade 3 × 3 — sem gap, borda branca de separação */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: #fff; /* cor do "gap" entre as células */
}

/* Célula */
.sg-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: default;
  text-decoration: none;
}

/* Proporção 1:1 — quadrado */
.sg-item::before {
  content: "";
  display: block;
  padding-top: 100%;
}

/* Imagem de fundo */
.sg-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sg-item:hover img {
  transform: scale(1.03);
}

/* Overlay colorido semi-transparente */
.sg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.sg-item:hover .sg-overlay {
  opacity: 0.72;
}

.sg-item--green .sg-overlay {
  background: #57b894;
}
.sg-item--teal .sg-overlay {
  background: #04969f;
}
.sg-item--navy .sg-overlay {
  background: #0d2e4d;
}
.sg-item--blue .sg-overlay {
  background: #1e8fd5;
}

/* Label de texto — centralizado vertical e horizontal */
.sg-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  padding: 12px;
  z-index: 2;
}

/* ── DIFERENCIAIS ───────────────────────────── */
.diff-img-wrapper {
  position: relative;
}
.diff-img-wrapper .img-placeholder {
  border-radius: var(--radius-lg);
}

.diff-img-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--verde-acento);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--sombra);
  z-index: 2;
  line-height: 1.2;
}
.diff-img-badge i {
  font-size: 1.4rem;
  margin-bottom: 3px;
}

.diff-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.diff-card:hover {
  border-color: var(--primaria-light);
  box-shadow: var(--sombra);
  transform: translateY(-3px);
}

.diff-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--primaria-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaria);
  font-size: 1.35rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.diff-card:hover .diff-icon-wrap {
  background: var(--primaria);
  color: #fff;
}

.diff-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.diff-card p {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* ── COMO FUNCIONA (STEPS) ──────────────────── */
.how-section .section-title {
  color: #fff;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  color: #fff;
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.step-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  font-family: "Poppins", Arial, sans-serif;
  position: absolute;
  top: 10px;
  left: 20px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #adf5e1;
  margin: 0 auto 16px;
}

.step-card h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.step-arrow {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.8rem;
  z-index: 5;
}

/* ── GALERIA ────────────────────────────────── */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-ph {
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg, #c5e8ec 0%, #b0dde3 100%);
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 116, 124, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
}
.gallery-overlay-body span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── DEPOIMENTOS + FAQ (fundo compartilhado) ── */

/* Wrapper com imagem de fundo única */
.depo-faq-wrapper {
  position: relative;
  overflow: hidden;
}
.depo-faq-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.depo-faq-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 46, 60, 0.72);
  z-index: 1;
}

/* Sub-seções ficam acima do overlay */
.depo-section,
.faq-section {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}
.depo-section {
  padding-bottom: 40px;
}
.faq-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

/* ---- Cabeçalho Depoimentos ---- */
.depo-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Gota decorativa no header de Depoimentos */
.depo-drop-deco {
  width: 110px;
  height: 138px;
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  overflow: hidden;
  position: relative;
  border: 4px solid #57b894;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.depo-drop-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.depo-chat-ico {
  position: absolute;
  bottom: -4px;
  right: -10px;
  width: 34px;
  height: 34px;
  background: #57b894;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.depo-title {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ---- Cards Google Review ---- */
.grev-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.grev-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.grev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #02747c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.grev-avatar--blue {
  background: #1e8fd5;
}
.grev-avatar--purple {
  background: #7c4dff;
}
.grev-avatar--orange {
  background: #f57c00;
}
.grev-avatar--green {
  background: #388e3c;
}
.grev-info {
  flex: 1;
}
.grev-info strong {
  display: block;
  font-size: 0.88rem;
  color: #1e2a2c;
  line-height: 1.2;
}
.grev-stars {
  color: #fbbc04;
  font-size: 0.8rem;
  margin-top: 2px;
}
.grev-google {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.grev-text {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* ---- Controles Depoimentos ---- */
.depo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.depo-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}
.depo-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.depo-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  margin: 0 3px;
  opacity: 1;
  transition: all 0.25s;
}
.depo-dots .active {
  background: #ffffff;
  width: 26px;
  border-radius: 5px;
}

/* ---- FAQ ---- */
.faq-title {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.faq-title strong {
  font-weight: 800;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: none !important;
  background: transparent !important;
}
.faq-btn {
  background: rgba(41, 182, 246, 0.18) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50px !important;
  padding: 13px 22px !important;
  border: 2px solid rgba(41, 182, 246, 0.5) !important;
  transition: background 0.25s !important;
}
.faq-btn:not(.collapsed) {
  background: #29b6f6 !important;
  border-color: #29b6f6 !important;
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}
.faq-btn::after {
  filter: brightness(0) invert(1) !important;
}
.faq-body {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.65;
  padding: 14px 22px;
  background: rgba(41, 182, 246, 0.1);
  border-radius: 0 0 16px 16px;
  border: 2px solid rgba(41, 182, 246, 0.3);
  border-top: none;
}

/* ---- Imagem decorativa FAQ ---- */
.faq-img-col {
  position: relative;
  display: inline-block;
}
.faq-img {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  display: block;
  margin: 0 auto;
}
.faq-question-deco {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 52px;
  height: 52px;
  background: #29b6f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(41, 182, 246, 0.5);
}

/* ── CTA / CONTATO ──────────────────────────── */
.cta-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.cta-bg-deco {
  position: absolute;
  right: -150px;
  top: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--primaria-xlight) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Formulário de Contato */
.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primaria);
  box-shadow: 0 0 0 3px rgba(2, 116, 124, 0.12);
}

.contact-form .form-floating label {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* Box de Info de Contato */
.contact-info-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  height: 100%;
}
.contact-box-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-box-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 26px;
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-item-row strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 2px;
}
.contact-item-row a,
.contact-item-row span {
  font-size: 0.88rem;
  color: var(--text);
}
.contact-item-row a:hover {
  color: var(--primaria);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.contact-icon--green {
  background: #25d366;
}
.contact-icon--teal {
  background: var(--primaria);
}
.contact-icon--blue {
  background: #0d6efd;
}
.contact-icon--orange {
  background: #fd7e14;
}

.btn-whatsapp-full {
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
}
.btn-whatsapp-full:hover {
  background: #1db954;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Selos de Confiança */
.trust-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.trust-seal {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primaria-xlight);
  color: var(--primaria-dark);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
}
.trust-seal i {
  font-size: 0.9rem;
}

/* ── MAPA ───────────────────────────────────── */
.map-placeholder {
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg, #e0f2f4 0%, #cee9ec 100%);
}

/* ── WHATSAPP FLOAT ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.whatsapp-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55);
  transition: var(--transition);
  display: block;
  object-fit: cover;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo img,
.footer-brand .footer-logo .custom-logo {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-logo-placeholder {
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 22px;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primaria);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a i {
  font-size: 0.75rem;
  color: var(--primaria-light);
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact-list li i {
  color: var(--primaria-light);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-contact-list a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--primaria);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social-btn--insta:hover {
  background: #e1306c;
}
.footer-social-btn--face:hover {
  background: #1877f2;
}
.footer-social-btn--yt:hover {
  background: #ff0000;
}

.btn-footer-whats {
  background: rgba(37, 211, 102, 0.15);
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-footer-whats:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom a:hover {
  color: var(--primaria-light);
}

.footer-eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-eco-badge i {
  color: var(--verde-acento);
  font-size: 0.9rem;
}

/* =============================================
   AJUSTES DO LAYOUT ENVIADO
============================================== */
:root {
  --azul-print: #06477a;
  --azul-profundo: #073b68;
  --azul-vivo: #00aee9;
  --verde-print: #83c914;
  --verde-lima: #94d72f;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: #12324a;
}

.container {
  max-width: 960px;
}

.header {
  background: var(--azul-print);
  box-shadow: none;
}

.header.scrolled {
  box-shadow: 0 5px 18px rgba(0, 44, 82, 0.18);
}

.header .navbar {
  min-height: 42px;
  padding: 10px 0;
}

.header .navbar-brand img,
.header .custom-logo {
  height: 30px;
  filter: brightness(0) invert(1);
}

.img-placeholder-inline {
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0;
}

.img-placeholder-inline i,
.img-placeholder-inline small {
  display: none;
}

.img-placeholder-inline strong {
  font-size: 0.72rem;
}

.header .navbar-nav .nav-link {
  color: #fff !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 12px !important;
  text-transform: uppercase;
}

.header .navbar-nav .nav-link::after {
  background: var(--verde-lima);
  bottom: 0;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
  color: var(--verde-lima) !important;
}

.navbar-cta {
  display: none !important;
}

.toggler-line {
  background: #fff;
}

.hero-section {
  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(0, 174, 233, 0.22),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f9fdff 100%);
  padding: 34px 0 42px;
}

.hero-container .row {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
}

.hero-container .row > [class*="col-"] {
  width: 100%;
}

.hero-copy {
  padding-left: 12px;
  position: relative;
  z-index: 3;
}

.hero-logo-mark {
  color: var(--azul-print);
  display: inline-flex;
  flex-direction: column;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1;
  margin-bottom: 22px;
  padding-left: 48px;
  position: relative;
}

.hero-logo-mark::before {
  background: linear-gradient(135deg, var(--verde-lima), var(--azul-vivo));
  border-radius: 55% 55% 50% 50% / 35% 35% 65% 65%;
  content: "";
  height: 50px;
  left: 0;
  position: absolute;
  top: -12px;
  width: 38px;
}

.hero-logo-mark span {
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-logo-mark small {
  color: #46a4bd;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: var(--azul-print);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 350px;
}

.hero-visual {
  min-height: 330px;
  position: relative;
}

.hero-shape {
  border-radius: 50%;
  position: absolute;
}

.hero-shape--blue {
  background: var(--azul-vivo);
  height: 300px;
  right: 64px;
  top: 4px;
  width: 300px;
}

.hero-shape--green {
  border: 42px solid var(--verde-lima);
  height: 260px;
  right: 124px;
  top: 36px;
  width: 260px;
}

.hero-person-placeholder {
  border-radius: 50%;
  height: 295px;
  overflow: hidden;
  position: absolute;
  right: 84px;
  top: 20px;
  width: 295px;
  z-index: 2;
}

.hero-person-placeholder img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.section-padding {
  padding: 40px 0 54px;
}

.sobre-section .row:first-child {
  margin-bottom: 22px !important;
}

.sobre-pill {
  background: var(--azul-vivo);
  border-radius: 0 80px 80px 0;
  box-shadow: none;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  font-style: normal;
  font-weight: 400;
  margin-left: min(0px, calc((100vw - 950px) / -2));
  min-width: 250px;
  padding: 18px 44px 18px max(44px, calc((100vw - 960px) / 2 + 44px));
}

.sobre-title {
  color: var(--azul-print);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.sobre-text,
.drop-text,
.qualidade-text,
.grev-text,
.faq-body,
.footer-desc,
.footer-contact-list li,
.footer-contact-list a {
  font-size: 0.78rem;
}

.drop-card {
  gap: 12px;
}

.drop-shape {
  border-radius: 55% 55% 50% 50% / 35% 35% 65% 65%;
  height: 150px;
  width: 118px;
}

.drop-title {
  font-size: 1.02rem;
}

.qualidade-section {
  background: var(--azul-profundo);
}

.qualidade-img-col {
  min-height: 420px;
  padding: 38px 24px 28px;
}

.qualidade-drop {
  height: 310px;
  width: 250px;
}

.qualidade-tagline {
  font-size: 0.9rem;
  margin-bottom: 0;
  transform: rotate(12deg);
}

.qualidade-content {
  padding: 52px 32px 48px;
}

.qualidade-title {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 22px;
}

.qualidade-destaque,
.qw-blue {
  color: var(--azul-vivo);
}

.qw-teal {
  color: #76e4c6;
}

.qw-normal,
.qw-teal,
.qw-blue {
  font-size: clamp(1.65rem, 4vw, 2.45rem);
}

.whats-faixa {
  background: var(--verde-lima);
  padding: 10px 0;
}

.whats-faixa-inner {
  border-radius: 50px;
  gap: 10px;
}

.whats-faixa-icon,
.whatsapp-btn {
  align-items: center;
  background: #25d366;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  justify-content: center;
}

.whats-faixa-icon {
  font-size: 1.2rem;
  height: 36px;
  width: 36px;
}

.whats-faixa-text {
  color: #173a12;
  flex: initial;
  font-size: 0.88rem;
  min-width: auto;
}

.btn-faixa-cta {
  background: var(--azul-vivo);
  font-size: 0.74rem;
  padding: 8px 20px;
}

.servicos-grid-section {
  padding-bottom: 26px;
}

.servicos-header {
  padding: 42px 0 20px;
}

.servicos-header .row {
  justify-content: center;
}

.servicos-title {
  color: var(--azul-print);
  font-size: clamp(2.1rem, 5vw, 3rem);
}

.servicos-header-img {
  height: 118px;
  max-width: 150px;
}

.servicos-grid {
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 760px;
}

.sg-overlay {
  opacity: 0.72;
}

.sg-label {
  font-size: clamp(0.78rem, 1.8vw, 1rem);
}

.depo-faq-wrapper::after {
  background:
    linear-gradient(
      180deg,
      rgba(5, 59, 101, 0.82) 0%,
      rgba(0, 183, 238, 0.8) 100%
    ),
    rgba(0, 0, 0, 0.2);
}

.depo-section,
.faq-section {
  padding: 42px 0;
}

.depo-section {
  padding-bottom: 28px;
}

.faq-section {
  padding-top: 22px;
}

.depo-header {
  justify-content: center;
  margin-bottom: 24px;
}

.depo-drop-deco {
  height: 94px;
  width: 76px;
}

.depo-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.grev-card {
  border-radius: 6px;
  min-height: 118px;
  padding: 14px 12px;
}

.grev-avatar {
  font-size: 0.82rem;
  height: 32px;
  width: 32px;
}

.grev-info strong {
  font-size: 0.68rem;
}

.grev-stars {
  font-size: 0.64rem;
}

.grev-google {
  align-items: center;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 50%;
  color: #4285f4;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 800;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.depo-nav {
  display: flex;
  position: relative;
  z-index: 3;
}

.faq-title {
  color: var(--azul-print);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  text-shadow: none;
}

.faq-section .row {
  align-items: center !important;
}

.faq-btn {
  background: rgba(255, 255, 255, 0.32) !important;
  border-color: rgba(6, 71, 122, 0.45) !important;
  color: var(--azul-print) !important;
  font-size: 0.72rem;
  padding: 7px 16px !important;
}

.faq-btn:not(.collapsed) {
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.faq-btn::after {
  filter: none !important;
}

.faq-body {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(6, 71, 122, 0.35);
  color: var(--azul-profundo);
}

.faq-img {
  border-radius: 50%;
  max-width: 300px;
}

.faq-question-deco {
  background: var(--verde-lima);
}

.site-footer {
  background: #fff;
  color: #516070;
}

.footer-top {
  border-bottom: 0;
  padding: 30px 0 24px;
}

.footer-brand .footer-logo img,
.footer-brand .footer-logo .custom-logo {
  filter: none;
}

.footer-desc {
  color: #516070;
}

.footer-title {
  border-bottom-color: var(--azul-vivo);
  color: var(--azul-print);
  font-size: 0.76rem;
}

.footer-contact-list li,
.footer-contact-list a {
  color: #516070;
}

.footer-contact-list li i {
  color: var(--azul-vivo);
}

.footer-social-btn {
  background: var(--azul-vivo);
  color: #fff;
}

.whatsapp-btn {
  font-size: 1.8rem;
  height: 58px;
  width: 58px;
}

.whatsapp-btn.animate__animated.animate__pulse.animate__infinite {
  animation: ecoclean-whatsapp-pulse 1.8s ease-in-out infinite;
}

@keyframes ecoclean-whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* ── BANNER CPT: imagem completa + botão sobreposto ── */
.hero-section {
  background: #fff;
  line-height: 0;
  padding: 0;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item,
.hero-slide {
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.hero-img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero-btn-wrap {
  bottom: 12%;
  left: 11%;
  line-height: 1;
  position: absolute;
  z-index: 4;
}

.btn-hero-saiba {
  align-items: center;
  background-image: url("../img/botao_verde.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  color: #12324a;
  display: inline-flex;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 30px;
  min-width: 180px;
  overflow: hidden;
  padding: 13px 28px;
  text-shadow: 0 1px 3px rgba(0, 44, 82, 0.25);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.btn-hero-saiba:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-hero-saiba--azul {
  background-image: url("../img/botao_azul.webp");
  color: #fff;
  min-height: 30px;
  min-width: 180px;
}

@media (min-width: 768px) and (max-width: 1399px) {
  .hero-btn-wrap {
    bottom: 7%;
  }
}

.hero-indicators {
  bottom: 10px;
  margin-bottom: 0;
}

.hero-indicators [data-bs-target] {
  background: rgba(6, 71, 122, 0.5);
  border: 0;
  border-radius: 999px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.22);
  height: 5px;
  opacity: 1;
  width: 26px;
}

.hero-indicators .active {
  background: var(--azul-print, #06477a);
  box-shadow:
    0 0 0 1.5px #fff,
    0 1px 4px rgba(0, 0, 0, 0.28);
  width: 44px;
}

.hero-prev,
.hero-next {
  background: rgba(6, 71, 122, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  height: 42px;
  opacity: 1;
  top: 50%;
  width: 42px;
}

.hero-admin-placeholder {
  align-items: center;
  background: var(--azul-vivo);
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  justify-content: center;
  min-height: 420px;
  text-align: center;
}

/* ── SOBRE: layout do material enviado ───────── */
.sobre-section {
  background: #fff;
  padding: 44px 0 72px;
}

.sobre-section .row:first-child {
  margin-bottom: 36px !important;
}

.sobre-pill {
  background: var(--azul-vivo);
  border-radius: 0 84px 84px 0;
  box-shadow: none;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-left: min(0px, calc((100vw - 950px) / -2));
  min-width: 320px;
  padding: 28px 58px 28px max(58px, calc((100vw - 950px) / 2 + 58px));
}

.sobre-title {
  color: var(--azul-print);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 auto 12px;
  text-align: center;
}

.sobre-text {
  color: var(--azul-print);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  text-align: center;
}

.drop-card {
  gap: 18px;
}

.drop-shape {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 160px;
  overflow: visible;
  width: 130px;
}

.drop-shape img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.drop-title {
  font-size: clamp(1.45rem, 2.55vw, 2.05rem);
  font-weight: 800;
  line-height: 1.08;
}

.drop-title--green {
  color: var(--verde-lima);
}

.drop-title--navy {
  color: var(--azul-print);
}

.drop-title--blue {
  color: var(--azul-vivo);
}

.drop-text {
  color: var(--azul-print);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 310px;
}

/* ── QUALIDADE: layout do material enviado ───── */
.qualidade-section {
  background: #102d78;
  overflow: hidden;
  padding: 0;
}

.qualidade-container {
  max-width: 1140px;
}

.qualidade-row {
  min-height: 520px;
}

.qualidade-img-col {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  min-height: 520px;
  padding: 0 34px 0 0;
}

.qualidade-drop {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 545px;
  overflow: visible;
  width: 100%;
}

.qualidade-drop img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.qualidade-content {
  padding: 58px 0 44px 24px;
}

.qualidade-title {
  color: #fff;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 38px;
}

.qualidade-destaque {
  color: var(--azul-vivo);
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.qualidade-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 58px;
  max-width: 500px;
}

.qualidade-text p {
  margin-bottom: 22px;
}

.qualidade-label {
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 10px 86px;
  text-transform: none;
}

.qualidade-label strong {
  color: var(--azul-vivo);
  font-weight: 800;
}

.qualidade-words {
  align-items: center;
  display: grid;
  gap: 2px 14px;
  grid-template-columns: max-content max-content;
  justify-content: start;
  margin: 0;
  max-width: none;
}

.qw-normal,
.qw-teal,
.qw-blue {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

.qw-normal {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.qw-teal {
  color: var(--verde-lima);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
}

.qw-blue {
  color: var(--azul-vivo);
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  font-weight: 800;
  grid-column: 1 / 3;
  margin-left: 88px;
  margin-top: 6px;
}

/* Ajuste final para manter a seção Qualidade no grid Bootstrap */
.qualidade-section .row {
  display: flex;
  flex-wrap: wrap;
}

.qualidade-section {
  background: #112d7a;
}

.qualidade-container {
  max-width: 1180px;
}

.qualidade-row {
  align-items: flex-start;
  min-height: 520px;
}

.qualidade-img-col {
  justify-content: flex-start;
  min-height: 520px;
  padding: 0 30px 0 0;
}

.qualidade-drop {
  max-width: 560px;
  width: 100%;
}

.qualidade-content {
  padding: 62px 0 40px 18px;
}

.qualidade-title {
  font-size: clamp(3rem, 4.1vw, 4.15rem);
  max-width: 520px;
  white-space: nowrap;
}

.qualidade-destaque {
  display: block;
}

.qualidade-text {
  max-width: 520px;
}

.qualidade-words {
  grid-template-columns: max-content max-content;
  justify-content: start;
  white-space: nowrap;
}

/* ── FAIXA WHATSAPP: layout curvo ───────────── */
.whats-faixa {
  background: #f4f4f1;
  overflow: visible;
  padding: 0;
  position: relative;
}

.whats-faixa::before {
  background: var(--verde-lima);
  border-radius: 0 90px 90px 0;
  content: "";
  height: 112px;
  left: 0;
  position: absolute;
  top: 0;
  width: min(96vw, calc((100vw - 1140px) / 2 + 1020px));
  z-index: 0;
}

.whats-faixa .container {
  max-width: 1140px;
  position: relative;
  z-index: 1;
}

.whats-faixa-link {
  color: inherit;
  display: block;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.whats-faixa-link .container {
  position: relative;
  z-index: 1;
}

.whats-faixa-inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 26px;
  justify-content: flex-start;
  min-height: 112px;
  padding: 0 80px 0 36px;
  position: relative;
}

.whats-faixa-icon {
  background: transparent;
  border: 0;
  color: #fff;
  flex-shrink: 0;
  font-size: 4.2rem;
  height: auto;
  line-height: 1;
  width: auto;
}

.whats-faixa-text {
  color: var(--azul-print);
  display: block;
  flex: 1 1 auto;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  min-width: 0;
  text-align: left;
  white-space: nowrap;
}

.btn-faixa-cta {
  align-items: center;
  background: linear-gradient(180deg, #37c4fb 0%, #0788cf 100%);
  border: 0;
  border-radius: 999px;
  bottom: -28px;
  box-shadow: 0 8px 18px rgba(0, 83, 143, 0.28);
  color: #fff;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 800;
  gap: 8px;
  left: 45%;
  padding: 14px 34px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.btn-faixa-cta:hover {
  color: #fff;
  transform: translateX(-50%) translateY(-2px);
}

/* ── SERVIÇOS: grid dinâmico do CPT ─────────── */
.servicos-grid-section {
  background: #fff;
  padding: 58px 0 18px;
}

.servicos-grid-section .container {
  max-width: 900px;
}

.servicos-header {
  padding: 0 0 22px;
}

.servicos-header .row {
  align-items: center;
  justify-content: space-between;
}

.servicos-title {
  color: var(--azul-print);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.servicos-header-img {
  display: block;
  height: auto;
  max-width: 150px;
  width: 150px;
}

.servicos-grid {
  background: transparent;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}

.sg-item {
  aspect-ratio: 1 / 1;
}

.sg-item::before {
  display: none;
}

.sg-item img {
  inset: 0;
  object-fit: cover;
}

.sg-overlay {
  opacity: 0.78;
}

.sg-item:hover .sg-overlay {
  opacity: 0.66;
}

.sg-label {
  color: #fff;
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  font-weight: 800;
  line-height: 1.16;
  margin: auto;
  max-width: 72%;
  text-shadow: none;
}

/* Ajuste visual final da seção Serviços */
.servicos-grid-section {
  overflow: hidden;
  padding: 74px 0 18px;
  position: relative;
}

.servicos-grid-section::before {
  background: #f4f4f1;
  border-bottom-left-radius: 140px;
  content: "";
  height: 118px;
  position: absolute;
  right: 0;
  top: 0;
  width: min(46vw, 430px);
  z-index: 0;
}

.servicos-grid-section .container,
.servicos-grid {
  position: relative;
  z-index: 1;
}

.servicos-header {
  padding: 0 0 18px;
}

.servicos-header-img {
  margin-right: 26px;
  margin-top: -64px;
  max-width: 215px;
  position: relative;
  width: 215px;
  z-index: 2;
}

.sg-overlay {
  display: none;
}

.sg-item:hover img {
  transform: scale(1.03);
}

.sg-label {
  background: transparent;
  border-radius: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.75vw, 1.35rem);
  font-weight: 900;
  line-height: 1.12;
  max-width: 78%;
  padding: 0;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.65),
    0 0 2px rgba(0, 0, 0, 0.55);
  transition: color 0.3s ease, transform 0.3s ease;
}

.sg-item:hover .sg-label {
  color: var(--azul-vivo);
  transform: scale(1.03);
}

.sg-contact-btn {
  align-items: center;
  background: var(--azul-vivo);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 8px 18px rgba(0, 83, 143, 0.28);
  color: #fff;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 6px;
  left: 50%;
  opacity: 0;
  padding: 9px 18px;
  position: absolute;
  text-decoration: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  white-space: nowrap;
  z-index: 3;
}

.sg-contact-btn:hover,
.sg-contact-btn:focus-visible {
  background: var(--azul-print);
  color: #fff;
}

.sg-item:hover .sg-contact-btn,
.sg-item:focus-within .sg-contact-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ── DEPOIMENTOS + FAQ: base visual do layout ─ */
.depo-faq-wrapper {
  background: #05b8e8;
  min-height: 820px;
  overflow: hidden;
  position: relative;
}

.depo-faq-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.depo-faq-wrapper::after {
  display: none;
}

.depo-section,
.faq-section {
  position: relative;
  z-index: 2;
}

.depo-section {
  min-height: 330px;
  padding: 38px 0 22px;
}

.depo-header {
  justify-content: center;
  margin-bottom: 28px;
}

.depo-title {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.depo-drop-deco {
  border-color: #fff;
  height: 76px;
  width: 76px;
}

.depo-chat-ico {
  display: none;
}

.depo-section .container,
.faq-section .container {
  max-width: 900px;
}

.depo-section .row {
  justify-content: center;
}

.grev-card {
  border-radius: 4px;
  min-height: 118px;
}

.faq-section .row {
  align-items: center !important;
}

.faq-title {
  color: var(--azul-print);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 0.88;
  margin-bottom: 22px;
  text-shadow: none;
}

.faq-title strong {
  display: block;
  font-weight: 800;
}

.faq-accordion {
  gap: 8px;
  max-width: 430px;
}

.faq-btn {
  background: transparent !important;
  border: 2px solid var(--azul-print) !important;
  border-radius: 999px !important;
  color: var(--azul-print) !important;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 7px 18px !important;
}

.faq-btn:not(.collapsed) {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: var(--azul-print) !important;
  border-bottom-left-radius: 14px !important;
  border-bottom-right-radius: 14px !important;
}

.faq-body {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--azul-print);
  color: var(--azul-print);
  font-weight: 600;
}

.faq-img-col {
  max-width: 360px;
}

.faq-img {
  border-radius: 0;
  box-shadow: none;
  display: block;
  max-width: 360px;
  width: 100%;
}

.faq-question-deco {
  display: none;
}

/* ── DEPOIMENTOS: refinamento visual ────────── */
.depo-faq-wrapper {
  background: transparent;
}

.depo-section {
  min-height: 430px;
  padding: 54px 0 36px;
}

.depo-section .container {
  max-width: 890px;
}

.depo-header {
  gap: 18px;
  justify-content: center;
  margin-bottom: 30px;
  transform: translateX(-8px);
}

.depo-drop-deco {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  overflow: visible;
  width: 118px;
}

.depo-drop-deco img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.depo-title {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.55);
}

#depoCarousel {
  max-width: 820px;
  margin: 0 auto;
}

.depo-section .row.g-3 {
  --bs-gutter-x: 1.4rem;
}

.grev-card {
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  min-height: 112px;
  padding: 13px 14px 12px;
}

.grev-avatar {
  height: 34px;
  width: 34px;
}

.grev-info strong {
  font-size: 0.72rem;
}

.grev-stars {
  font-size: 0.7rem;
}

.grev-text {
  font-size: 0.76rem;
  line-height: 1.35;
}

.grev-avatar-img {
  object-fit: cover;
}

/* ── FAQ: textos claros e conteúdo dinâmico ─── */
.faq-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.faq-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.faq-btn:not(.collapsed) {
  background: rgba(0, 174, 233, 0.72) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.faq-btn::after {
  filter: brightness(0) invert(1) !important;
}

.faq-body {
  background: rgba(0, 56, 128, 0.72);
  border-color: #fff;
  color: #fff;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

.faq-img-col,
.faq-img {
  background: transparent;
}

.faq-img {
  mix-blend-mode: normal;
}

.faq-section .btn-hero-saiba {
  left: 34px;
  position: relative;
}

/* Ajuste fino: FAQ aberto e imagem sem fundo preto */
.faq-item {
  background: transparent !important;
  border: 2px solid #fff !important;
  border-radius: 18px !important;
  overflow: hidden;
}

.faq-btn {
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  padding: 9px 18px !important;
}

.faq-btn.collapsed {
  border-radius: 16px !important;
}

.faq-btn:not(.collapsed) {
  border-radius: 16px 16px 0 0 !important;
}

.accordion-collapse.show {
  border-top: 2px solid rgba(255, 255, 255, 0.55);
}

.faq-body {
  border: 0;
  border-radius: 0 0 16px 16px;
  padding: 16px 20px;
}

.faq-img-col {
  background: #06477a;
  border-radius: 50%;
  overflow: hidden;
}

.faq-img {
  mix-blend-mode: screen;
}

/* ── FOOTER: layout final ───────────────────── */
.site-footer {
  background: #fff;
  color: #677382;
}

.site-footer .container {
  max-width: 1040px;
}

.footer-top {
  border: 0;
  padding: 58px 0 52px;
}

.footer-top .row {
  --bs-gutter-x: 4.5rem;
  align-items: flex-start;
}

.footer-brand .footer-logo img,
.footer-brand .footer-logo .custom-logo {
  filter: none;
  height: 76px;
  margin-bottom: 18px;
  width: auto;
}

.footer-desc {
  color: #6f7b88;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
  max-width: 300px;
}

.footer-title {
  border-bottom: 3px solid var(--azul-vivo);
  color: var(--azul-print);
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 26px;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.footer-contact-list li {
  align-items: center;
  color: #6f7b88;
  display: flex;
  font-size: 0.82rem;
  font-weight: 500;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact-list li i {
  color: var(--azul-vivo);
  font-size: 0.95rem;
  margin-top: 0;
  min-width: 16px;
  text-align: center;
}

.footer-contact-list a,
.footer-contact-list span {
  color: #6f7b88;
  font-size: 0.82rem;
}

.footer-contact-list a:hover {
  color: var(--azul-print);
}

.footer-phone-group {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
}

.footer-phone-separator {
  color: #9aa4ad;
}

.footer-socials {
  gap: 8px;
}

.footer-social-btn {
  background: #fff;
  border-radius: 50%;
  color: var(--azul-vivo);
  font-size: 1.4rem;
  height: 26px;
  width: 26px;
}

.footer-social-btn:hover {
  background: #fff;
  color: var(--azul-print);
}

.footer-social-btn--insta {
  color: #23d142;
}

.footer-social-btn--face {
  color: #1877f2;
}

.footer-social-btn--yt {
  color: #ff0000;
}

.footer-top .row > [class*="col-"] {
  position: relative;
}

.footer-top .row > [class*="col-"]:not(:last-child)::after {
  background: #d7dce1;
  content: "";
  height: 116px;
  position: absolute;
  right: calc(var(--bs-gutter-x) * -0.5 + 18px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.footer-copyright {
  background: #f7f9fb;
  border-top: 1px solid #e6ebef;
  color: #6f7b88;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 18px 0;
  text-align: center;
}

.footer-copyright .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  max-width: var(--layout-container);
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright a {
  color: var(--azul-print);
  text-decoration: none;
}

.footer-copyright a:hover {
  color: var(--azul-vivo);
}

.footer-terms {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.footer-terms span {
  color: #9aa4ad;
}

/* ── HEADER: logo original e menu à direita ─── */
.header .navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header .navbar-brand,
.header .custom-logo-link {
  margin-right: auto;
  order: 1;
}

.header .navbar-brand img,
.header .custom-logo,
.header .custom-logo-link img,
.header .img-placeholder-inline img {
  filter: none !important;
  height: 48px;
  width: auto;
}

.header .navbar-toggler {
  order: 2;
  margin-left: auto;
}

.header .navbar-collapse {
  flex-grow: 1;
  order: 3;
}

.header .navbar-nav {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.header .navbar-nav .nav-link {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 14px !important;
}

/* ── ALINHAMENTO GERAL DO LAYOUT ────────────── */
:root {
  --layout-container: 960px;
}

.container,
.qualidade-container,
.whats-faixa .container,
.servicos-grid-section .container,
.depo-section .container,
.faq-section .container,
.site-footer .container {
  max-width: var(--layout-container);
}

.servicos-grid,
#depoCarousel {
  max-width: var(--layout-container);
  width: 100%;
}

.servicos-grid-section .container {
  max-width: none;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

.servicos-grid {
  max-width: none;
  width: calc(100% - 80px);
}

.qualidade-drop {
  max-width: 470px;
}

.qualidade-content {
  padding-left: 16px;
}

.whats-faixa::before {
  width: min(96vw, calc((100vw - var(--layout-container)) / 2 + 1020px));
}

.whats-faixa-inner {
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-left: 36px;
  padding-right: 80px;
}

.servicos-header-img {
  margin-right: 0;
}

.depo-section .row.g-3 {
  --bs-gutter-x: 1.2rem;
}

.faq-accordion {
  max-width: 100%;
}

.faq-img-col {
  max-width: 330px;
}

.faq-img {
  max-width: 330px;
}

.footer-top .row {
  --bs-gutter-x: 3rem;
}

/* Ajuste fino de alinhamento das seções finais */
.depo-section .container,
.faq-section .container,
.site-footer .container {
  max-width: 1040px;
}

#depoCarousel {
  max-width: 940px;
}

.faq-section .row {
  --bs-gutter-x: 2rem;
}

.faq-accordion {
  max-width: 460px;
}

.faq-img-col,
.faq-img {
  max-width: 360px;
}

.footer-top .row {
  --bs-gutter-x: 2.4rem;
}

.footer-desc {
  max-width: 280px;
}

/* Ajuste fino da seção Qualidade */
@media (min-width: 992px) {
  .qualidade-section {
    padding: 52px 0;
  }

  .qualidade-row {
    align-items: center !important;
    min-height: auto;
  }

  .qualidade-img-col {
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0 28px 0 0;
  }

  .qualidade-drop {
    height: auto;
    max-width: 100%;
    overflow: visible;
  }

  .qualidade-drop img {
    height: auto;
    object-fit: contain;
  }

  .qualidade-content {
    max-width: 520px;
    padding: 0 0 0 12px;
  }

  .qualidade-title {
    font-size: clamp(2.5rem, 3.55vw, 3.55rem);
    line-height: 0.9;
    margin: 0 auto 30px;
    max-width: 500px;
    text-align: center;
  }

  .qualidade-text {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 34px;
    max-width: 500px;
  }

  .qualidade-text p {
    margin-bottom: 18px;
  }

  .qualidade-label {
    font-size: clamp(0.95rem, 1.3vw, 1.12rem);
    margin: 0 auto 14px;
    text-align: center;
  }

  .qualidade-words {
    gap: 8px 18px;
    justify-content: center;
    margin: 0 auto;
  }

  .qw-normal,
  .qw-teal {
    font-size: clamp(1.72rem, 2.6vw, 2.22rem);
  }

  .qw-blue {
    font-size: clamp(2.05rem, 3.15vw, 2.78rem);
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }
}

/* Controles manuais dos depoimentos */
#depoCarousel .carousel-inner {
  min-height: clamp(150px, 16vw, 190px);
}

#depoCarousel .carousel-item {
  min-height: inherit;
}

#depoCarousel .carousel-item > .row {
  min-height: inherit;
}

.depo-nav {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
  position: relative;
  z-index: 3;
}

.depo-btn,
.depo-dots button {
  cursor: pointer;
}

.depo-btn:focus-visible,
.depo-dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Fundo fixo compartilhado de Depoimentos + FAQ */
.depo-faq-wrapper {
  background-image: url("../img/bola_perguntas.webp");
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.depo-faq-bg {
  display: none;
}

/* Qualidade: padding vertical igual e sem corte da arte */
.qualidade-section {
  overflow: visible;
  padding: 48px 0;
}

.qualidade-row {
  align-items: center !important;
  min-height: auto;
}

.qualidade-img-col {
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0 24px 0 0;
}

.qualidade-drop {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
  overflow: visible;
  width: 100%;
}

.qualidade-drop img {
  display: block;
  height: auto;
  max-height: none;
  object-fit: contain;
  width: 100%;
}

.qualidade-content {
  padding-bottom: 0;
  padding-top: 0;
}

/* Faixa WhatsApp: tarja verde clicável e mais larga */
.whats-faixa-link {
  color: inherit;
  display: block;
  min-height: 112px;
  position: relative;
  text-decoration: none;
}

.whats-faixa-link:hover,
.whats-faixa-link:focus-visible {
  color: inherit;
  text-decoration: none;
}

.whats-faixa-link:hover .btn-faixa-cta {
  color: #fff;
  transform: translateX(-50%) translateY(-2px);
}

.whats-faixa-link .btn-faixa-cta {
  pointer-events: none;
}

.whats-faixa-inner {
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.whats-faixa-icon {
  flex-shrink: 0;
}

.whats-faixa-text {
  flex: 1 1 auto;
  min-width: 0;
}
