/* ===== NAVBAR ===== */
.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.navbar .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 46px;
  width: auto;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--texto-cinza);
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--preto);
}

.nav-links a.ativo {
  color: var(--dourado);
  font-weight: 600;
}

.nav-links a.ativo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--dourado);
  border-radius: 2px;
}

.nav-links a.nav-link-whatsapp {
  display: none;
}

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dourado);
  color: var(--branco);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--dourado-hover);
  transform: translateY(-1px);
}

.nav-cta i {
  font-size: 16px;
}

/* ===== HERO ===== */
.hero {
  padding: 0;
  scroll-margin-top: var(--nav-height);
}

.hero-banner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 40px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  cursor: grab;
}

.hero-carousel:active {
  cursor: grabbing;
}

.hero-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-img.ativo {
  position: relative;
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}

.dot.ativo {
  background: var(--branco);
  width: 20px;
  border-radius: 4px;
}

.hero-cta {
  position: absolute;
  left: 8%;
  top: 78%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dourado);
  color: var(--branco);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.hero-cta:hover {
  background: var(--dourado-hover);
  transform: translateY(-1px);
}

.hero-badge {
  position: absolute;
  right: 6%;
  bottom: 6%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.15);
  min-width: 210px;
  animation: flutuar 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.hero-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.22);
}

@keyframes flutuar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.badge-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dourado);
}

.badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dourado);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-left: -45px;
}

.badge-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 12px;
  margin-top: -20px;
}

.badge-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.badge-row span {
  color: var(--texto-cinza);
}

.badge-row strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--preto);
}

/* ===== ESPECIALIDADES ===== */
.especialidades {
  padding: 80px 0;
  scroll-margin-top: var(--nav-height);
}

.especialidades h2 {
  font-family: var(--fonte-titulo);
  font-size: 32px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 10px;
}

.especialidades-texto {
  font-size: 16px;
  color: var(--texto-cinza);
  margin-bottom: 40px;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  gap: 24px;
}

.especialidade-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px -14px rgba(0,0,0,0.12);
}

.especialidade-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.especialidade-card h3 {
  font-family: var(--fonte-titulo);
  font-size: 18px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 10px;
}

.especialidade-card p {
  font-size: 15px;
  color: var(--texto-cinza);
  line-height: 1.5;
  max-width: 210px;
}

/* ===== SOBRE ===== */
.sobre {
  background: #FBF9F7;
  padding: 100px 0;
}

.sobre-container {
  display: grid;
  grid-template-columns: minmax(0, 460px) 1fr;
  align-items: center;
  gap: 60px;
}

.sobre-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 14px;
}

.sobre-texto h2 {
  font-family: var(--fonte-titulo);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--preto);
  margin-bottom: 18px;
}

.sobre-texto p {
  font-size: 16px;
  color: var(--texto-cinza);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 400px;
}

.sobre-lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.sobre-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--preto);
}

.sobre-lista i {
  color: var(--dourado);
  font-size: 18px;
  flex-shrink: 0;
}

.sobre-cta {
  display: inline-flex;
  align-items: center;
  background: var(--dourado);
  color: var(--branco);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sobre-cta:hover {
  background: var(--dourado-hover);
  transform: translateY(-1px);
}

.sobre-imagem img {
  width: 100%;
  height: auto;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 80px 0;
}

.depoimentos h2 {
  font-family: var(--fonte-titulo);
  font-size: 32px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 40px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch;
  gap: 32px;
  height: 420px;
}

/* Carrossel (esquerda) */
.depoimentos-carousel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.depoimentos-viewport {
  flex: 1;
  overflow: hidden;
}

.depoimentos-track {
  display: flex;
  gap: 24px;
  height: 100%;
  transition: transform 0.4s ease;
}

.depoimento-card {
  flex: 0 0 calc(50% - 12px);
  background: #FBFAF5;
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.depoimento-aspas {
  font-size: 28px;
  color: var(--dourado);
  margin-bottom: 16px;
}

.depoimento-texto {
  font-size: 15px;
  line-height: 1.6;
  color: var(--preto);
  margin-bottom: 24px;
}

.depoimento-rodape {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-google {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.depoimento-estrelas {
  display: flex;
  gap: 1px;
}

.depoimento-estrelas i {
  font-size: 12px;
  color: var(--dourado);
}

.depoimento-iniciais {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dourado);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Setas */
.depoimentos-setas {
  display: flex;
  gap: 12px;
}

.seta-depoimento {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--branco);
  border: 1px solid var(--dourado);
  color: var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.seta-depoimento:hover {
  background: var(--dourado);
  color: var(--branco);
}

/* Vídeo (direita) */
.depoimento-video {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.depoimento-video-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px) brightness(0.6);
  transform: scale(1.15);
}

.depoimento-video-principal {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.depoimento-legenda {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dourado);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.depoimento-legenda-icone {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--branco);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.depoimento-legenda-texto {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.depoimento-legenda-texto strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--branco);
}

.depoimento-legenda-texto span {
  font-size: 13px;
  color: var(--branco);
  opacity: 0.9;
}

.depoimento-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--branco);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.depoimento-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.depoimento-play i {
  font-size: 28px;
  color: var(--dourado);
  margin-left: 2px;
}

.depoimento-play.escondido {
  display: none;
}

/* ===== EQUIPE ===== */
.equipe {
  padding: 80px 0;
  text-align: center;
  scroll-margin-top: var(--nav-height);
}

.equipe h2 {
  font-family: var(--fonte-titulo);
  font-size: 32px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 10px;
}

.equipe-texto {
  font-size: 16px;
  color: var(--texto-cinza);
  margin-bottom: 40px;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 24px;
  justify-content: center;
  text-align: left;
}

.equipe-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--branco);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px -14px rgba(0,0,0,0.12);
}

.equipe-foto {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.equipe-info strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 18px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 2px;
}

.equipe-info span {
  font-size: 14px;
  color: var(--texto-cinza);
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 80px 0;
}

.cta-banner {
  position: relative;
  background: url('../image/transformar.png') center/cover no-repeat;
  border-radius: 24px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--branco);
  color: var(--preto);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 10px 10px 26px;
  border: 1px solid var(--dourado);
  border-radius: 16px;
  transition: transform 0.2s ease;
}

.cta-banner-btn span {
  display: flex;
  align-items: center;
  padding-right: 14px;
  border-right: 1px solid var(--dourado);
  align-self: stretch;
}

.cta-banner-btn i {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
  color: var(--preto);
}

.cta-banner-btn:hover {
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.8fr;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-marca p {
  font-size: 14px;
  color: var(--texto-cinza);
  line-height: 1.5;
  max-width: 220px;
}

.footer-coluna h4 {
  font-family: var(--fonte-titulo);
  font-size: 15px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 18px;
}

.footer-coluna ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-coluna a {
  font-size: 14px;
  color: var(--texto-cinza);
  transition: color 0.2s ease;
}

.footer-coluna a:hover {
  color: var(--dourado);
}

.footer-contato li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--texto-cinza);
  line-height: 1.5;
}

.footer-contato i {
  color: var(--dourado);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-card {
  background: #F9F3E6;
  border-radius: 16px;
  padding: 28px 28px;
}

.footer-card h4 {
  font-family: var(--fonte-titulo);
  font-size: 15px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 10px;
}

.footer-card p {
  font-size: 14px;
  color: var(--texto-cinza);
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dourado);
  color: var(--branco);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-cta:hover {
  background: var(--dourado-hover);
  transform: translateY(-1px);
}

.footer-cta i {
  font-size: 16px;
}