:root {
  --terracota: #C4621D;
  --terracota-light: #e07840;
  --cinza-fundo: #b8b8b8;
  --cinza-escuro: #3a3a3a;
  --cinza-medio: #6b6b6b;
  --branco: #f9f7f5;
  --sombra: rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--branco);
  color: var(--cinza-escuro);
  overflow-x: hidden;
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4vw;
  background: rgba(249, 247, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(196, 98, 29, 0.15);
}

.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--cinza-escuro);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinza-medio);
  text-decoration: none;
  transition: color 0.3s;
}

nav ul a:hover {
  color: var(--terracota);
}


.nav-link-destaque {
  color: var(--terracota) !important;
  font-weight: 400;
}

.nav-link-destaque:hover {
  color: #a84e15 !important;
}

.nav-link-ativo {
  color: var(--terracota) !important;
  font-weight: 500;
}


.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1020;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cinza-escuro);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.nav-hamburger.ativo span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.ativo span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.ativo span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(249, 247, 245, 0.97);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  padding: 6rem 2.5rem 3rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1010;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0);
  border-left: 0.5px solid rgba(196, 98, 29, 0.15);
}

.nav-menu.aberto {
  transform: translateX(0);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}

.nav-menu-link {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cinza-medio);
  text-decoration: none;
  padding: 1.1rem 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
  transition: color 0.3s, padding-left 0.3s;
}

.nav-menu-link:hover {
  color: var(--terracota);
  padding-left: 0.5rem;
}

.nav-menu-destaque {
  color: var(--terracota);
  font-weight: 400;
  border-bottom: none;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
}

.nav-menu-destaque:hover {
  color: #a84e15;
}

.nav-menu-ativo {
  color: var(--terracota);
  font-weight: 500;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.nav-overlay.visivel {
  opacity: 1;
  visibility: visible;
}


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 184, 184, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 98, 29, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #d0cece 0%, #c2c0be 30%, #b5b3b0 60%, #c8c6c4 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4vw 4rem 8vw;
}

.hero-pretitulo {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-nome {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 600;
  color: var(--cinza-escuro);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 1.4vw, 1.9rem);
  letter-spacing: 0.08em;
  color: var(--terracota);
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cro {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--cinza-medio);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cinza-medio);
  max-width: 400px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero-acoes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.btn-primario {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--terracota);
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 10;
}

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

.btn-agendar {
  z-index: 50 !important;
  position: relative;
  pointer-events: auto !important;
}

.btn-secundario {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--cinza-escuro);
  color: var(--cinza-escuro);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-secundario:hover {
  background: var(--cinza-escuro);
  color: #fff;
  transform: translateY(-1px);
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-foto-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}


.hero-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(8%);
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}


.hero-foto-placeholder {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(184, 184, 184, 0.3) 0%, rgba(184, 184, 184, 0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards;
}

.hero-foto-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.hero-foto-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cinza-escuro);
  opacity: 0.4;
}

.hero-overlay-gradiente {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--branco) 0%, transparent 100%);
}


section {
  scroll-margin-top: 80px;
}

.sobre {
  padding: 8rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1.5rem;
}

.sobre-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cinza-escuro);
  margin-bottom: 1.5rem;
}

.sobre-titulo em {
  font-style: italic;
  color: var(--terracota);
}

.sobre-texto {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cinza-medio);
  margin-bottom: 1.2rem;
}

.sobre-citacao {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(196, 98, 29, 0.2);
}

.sobre-citacao blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--cinza-escuro);
  position: relative;
  padding-left: 1.2rem;
}

.sobre-citacao blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 2px;
  background: var(--terracota);
  opacity: 0.5;
  border-radius: 1px;
}


.carrossel-section {
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(249, 247, 245, 0.4) 0%, rgba(249, 247, 245, 0) 100%);
}

.carrossel-header {
  padding: 0 8vw;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.carrossel-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.carrossel-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--cinza-escuro);
  letter-spacing: -0.02em;
}

.carrossel-nav {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0;
}

.carr-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1.5px solid rgba(196, 98, 29, 0.2);
  background: rgba(249, 247, 245, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--cinza-escuro);
  backdrop-filter: blur(10px);
}

.carr-btn:hover {
  background: var(--terracota);
  border-color: var(--terracota);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(196, 98, 29, 0.25);
}

.carr-btn:active {
  transform: scale(0.95);
}

.carr-btn svg {
  pointer-events: none;
  transition: transform 0.3s ease;
}

.carrossel-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.carrossel-track-wrap:active {
  cursor: grabbing;
}

.carrossel-track {
  display: flex;
  gap: 2rem;
  padding: 0 8vw;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carr-slide {
  flex: 0 0 calc(33.333% - 1.35rem);
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(196, 98, 29, 0.08);
  background: #fff;
  animation: slideIn 0.6s ease-out forwards;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
}

.carr-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(196, 98, 29, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(196, 98, 29, 0.15);
}

.carr-slide-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
  background: linear-gradient(135deg, #e8e6e4 0%, #dcdad8 100%);
}

.carr-slide:hover .carr-slide-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.carr-slide-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4d2d0 0%, #c8c6c4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.carr-slide-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cinza-escuro);
  opacity: 0.4;
}

.carr-slide-info {
  padding: 1.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 247, 245, 0.8) 100%);
}

.carr-slide-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cinza-escuro);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.carr-slide-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--cinza-medio);
  line-height: 1.5;
}

.carrossel-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.carr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196, 98, 29, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
}

.carr-dot:hover {
  background: rgba(196, 98, 29, 0.4);
  transform: scale(1.15);
}

.carr-dot.ativo {
  background: var(--terracota);
  transform: scale(1.4);
  box-shadow: 0 4px 12px rgba(196, 98, 29, 0.35);
}

.carr-indicador {
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--cinza-medio);
  opacity: 0.7;
}

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


@media (max-width: 1024px) {
  .carr-slide {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .carrossel-section {
    padding: 4rem 0;
  }

  .carrossel-header {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 0 6vw;
    margin-bottom: 2.5rem;
  }

  .carrossel-nav {
    align-self: flex-start;
    gap: 0.4rem;
  }

  .carr-btn {
    width: 44px;
    height: 44px;
  }

  .carr-slide {
    flex: 0 0 calc(100% - 1rem);
    min-width: 260px;
    border-radius: 10px;
  }

  .carrossel-track {
    gap: 1.5rem;
    padding: 0 6vw;
  }

  .carr-slide-info {
    padding: 1.25rem 1.25rem;
  }

  .carr-slide-titulo {
    font-size: 0.95rem;
  }

  .carr-slide-desc {
    font-size: 0.75rem;
  }
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-bg {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 80%;
  height: 80%;
  background: rgba(196, 98, 29, 0.07);
  border-radius: 2px;
}


.sobre-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  filter: grayscale(5%);
}

.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #d0cece 0%, #c2c0be 100%);
  border-radius: 2px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.sobre-img-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cinza-escuro);
  opacity: 0.4;
}


.servicos {
  padding: 8rem 8vw;
  background: linear-gradient(135deg, #d2d0ce 0%, #c8c6c4 100%);
  position: relative;
  overflow: hidden;
}

.servicos::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.servicos-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.servicos-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.servicos-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--cinza-escuro);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  position: relative;
}

.servico-card {
  background: rgba(249, 247, 245, 0.75);
  backdrop-filter: blur(4px);
  padding: 2.5rem 2rem;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
  position: relative;
}

.servico-card:hover {
  background: rgba(249, 247, 245, 0.95);
  transform: translateY(-3px);
}

.servico-card-destaque {
  border: 1px solid rgba(196, 98, 29, 0.3);
  background: rgba(249, 247, 245, 0.92);
}

.servico-card-destaque:hover {
  border-color: var(--terracota);
}

.servico-tag-destaque {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracota);
  background: rgba(196, 98, 29, 0.08);
  border: 0.5px solid rgba(196, 98, 29, 0.25);
  padding: 0.25rem 0.7rem;
  border-radius: 1px;
  margin-bottom: 1rem;
}

.servico-icone {
  width: 36px;
  height: 36px;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.servico-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cinza-escuro);
  margin-bottom: 0.6rem;
}

.servico-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cinza-medio);
}


.implantes-cta {
  padding: 6rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.implantes-cta-texto {}

.implantes-cta-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.implantes-cta-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cinza-escuro);
  margin-bottom: 1.2rem;
}

.implantes-cta-titulo em {
  font-style: italic;
  color: var(--terracota);
}

.implantes-cta-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cinza-medio);
  margin-bottom: 2rem;
}

.implantes-cta-direita {
  position: relative;
}

.implantes-bg-card {
  background: linear-gradient(135deg, #d2d0ce 0%, #c0bebb 100%);
  border-radius: 2px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.implantes-bg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.implantes-bg-card-nome {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--cinza-escuro);
  margin-bottom: 0.3rem;
  position: relative;
}

.implantes-bg-card-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--terracota);
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
}

.implantes-lista {
  list-style: none;
  position: relative;
}

.implantes-lista li {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cinza-escuro);
  padding: 0.6rem 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.implantes-lista li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracota);
  flex-shrink: 0;
}

.implantes-lista li:last-child {
  border-bottom: none;
}


.contato {
  padding: 3rem 8vw;
  background: var(--cinza-escuro);
  color: var(--branco);
  align-items: center;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  text-align: center;
}

.contato-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracota-light);
  margin-bottom: 1.5rem;
}

.contato-titulo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contato-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(249, 247, 245, 0.5);
}

.contato-col-titulo {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracota-light);
  margin-bottom: 1.2rem;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.contato-item-icone {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.6;
}

.contato-item-texto {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(249, 247, 245, 0.75);
}

.contato-item-texto a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.contato-item-texto a:hover {
  color: var(--terracota-light);
}

.contato-wpp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.75rem 1.8rem;
  background: var(--terracota);
  color: #fff;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
}

.contato-wpp:hover {
  background: #a84e15;
}

.contato-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(249, 247, 245, 0.75);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.contato-social a:hover {
  color: var(--terracota-light);
}


footer {
  background: #2a2a2a;
  padding: 2rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .footer-nome {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: rgba(249, 247, 245, 0.6);
}

footer .footer-cro {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(249, 247, 245, 0.3);
  text-transform: uppercase;
}

footer .footer-implantes {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracota-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}

footer .footer-implantes:hover {
  opacity: 0.7;
}

footer .footer-dev {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(249, 247, 245, 0.2);
  text-decoration: none;
  transition: color 0.2s;
}

footer .footer-dev:hover {
  color: rgba(249, 247, 245, 0.5);
}

footer .footer-dev span {
  color: rgba(249, 247, 245, 0.35);
}


.wpp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  animation: pulse-wpp 2.5s ease-in-out infinite;
}

.wpp-float span {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.25s ease,
    margin 0.35s ease;
  margin-left: 0;
}

.wpp-float:hover {
  width: auto;
  border-radius: 50px;
  padding: 0 1.4rem 0 1.1rem;
  gap: 0.6rem;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: none;
}

.wpp-float:hover span {
  max-width: 200px;
  opacity: 1;
  margin-left: 0.1rem;
}

.wpp-float svg {
  flex-shrink: 0;
}

@keyframes pulse-wpp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.55);
  }
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(58, 58, 58, 0.7);
  background: rgba(196, 98, 29, 0.07);
  border: 0.5px solid rgba(196, 98, 29, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 1px;
}

.hero-badge-item svg {
  opacity: 0.6;
}


.urgencia-strip {
  background: var(--terracota);
  padding: 1.2rem 4vw;
  text-align: center;
}

.urgencia-strip p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}

.urgencia-strip p strong {
  font-weight: 600;
}

.urgencia-strip a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media (max-width: 900px) {
  nav ul {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 7rem 6vw 2rem;
    text-align: center;
    align-items: center;
  }

  .hero-right {
    height: 60vw;
    min-height: 300px;
  }

  .hero-foto-wrap {
    min-height: auto;
  }

  .sobre,
  .implantes-cta,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre {
    padding: 5rem 6vw;
  }

  .servicos {
    padding: 5rem 6vw;
  }

  .implantes-cta {
    padding: 5rem 6vw;
  }

  .contato {
    padding: 5rem 6vw;
  }

  footer {
    padding: 1.5rem 6vw;
  }
}


.depoimentos {
  padding: 8rem 8vw;
  background: var(--branco);
  position: relative;
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.depoimentos-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.depoimentos-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--cinza-escuro);
}

.depoimentos-titulo em {
  font-style: italic;
  color: var(--terracota);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.depoimento-card {
  background: #fff;
  border: 0.5px solid rgba(196, 98, 29, 0.15);
  border-radius: 2px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(196, 98, 29, 0.06);
  border-color: var(--terracota);
}

.depoimento-estrelas {
  color: var(--terracota);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.depoimento-texto {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cinza-escuro);
  font-style: italic;
  margin-bottom: 2rem;
}

.depoimento-autor {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cinza-medio);
  text-transform: uppercase;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .depoimentos {
    padding: 5rem 6vw;
  }
}


.clinica {
  padding: 8rem 8vw;
  background: var(--branco);
}

.clinica-header {
  text-align: center;
  margin-bottom: 4rem;
}

.clinica-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.clinica-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--cinza-escuro);
}

.clinica-titulo em {
  font-style: italic;
  color: var(--terracota);
}

.clinica-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.clinica-foto-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  background: #e8e6e4;
}

.clinica-foto {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  filter: grayscale(5%);
  transition: transform 0.5s ease;
}

.clinica-foto-wrap:hover .clinica-foto {
  transform: scale(1.03);
}

.clinica-foto-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 1.5rem;
  color: #fff;
  pointer-events: none;
}

.clinica-foto-caption p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 900px) {
  nav ul {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 7rem 6vw 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-foto-wrap {
    order: -1;
    height: 45vh;
    width: 100%;
  }

  .hero-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-acoes {
    justify-content: center;
  }

  .especialidades-grid {
    grid-template-columns: 1fr;
  }

  .implantes-section {
    grid-template-columns: 1fr;
  }

  .implantes-lista {
    grid-template-columns: 1fr;
  }

  .clinica {
    padding: 5rem 6vw;
  }

  .clinica-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLL HINT ===== */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cinza-medio);
  opacity: 0.5;
  z-index: 10;
  transition: opacity 0.3s, transform 0.3s;
  animation: bounceY 2s ease-in-out infinite;
}
.hero-scroll-hint:hover { opacity: 0.9; transform: translateX(-50%) translateY(2px); }
@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--cinza-escuro);
  padding: 3rem 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1rem;
}
.stats-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--branco);
  line-height: 1;
}
.stats-suf {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--terracota);
}
.stats-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249,247,245,0.45);
  margin-top: 0.4rem;
}
.stats-sep {
  width: 0.5px;
  height: 3rem;
  background: rgba(249,247,245,0.1);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stats-sep { display: none; }
  .stats-strip { gap: 0.5rem; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }


/* ===== LOGO NAV ===== */
.nav-logo-img {
  height: 31px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
  height: 35px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.75;
}

/* ===== HERO TITULO DESTAQUE ===== */
.hero-titulo strong {
  font-weight: 400;
  color: var(--terracota);
  position: relative;
}
.hero-titulo strong::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracota);
  opacity: 0.4;
}

/* ===== GOOGLE MAPS ===== */
.contato-mapa {
  margin-top: 0.5rem;
}
.contato-mapa iframe {
  transition: opacity 0.3s;
}
.contato-mapa iframe:hover {
  opacity: 1 !important;
  filter: grayscale(0%) !important;
}

