*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FFB91D;
  --orange-dark: #e6a400;
  --gray-dark: #333333;
  --gray-text: #5F5F5F;
  --black: #111111;
  --white: #FFFFFF;
  --font: 'Inter', sans-serif;

  /* Sistema de espaçamento global */
  --gutter: clamp(24px, 5vw, 80px);
  --section-py: clamp(64px, 8vw, 100px);
  --max-width: 1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

p {
  line-height: 1.5;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

/* ========== NAVBAR ========== */
.navbar-wrap {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
}

.navbar-wrap nav {
  background: var(--white);
  border-radius: 60px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(0,0,0,0.05);
  color: var(--black);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(0,0,0,0.30);
  line-height: 1;
}

.btn-whatsapp:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-whatsapp svg { 
  width: 18px; 
  height: 18px; 
  flex-shrink: 0; 
  margin-top: 1px;
}

@media (max-width: 600px) {
  .btn-whatsapp svg {
    margin-top: -2px;
  }
}

.btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gray-dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-1px);
}

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--gray-dark);
  line-height: 1;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 22px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: block;
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.mobile-menu-ctas .btn-whatsapp,
.mobile-menu-ctas .btn-dark {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 25px;
  font-size: 16px;
  color: var(--white);
  border-bottom: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1F1F1F url('public/foto-capa.webp') center / cover no-repeat;
  z-index: 0;
}

@media (min-width: 1920px) {
  .hero-bg {
    background: #1F1F1F url('public/foto-capa.webp') 10% center / 130% no-repeat;
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(31,31,31,0.82) 0%,
    rgba(31,31,31,0.60) 25%,
    rgba(31,31,31,0.20) 45%,
    transparent 60%
  );
}

.hero-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px 0 100px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.hero-tag span { color: var(--white); font-weight: 400; }

.hero-title {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1.5px;
  max-width: 640px;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.45;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  height: 60px;
  min-width: 250px;
  padding: 0 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.30);
  text-shadow: 0 1px 1px rgba(0,0,0,0.30);
}

.btn-hero-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-hero-primary svg { 
  width: 20px; 
  height: 20px; 
}

.btn-hero-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  height: 60px;
  min-width: 250px;
  padding: 0 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
}

.hero-placeholder-label {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-family: var(--font);
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 3;
  pointer-events: none;
}

/* ========== CONVÊNIOS E SERVIÇOS ========== */
.servicos {
  background: var(--white);
  padding: var(--section-py) var(--gutter);
}

.convenios-wrap {
  width: 100%;
}

.section-spacer {
  height: clamp(60px, 10vw, 100px);
}

.convenios-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-text);
  letter-spacing: 0.5px;
  margin-bottom: 44px;
}

.convenios-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 6vw, 80px);
  flex-wrap: nowrap;
}

.convenio-item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.2s, filter 0.2s;
}

.convenio-item:hover {
  opacity: 0.85;
  filter: grayscale(0.6);
}

.convenio-item img {
  height: clamp(40px, 5vw, 65px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}



/* ========== SERVIÇOS CARDS ========== */
.servicos-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-text);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Grade de fotos */
.servicos-fotos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.servico-foto {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ddd;
}

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

.foto-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #aaa;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 16px;
}

/* Grade de cards */
.servicos-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.servico-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.08);
}

.servico-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.servico-card-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ========== CTA BAR ========== */
.cta-bar {
  margin-top: 48px;
  background: var(--gray-dark);
  border-radius: 60px;
  padding: 12px 12px 12px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-bar-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  flex: 1;
}

.cta-bar-btn {
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  text-shadow: 0 1px 1px rgba(0,0,0,0.30);
}

.cta-bar-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .hamburger { display: flex; }
  nav { padding: 12px 20px; }
  .navbar-wrap { top: 16px; }

  .servicos-fotos,
  .servicos-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-top: 200px;
    padding-bottom: 80px;
  }

  .hero-title { 
    font-size: clamp(48px, 13vw, 64px);
    letter-spacing: -0.8px; 
    max-width: 100%; 
  }
  .hero-title span { white-space: nowrap; }
  .hero-subtitle { max-width: 100%; }

  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; }
  .hero-deco { width: 55px; height: auto; }

  .convenios-logos { 
    gap: 24px; 
    flex-wrap: wrap;
  }

  /* Adjust hero background for mobile */
  .hero-bg {
    background-position: 70% center;
    background-size: cover;
  }
  .hero-bg::after {
    background: linear-gradient(
      100deg,
      rgba(31,31,31,0.92) 0%,
      rgba(31,31,31,0.80) 35%,
      rgba(31,31,31,0.50) 60%,
      rgba(31,31,31,0.20) 80%,
      transparent 100%
    );
  }
  /* .convenio-item img height removed in favor of clamp */


  .servicos-fotos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .servicos-cards { grid-template-columns: 1fr; }

  .cta-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    border-radius: 20px;
    gap: 16px;
    text-align: center;
  }

  .cta-bar-btn { text-align: center; display: block; width: 100%; box-sizing: border-box; }

  .cta-bar-wrap { padding: 0; }
}
/* ========== CTA BAR (refactor) ========== */
/* Sobrescreve o estilo antigo dentro do servicos — agora é externo */
.cta-bar-wrap {
  padding: 0 var(--gutter);
  margin-top: 48px;
  position: relative;
  z-index: 10;
}

.cta-bar { margin-top: 0; }

/* ========== DIFERENCIAIS ========== */
.diferenciais {
  position: relative;
  background: #222222;
  padding: var(--section-py) var(--gutter);
  overflow: hidden;
}

.diferenciais-glow {
  position: absolute;
  top: -220px;
  right: -80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,185,29,.11) 0%, rgba(255,185,29,.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.diferenciais-deco {
  position: absolute;
  bottom: -120px;
  right: -50px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.diferenciais-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.diferenciais-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}

.diferenciais-label strong {
  color: var(--orange);
  font-weight: 700;
}

.diferenciais-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 48px;
  max-width: 680px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  align-items: start;
}

.diferenciais-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diferencial-card {
  border-radius: 20px;
  padding: 28px 28px;
}

.diferencial-card--main {
  background: var(--orange);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 0;
}

.diferencial-card--light {
  background: var(--white);
  flex: 1;
  padding: 20px 24px;
}

.diferencial-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.diferencial-icon svg { width: 24px; height: 24px; color: var(--orange); }

.diferencial-icon--light { background: var(--orange); }
.diferencial-icon--light svg { color: var(--black); }

.diferencial-card-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.diferencial-card-text {
  font-size: 14px;
  color: rgba(0,0,0,.72);
  line-height: 1.55;
  margin-bottom: 24px;
}

.certificados-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  align-self: flex-end;
  margin-right: -30px;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: 0;
  display: block;
}

/* Responsive Diferenciais */
@media (max-width: 1080px) {
  .diferenciais-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .diferenciais { padding: 60px 24px 48px; }
  .diferenciais-title { letter-spacing: -1px; }

}

/* ========== SOBRE NÓS ========== */
.sobre {
  background: var(--white);
  padding: var(--section-py) var(--gutter);
}

.sobre-container {
  max-width: var(--max-width);
  margin: 0 auto;
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.sobre-foto {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
  flex-shrink: 0;
}

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

.sobre-foto-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.sobre-content .section-label {
  margin-bottom: 16px;
}

.sobre-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 28px;
}

.sobre-text {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 18px;
}

.btn-sobre {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, transform 0.15s;
  text-shadow: 0 1px 1px rgba(0,0,0,0.30);
}

.btn-sobre:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* Sombra para ícones em botões laranjas */
.btn-whatsapp svg,
.btn-hero-primary svg,
.btn-sobre svg,
.btn-unidade svg,
.footer-btn-wa svg {
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.30));
}

@media (max-width: 1080px) {
  .sobre-container { grid-template-columns: 1fr; }
  .sobre-foto { aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  .sobre-container { margin-top: 32px; }
  .btn-sobre { display: flex; justify-content: center; width: 100%; box-sizing: border-box; }
}

/* ========== LOCALIZAÇÃO ========== */
.localizacao {
  background: var(--white);
  padding: var(--section-py) var(--gutter);
}

.localizacao-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.localizacao-container .section-header {
  margin-bottom: 48px;
}

/* Grid de cada unidade */
.unidade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.unidade-grid--reverse {
  direction: rtl;
}

.unidade-grid--reverse > * {
  direction: ltr;
}

/* Card de info (escuro) */
.unidade-info {
  background: #2a2a2a;
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.unidade-nome {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 32px;
}

.unidade-detalhes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.unidade-detalhes li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.unidade-detalhes li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.unidade-detalhes li span {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}

.btn-unidade {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-shadow: 0 1px 1px rgba(0,0,0,0.30);
}

.btn-unidade:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* Coluna com foto + mapa */
.unidade-midia {
  display: flex;
  flex-direction: column;
  height: auto; 
  min-height: 150px; 
  gap: 16px;
}

.unidade-foto {
  border-radius: 16px;
  overflow: hidden;
  height: 260px; 
  flex: none; 
  background: #ddd;
}

.unidade-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.unidade-foto .foto-placeholder {
  height: 100%;
  min-height: 260px; 
}

.unidade-mapa {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-height: 160px;
}

.unidade-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 1080px) {
  .unidade-grid,
  .unidade-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .unidade-grid--reverse .unidade-info {
    order: -1;
  }

  .unidade-midia {
    flex-direction: row;
    min-height: 0; 
    gap: 16px;
  }

  .unidade-foto .foto-placeholder { min-height: 260px; }

  .unidade-mapa iframe { min-height: 0; }
}

@media (max-width: 600px) {
  .unidade-midia { flex-direction: column; height: auto; gap: 16px; }
  .unidade-foto { min-height: 260px; }
  .unidade-mapa { min-height: 160px; }
  .unidade-info { padding: 28px 24px; }
  .btn-unidade { display: flex; justify-content: center; width: 100%; box-sizing: border-box; }
  .localizacao { padding-top: 0; padding-bottom: 0; }
}

/* ========== CTA WHATSAPP ========== */
.cta-whatsapp {
  background: transparent;
  padding: clamp(32px, 4vw, 56px) var(--gutter);
  position: relative;
  z-index: 10;
}

@media (max-width: 1080px) {
  .cta-whatsapp {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
  }
}

.cta-whatsapp-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--orange);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; 
  overflow: visible; 
  min-height: 380px;
  position: relative;
}

.cta-whatsapp-content {
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.cta-whatsapp-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.cta-whatsapp-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.cta-whatsapp-text {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 400px;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

/* Área do celular */
.cta-whatsapp-phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}

.cta-phone-img {
  position: absolute;
  bottom: 0; /* Anexado ao fundo do CTA laranja */
  right: clamp(40px, 5vw, 72px); /* Margem igual à da esquerda (padding do texto) */
  height: 110%; 
  width: auto;
  display: block;
  filter: drop-shadow(0 -8px 25px rgba(0,0,0,0.12)); 
  pointer-events: none;
}

/* ========== FOOTER ========== */
.footer {
  background: #1e1e1e;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 1.4fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: flex-start;
}

/* Logo col */
.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

/* Columns */
.footer-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.footer-col-title svg { flex-shrink: 0; color: var(--orange); }

.footer-divider {
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Endereços */
.footer-address {
  margin-bottom: 20px;
}

.footer-address p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-address strong {
  color: var(--white);
  font-weight: 700;
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* Contato */
.footer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-btn-wa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.footer-btn-wa:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s;
}

.footer-instagram:hover { color: var(--white); }
.footer-instagram svg { color: var(--orange); }

.footer-bottom {
  padding: 0 var(--gutter);
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom p, 
.footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin: 0;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1080px) {
  .cta-whatsapp-inner { 
    grid-template-columns: 1fr; 
    min-height: auto; 
    text-align: center;
    overflow: hidden; 
  }
  .cta-whatsapp-content {
    align-items: center;
    padding: 48px 24px 24px;
  }
  .cta-whatsapp-phone { 
    display: flex; 
    justify-content: center;
    height: 220px;
    margin-top: 20px;
  }
  .cta-phone-img {
    position: relative;
    right: auto;
    height: 270px; 
    bottom: 0;
    transform: translateY(25px); 
    filter: drop-shadow(0 -5px 15px rgba(0,0,0,0.08));
  }
}

@media (min-width: 1081px) {
  .cta-whatsapp {
    padding-bottom: 0;
  }
  .footer {
    margin-top: -120px;
  }
  .footer-inner {
    padding: clamp(120px, 15vw, 180px) 0 80px;
  }
}

@media (max-width: 600px) {
  .cta-whatsapp-inner { border-radius: 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-btn-wa { white-space: normal; }
}

/* ========================================
   ANIMAÇÕES DE ENTRADA (viewport-triggered)
   ======================================== */

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1);    }
}

/* Estado inicial — invisível antes de entrar na viewport */
.anim-title,
.anim-text,
.anim-card {
  opacity: 0;
}

/* Animações disparadas pelo IntersectionObserver */
.anim-title.is-visible {
  animation: fadeSlideUp 500ms ease-out both;
}

.anim-text.is-visible {
  animation: fadeIn 500ms ease-out both;
}

.anim-card.is-visible {
  animation: fadeScale 500ms ease-out both;
}

/* Respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .anim-title,
  .anim-text,
  .anim-card {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}