/* 
   CÃO RELAX — LANDING PAGE CSS COMPLETO
   style.css
    */

/* ── 1. VARIÁVEIS CSS (DESIGN TOKENS) ── */
:root {
  /* Cores */
  --laranja:        #FF5429;
  --laranja-2:      #FFA939;
  --verde:          #62B94F;
  --verde-claro:    #CAFF82;
  --escuro:         #1A1A2E;
  --fundo-1:        #FFFAF7;
  --fundo-2:        #FFF4EE;
  --fundo-3:        #F0E8E2;
  --texto:          #1A1A2E;
  --texto-muted:    #5A5A72;
  --branco:         #FFFFFF;

  /* Gradientes */
  --grad-laranja: linear-gradient(135deg, #FF5429 0%, #FFA939 100%);
  --grad-fundo:   linear-gradient(135deg, #FFFAF7 0%, #FFF4EE 100%);
  --grad-escuro:  linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 100%);

  /* Sombras */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 30px rgba(0,0,0,0.09);
  --shadow-lg:  0 12px 50px rgba(0,0,0,0.13);
  --shadow-cta: 0 8px 24px rgba(255,84,41,0.35);

  /* Tipografia */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Bordas */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill:50px;

  /* Transições */
  --transition: 0.3s ease;
}

/* ── 2. RESET E BASE ── */
*, *::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: var(--fundo-1);
  color: var(--texto);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ── 3. TIPOGRAFIA GLOBAL ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--texto);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p {
  font-size: 1rem;
  color: var(--texto-muted);
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: var(--texto);
}

/* ── 4. LAYOUT GLOBAL ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__title {
  margin-bottom: 16px;
}

.section__title--light {
  color: var(--branco);
}

.section__subtitle {
  font-size: 1.1rem;
}

.section__subtitle--light {
  color: rgba(255,255,255,0.8);
}

/* ── 5. BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-laranja);
  color: var(--branco);
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,84,41,0.45);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--laranja);
  border-color: var(--laranja);
}

.btn--outline:hover {
  background: var(--laranja);
  color: var(--branco);
  transform: translateY(-3px);
}

.btn--white {
  background: var(--branco);
  color: var(--laranja);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn--white:hover {
  background: var(--escuro);
  color: var(--branco);
  transform: translateY(-3px);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
  padding: 18px 24px;
  font-size: 1rem;
  margin-top: 24px;
}

/* ── 6. ANIMAÇÕES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── 7. WAVE SEPARATORS ── */
.wave {
  line-height: 0;
  overflow: hidden;
}

.wave svg {
  display: block;
  width: 100%;
}

/* ── 8. HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,250,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  padding: 16px 0;
}

.header--scrolled {
  padding: 10px 0;
  border-bottom-color: rgba(255,84,41,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo img {
  height: 46px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--texto);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--laranja);
  background: var(--fundo-2);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__hamburger.hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.hamburger--open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 9. HERO ── */
.hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--grad-fundo);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,169,57,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fundo-2);
  border: 1px solid rgba(255,84,41,0.2);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--laranja);
  margin-bottom: 24px;
  animation: slideIn 0.6s ease forwards;
}

.hero__title {
  margin-bottom: 20px;
  color: var(--texto);
}

.hero__title .highlight {
  background: var(--grad-laranja);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--texto-muted);
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--branco);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-head);
  color: var(--texto);
  animation: fadeInUp 0.6s ease forwards;
}

.hero__trust-item:nth-child(1) { animation-delay: 0.1s; }
.hero__trust-item:nth-child(2) { animation-delay: 0.2s; }
.hero__trust-item:nth-child(3) { animation-delay: 0.3s; }
.hero__trust-item:nth-child(4) { animation-delay: 0.4s; }

.hero__trust-icon {
  font-size: 1.1rem;
}

.hero__trust strong {
  color: var(--laranja);
}

/* Hero Image */
.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 500px;
}

.hero__image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--fundo-2) 0%, #FFE8D6 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px dashed rgba(255,84,41,0.25);
  box-shadow: var(--shadow-lg);
}

.hero__image-placeholder span {
  font-size: 4rem;
}

.hero__image-placeholder p {
  text-align: center;
  font-weight: 500;
  color: var(--texto-muted);
}

/* ── 10. PROBLEMA ── */
.problema {
  background: var(--fundo-2);
  padding-top: 80px;
}

.problema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.problema__card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--laranja);
  transition: all var(--transition);
}

.problema__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.problema__card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.problema__card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--texto);
}

.problema__card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.problema__transicao {
  text-align: center;
  background: var(--grad-laranja);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
}

.problema__transicao p {
  font-size: 1.15rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--branco);
}

.problema__transicao strong {
  color: var(--branco);
}

/* ── 11. SOLUÇÃO ── */
.solucao {
  background: var(--fundo-1);
}

.solucao__quote {
  background: var(--grad-laranja);
  border-radius: var(--radius-xl);
  padding: 48px 64px;
  text-align: center;
  margin-bottom: 64px;
  box-shadow: var(--shadow-cta);
}

.solucao__quote p {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--branco);
  line-height: 1.6;
  margin-bottom: 16px;
}

.solucao__quote p strong {
  color: var(--branco);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
}

.solucao__quote cite {
  font-style: normal;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.solucao__pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solucao__pilar {
  text-align: center;
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.solucao__pilar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.solucao__pilar-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--fundo-2);
  border-radius: 50%;
  margin: 0 auto 24px;
}

.solucao__pilar h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* ── 12. SERVIÇOS ── */
.servicos {
  background: var(--fundo-1);
}

.servicos__tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.servicos__tab {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--laranja);
  color: var(--laranja);
  background: var(--branco);
  transition: all var(--transition);
  cursor: pointer;
}

.servicos__tab:hover {
  background: var(--fundo-2);
  transform: translateY(-2px);
}

.servicos__tab--active {
  background: var(--grad-laranja);
  color: var(--branco);
  border-color: transparent;
  box-shadow: var(--shadow-cta);
}

.servicos__content {
  display: none;
  animation: fadeInUp 0.4s ease forwards;
}

.servicos__content--active {
  display: block;
}

.servicos__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.servicos__info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--texto);
}

.servicos__info > p {
  margin-bottom: 32px;
  font-size: 1rem;
}

.servicos__detalhe {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--branco);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--laranja);
  box-shadow: var(--shadow-sm);
}

.servicos__detalhe h4 {
  margin-bottom: 10px;
  color: var(--texto);
  font-size: 0.95rem;
}

.servicos__detalhe p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.servicos__detalhe ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.servicos__detalhe ul li {
  font-size: 0.9rem;
  color: var(--texto-muted);
  padding-left: 4px;
}

.servicos__preco-destaque {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--laranja) !important;
  font-size: 1rem !important;
}

.servicos__horarios {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--fundo-2);
  border-radius: var(--radius-md);
}

.servicos__horarios h4 {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.servicos__horario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.servicos__horario-grid div strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--laranja);
}

.servicos__horario-grid div p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--texto-muted);
}

.servicos__requisitos {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--branco);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.servicos__requisitos h4 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.servicos__requisitos ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.servicos__requisitos ul li {
  font-size: 0.875rem;
  color: var(--texto-muted);
}

/* Tabela de Preços */
.tabela-precos {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,84,41,0.1);
  position: sticky;
  top: 100px;
}

.tabela-precos h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--texto);
}

.tabela-precos table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.tabela-precos thead tr {
  background: var(--escuro);
  color: var(--branco);
}

.tabela-precos thead th {
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.5px;
}

.tabela-precos tbody tr:nth-child(even) {
  background: var(--fundo-1);
}

.tabela-precos tbody tr:nth-child(odd) {
  background: var(--branco);
}

.tabela-precos tbody td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--texto-muted);
  border-bottom: 1px solid var(--fundo-3);
  vertical-align: middle;
}

.tabela-precos tbody td strong {
  color: var(--texto);
  font-size: 0.875rem;
}

.tabela-precos tbody td small {
  display: block;
  font-size: 0.75rem;
  color: var(--texto-muted);
  margin-top: 2px;
}

.tabela-precos .text-center {
  text-align: center;
}

.row-destaque {
  background: rgba(255,84,41,0.05) !important;
}

.row-destaque td {
  border-left: 3px solid var(--laranja);
}

.preco {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--laranja);
}

.preco-destaque {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--laranja);
}

.servicos__familia {
  margin: 20px 0;
  padding: 20px;
  background: var(--fundo-2);
  border-radius: var(--radius-md);
}

.servicos__familia h5 {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.servicos__familia p {
  font-size: 0.875rem;
}

.servicos__pagamento {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--fundo-1);
  border-radius: var(--radius-sm);
  border: 1px solid var(--fundo-3);
}

.servicos__pagamento p {
  font-size: 0.8rem;
  margin: 0;
  color: var(--texto-muted);
  line-height: 1.6;
}

/* ── 13. CERTIFICAÇÕES ── */
.certificacoes {
  background: var(--escuro);
  padding: 100px 0;
}

.certificacoes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert__card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 3/4;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.cert__card:hover {
  transform: scale(1.04);
  border-color: var(--laranja);
  box-shadow: 0 8px 30px rgba(255,84,41,0.3);
}

.cert__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.cert__card:hover img {
  transform: scale(1.06);
}

.cert__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,84,41,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cert__card:hover .cert__overlay {
  background: rgba(255,84,41,0.65);
}

.cert__overlay span {
  color: var(--branco);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}

.cert__card:hover .cert__overlay span {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox--open {
  display: flex;
}

.lightbox__content {
  max-width: 800px;
  max-height: 90vh;
  width: 100%;
}

.lightbox__content img {
  max-height: 85vh;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox__close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.lightbox__close:hover {
  background: var(--laranja);
  transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--laranja);
}

/* ── 14. DEPOIMENTOS ── */
.depoimentos {
  background: var(--fundo-2);
  overflow: hidden;
}

.depoimentos__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.depoimentos__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}

.depoimento__card {
  flex-shrink: 0;
  width: 33.3333%;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.depoimento__card-inner {
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.depoimento__card-inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.depoimento__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--laranja);
  flex-shrink: 0;
}

.depoimento__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depoimento__avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  border: 3px solid var(--laranja);
  flex-shrink: 0;
}

.depoimento__stars {
  font-size: 1rem;
  letter-spacing: 2px;
}

.depoimento__texto {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--texto);
  position: relative;
  flex: 1;
  quotes: "\201C" "\201D";
}

.depoimento__texto::before {
  content: open-quote;
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--laranja);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
  font-style: normal;
}

.depoimento__autor {
  margin-top: auto;
}

.depoimento__autor strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto);
}

.depoimento__autor span {
  font-size: 0.8rem;
  color: var(--texto-muted);
}

.depoimentos__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.depoimentos__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--branco);
  color: var(--laranja);
  border: 2px solid var(--laranja);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.depoimentos__btn:hover {
  background: var(--laranja);
  color: var(--branco);
  transform: scale(1.1);
}

.depoimentos__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.depoimentos__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,84,41,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.depoimentos__dot--active {
  background: var(--laranja);
  width: 28px;
  border-radius: 5px;
}

/* Responsividade depoimentos */
@media (max-width: 1024px) {
  .depoimento__card { width: 50%; }
}

@media (max-width: 640px) {
  .depoimento__card { width: 100%; }
}

/* Instagram */
.instagram__section {
  margin-top: 80px;
  text-align: center;
}

.instagram__titulo {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.instagram__sub {
  margin-bottom: 32px;
}

.instagram__widget {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,84,41,0.2);
}

.instagram__placeholder {
  padding: 48px;
  background: var(--fundo-1);
  text-align: center;
}

.instagram__placeholder p {
  font-size: 1rem;
  margin-bottom: 8px;
}

.instagram__placeholder a {
  color: var(--laranja);
  font-weight: 600;
  text-decoration: underline;
}

/* ── 15. FAQ ── */
.faq {
  background: var(--fundo-1);
}

.faq__lista {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq__item {
  border-bottom: 1px solid var(--fundo-3);
  overflow: hidden;
}

.faq__pergunta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--texto);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq__pergunta:hover {
  color: var(--laranja);
}

.faq__icone {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--laranja);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq__item--open .faq__icone {
  transform: rotate(180deg);
}

.faq__resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
  padding-bottom: 0;
}

.faq__item--open .faq__resposta {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 22px;
}

.faq__resposta p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--texto-muted);
  padding: 0 8px;
}

.faq__resposta p strong {
  color: var(--laranja);
}

/* ── 16. LOCALIZAÇÃO ── */
.localizacao {
  background: var(--branco);
}

.localizacao__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.localizacao__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.localizacao__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.localizacao__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--fundo-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.localizacao__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--texto);
}

.localizacao__item p,
.localizacao__item a {
  font-size: 0.9rem;
  color: var(--texto-muted);
  line-height: 1.6;
  margin: 0;
}

.localizacao__item a {
  color: var(--laranja);
  font-weight: 600;
  transition: opacity var(--transition);
}

.localizacao__item a:hover {
  opacity: 0.8;
}

.localizacao__mapa iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ── 17. CTA FINAL ── */
.cta-final {
  background: var(--grad-laranja);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '🐾';
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  top: -30px;
  left: -40px;
  pointer-events: none;
}

.cta-final::after {
  content: '🐾';
  position: absolute;
  font-size: 160px;
  opacity: 0.05;
  bottom: -20px;
  right: -20px;
  pointer-events: none;
}

.cta-final__content {
  position: relative;
  z-index: 1;
}

.cta-final__titulo {
  color: var(--branco);
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.cta-final__sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ── 18. FOOTER ── */
.footer {
  background: var(--escuro);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__brand img {
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--laranja);
  transition: opacity var(--transition);
}

.footer__social:hover {
  opacity: 0.8;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h4 {
  color: var(--branco);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--laranja);
}

.footer__contato {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contato h4 {
  color: var(--branco);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer__contato a,
.footer__contato p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  margin: 0;
}

.footer__contato a:hover {
  color: var(--laranja);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--laranja);
}

/* ── 19. WHATSAPP FLUTUANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 999;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition);
  animation: pulse 2.5s infinite;
}

.whatsapp-float--visible {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 76px;
  background: var(--escuro);
  color: var(--branco);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--escuro);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ── 20. COOKIE BANNER ── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--escuro);
  color: rgba(255,255,255,0.9);
  padding: 20px 40px;
  z-index: 998;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  border-top: 3px solid var(--laranja);
}

.cookie-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}

.cookie-banner a {
  color: var(--laranja);
  text-decoration: underline;
}

/* ── 21. RESPONSIVIDADE ── */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero__container { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-top: 120px; }
  .hero__image { display: none; }
  .hero__title { font-size: 2.25rem; }
  .hero__trust { justify-content: flex-start; }
  .problema__grid { grid-template-columns: repeat(2, 1fr); }
  .solucao__pilares { grid-template-columns: repeat(2, 1fr); }
  .solucao__pilares .solucao__pilar:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .servicos__layout { grid-template-columns: 1fr; }
  .tabela-precos { position: static; }
  .certificacoes__grid { grid-template-columns: repeat(3, 1fr); }
  .localizacao__layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .depoimento__card { min-width: calc(50% - 12px); }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 16px; }
  .section__header { margin-bottom: 40px; }

  /* Header mobile */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85vw;
    max-width: 320px;
    height: 100vh;
    background: var(--branco);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 6px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transition: right var(--transition);
    z-index: 999;
  }

  .header__nav.nav--open { right: 0; }
  .header__nav-link { width: 100%; padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--fundo-3); }
  .header__nav .btn { width: 100%; margin-top: 16px; justify-content: center; }
  .header__hamburger { display: flex; }
  .header__container { padding: 0 16px; }

  /* Hero mobile */
  .hero { padding-top: 100px; }
  .hero__container { padding-top: 20px; }
  .hero__title { font-size: 1.9rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 10px; }
  .hero__trust-item { font-size: 0.8rem; padding: 8px 12px; }

  /* Problema mobile */
  .problema__grid { grid-template-columns: 1fr; }

  /* Solução mobile */
  .solucao__quote { padding: 32px 24px; }
  .solucao__quote p { font-size: 1.05rem; }
  .solucao__pilares { grid-template-columns: 1fr; }
  .solucao__pilares .solucao__pilar:last-child { grid-column: span 1; max-width: 100%; }

  /* Serviços mobile */
  .servicos__tabs { gap: 8px; }
  .servicos__tab { padding: 12px 20px; font-size: 0.85rem; }
  .servicos__horario-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Certificações mobile */
  .certificacoes__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Depoimentos mobile */
  .depoimento__card { min-width: 100%; }

  /* Localização mobile */
  .localizacao__mapa iframe { height: 280px; }

  /* CTA Final mobile */
  .cta-final { padding: 72px 0; }
  .cta-final__titulo { font-size: 1.6rem; }

  /* Footer mobile */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Cookie mobile */
  .cookie-banner { padding: 20px 16px; flex-direction: column; }

  /* WhatsApp mobile */
  .whatsapp-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .whatsapp-float__tooltip { display: none; }

  /* Lightbox mobile */
  .lightbox__prev { left: 8px; width: 40px; height: 40px; font-size: 1rem; }
  .lightbox__next { right: 8px; width: 40px; height: 40px; font-size: 1rem; }
}

/* Mobile pequeno */
@media (max-width: 400px) {
  .hero__title { font-size: 1.65rem; }
  .certificacoes__grid { grid-template-columns: repeat(2, 1fr); }
  .servicos__tab { padding: 10px 14px; font-size: 0.8rem; }
}

/* ── 22. UTILITÁRIOS ── */
.text-center { text-align: center; }
.text-laranja { color: var(--laranja); }

/* Estilo scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--fundo-1); }
::-webkit-scrollbar-thumb { background: var(--laranja); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--laranja-2); }

/* Seleção de texto */
::selection {
  background: rgba(255,84,41,0.2);
  color: var(--texto);
}