:root {
  --bg: #2C1810;
  --card: rgba(255, 255, 255, 0.06);
  --text: #F5EDE8;
  --muted: #C9A898;
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.15);

  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.15);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Cormorant Garamond", serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 0;
}


a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  width: 100%;
}

.bio-page {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(180deg,
      rgba(44, 24, 16, 0) 0%,
      rgba(44, 24, 16, 0.75) 15%,
      rgba(44, 24, 16, 0.95) 26%,
      var(--bg) 38%),
    url('fundo.jpg') top center / 100% auto no-repeat;
  background-color: var(--bg);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero {
  position: relative;
  height: clamp(340px, 92vw, 430px);
  overflow: hidden;
  background: transparent;
}

.hero__image {
  display: none;
}

.hero::after {
  display: none;
}

.logo-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  margin-top: 30px;
  margin-bottom: 5px;
}

.logo-wrapper {
  position: relative;
  width: clamp(130px, 36vw, 180px);
  height: clamp(130px, 36vw, 180px);
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  animation: logoPulse 4s ease-in-out infinite, float 7s ease-in-out infinite;
  overflow: hidden;
}

.logo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.logo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

@keyframes logoBlink {

  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 0;
  }
}

@keyframes logoPulse {
  0% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
  }

  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.4);
    border-color: rgba(243, 208, 83, 1);
  }

  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-160px);
  }

  100% {
    transform: translateY(0px);
  }
}

.butterfly-flap {
  animation: flapWings 3.5s ease-in-out infinite !important;
  transform-origin: center;
  opacity: 0.4 !important;
}

@keyframes flapWings {
  0% {
    transform: perspective(400px) rotateY(0deg);
  }

  50% {
    transform: perspective(400px) rotateY(70deg);
  }

  100% {
    transform: perspective(400px) rotateY(0deg);
  }
}

@media (hover: hover) {
  .logo-img:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.48);
    border-color: #E0B882;
  }
}

.profile-text {
  text-align: center;
  margin: -16px 0 28px;
  padding: 0 24px;
}

.profile-logo {
  width: clamp(280px, 90vw, 440px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.45));
}

.profile-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.98rem, 9vw, 2.86rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.1;
  white-space: nowrap;
}

.profile-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.77rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1;
}

.profile-title::before,
.profile-title::after {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.icon {
  display: block;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--brand {
  fill: currentColor;
  stroke: none;
}

.link-card:active {
  transform: scale(0.96);
  transition: transform 80ms ease;
}

.is-touching {
  transform: scale(0.96) !important;
  transition: transform 80ms ease !important;
}

.links {
  display: grid;
  gap: 24px;
  padding: 0 18px 28px;
  margin-top: 0px;
}

.links-separator {
  width: 100%;
  max-width: 280px;
  height: 2px;
  margin: 6px auto 6px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 108, 0.3), transparent);
  position: relative;
}

.links-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(196, 154, 108, 0.12);
}

.link-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 16px;
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
  animation: cardFadeIn 0.5s ease both;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 52%);
  opacity: 0;
  transition: opacity 190ms ease;
  pointer-events: none;
}

.link-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #D4AF37;
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.15);
  outline: none;
}

.link-card:focus-visible::before {
  opacity: 1;
}

@media (hover: hover) {
  .link-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #D4AF37;
    box-shadow: 0 18px 42px rgba(212, 175, 55, 0.15);
  }

  .link-card:hover::before {
    opacity: 1;
  }
}

.whatsapp-btn {
  animation: pulse-whatsapp 5s ease-in-out infinite, cardFadeIn 0.5s ease both;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  }

  5% {
    transform: scale(1.02);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.15);
  }

  10% {
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  }

  100% {
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  }
}

.link-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 12px rgba(212, 175, 55, 0.15);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.link-content {
  text-align: center;
  width: 100%;
  min-width: 0;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.link-content strong {
  display: block;
  font-family: 'Questrial', sans-serif;
  font-size: clamp(1.06rem, 3.71vw, 1.55rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 4px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-content span {
  display: block;
  font-family: 'Questrial', sans-serif;
  color: var(--text);
  font-size: clamp(0.68rem, 3.16vw, 1.03rem);
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}

.addr-hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  pointer-events: none;
  user-select: none;
}

.blink-unit {
  display: block;
  font-family: 'Questrial', sans-serif;
  font-size: 1.271rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 4px;
  text-align: center;
  animation: blinkUnit 2.8s ease-in-out infinite;
}

@keyframes blinkUnit {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blink-unit {
    animation: none;
    opacity: 0.8;
  }
}

.footer {
  text-align: left;
  padding: 2px 24px 32px;
  position: relative;
}

.footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 108, 0.3), transparent);
  margin-bottom: 20px;
}

.copyright {
  color: var(--text);
  font-size: 0.836rem;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 520px) {
  body {
    padding-block: 40px;
    background: linear-gradient(135deg, #100805 0%, #2C1810 100%);
  }

  .bio-page {
    min-height: calc(100vh - 80px);
    border-radius: var(--radius-xl);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 15, 15, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(30, 41, 59, 0.2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 300ms ease;
  padding: 34px 24px 24px;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(196, 154, 108, 0.08);
  border: none;
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease;
}

.modal-close:hover {
  background: rgba(196, 154, 108, 0.18);
}

button.link-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Questrial', sans-serif;
  outline: none;
}

/* Questrial em todos os botões */
button,
.link-card,
.cardapio-cta,
.modal-close {
  font-family: 'Questrial', sans-serif;
}

/* Local do Consultório */
#btn-local .link-content {
  padding-left: 76px;
}

/* Dra. Jamile */
.dra-btn .link-content {
  padding: 0 64px;
}

/* WhatsApp */
.whatsapp-btn {
  border-color: transparent !important;
  background: rgba(37, 211, 102, 0.07) !important;
}

.whatsapp-btn .link-icon {
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.25);
}

.whatsapp-btn .link-content strong {
  font-size: clamp(1.11rem, 3.71vw, 1.62rem);
}

.whatsapp-btn .link-content span {
  font-size: 1.19rem;
}

.animated-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  overflow: hidden;
}

.animated-border::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent 75%, var(--gold) 100%);
  animation: spinBorder 2.5s linear infinite;
}

@keyframes spinBorder {
  to {
    transform: rotate(360deg);
  }
}

/* Google */
.google-btn .link-icon {
  color: #FBBC04;
  background: rgba(251, 188, 4, 0.10);
  border-color: rgba(251, 188, 4, 0.22);
}

/* Uber */
.uber-wrapper {
  position: relative;
  padding-bottom: 18px;
}

.uber-orbit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 20px;
  pointer-events: none;
  z-index: 20;
  overflow: visible;
}

.uber-orbit::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 108, 0.25), transparent);
  transform: translateY(-50%);
}

.uber-car {
  position: absolute;
  width: 36px;
  height: 16px;
  top: 2px;
  left: 0;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
  animation: uberDrive 16s linear infinite;
}

@keyframes uberDrive {
  0% {
    left: 0;
    transform: scaleX(1);
  }

  48% {
    left: calc(100% - 36px);
    transform: scaleX(1);
  }

  50% {
    left: calc(100% - 36px);
    transform: scaleX(-1);
  }

  98% {
    left: 0;
    transform: scaleX(-1);
  }

  100% {
    left: 0;
    transform: scaleX(1);
  }
}

/* Instagram */
.instagram-btn .link-icon {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.12), rgba(253, 29, 29, 0.08), rgba(252, 176, 69, 0.12));
  border-color: rgba(200, 80, 120, 0.20);
  padding: 0;
  overflow: hidden;
}

@media (max-width: 440px) {
  .link-content {
    padding: 0 64px;
  }

  .link-content strong {
    font-size: clamp(0.91rem, 3.84vw, 1.15rem);
    white-space: normal;
    line-height: 1.2;
  }

  .link-content span {
    white-space: normal;
    font-size: clamp(0.67rem, 3.36vw, 0.86rem);
  }

  .dra-btn .link-content {
    padding: 0 64px;
  }

  .whatsapp-btn .link-content strong {
    font-size: clamp(1.01rem, 4.32vw, 1.25rem);
  }
}

/* Cardápio */
.cardapio-btn {
  background: linear-gradient(135deg, rgba(196, 154, 108, 0.12), rgba(196, 154, 108, 0.04));
  border-color: rgba(196, 154, 108, 0.28) !important;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
}

.cardapio-btn .link-icon {
  color: var(--gold);
  background: rgba(196, 154, 108, 0.12);
  border-color: rgba(196, 154, 108, 0.28);
}

.cardapio-modal {
  background: var(--bg);
  border: 1px solid rgba(196, 154, 108, 0.2);
}

.cardapio-title {
  font-family: 'Questrial', sans-serif;
  font-size: 1.485rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  text-align: center;
}

.cardapio-subtitle {
  font-family: 'Questrial', sans-serif;
  font-size: 0.748rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}

.cardapio-category {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 154, 108, 0.12);
}

.cardapio-category:last-of-type {
  border-bottom: none;
}

.cardapio-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Questrial', sans-serif;
  font-size: 0.968rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.cardapio-cat-title .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
}

.cardapio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cardapio-list li {
  font-family: 'Questrial', sans-serif;
  font-size: 0.913rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.cardapio-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.77rem;
  top: 1px;
}

.cardapio-cta {
  display: block;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-md);
  color: #25D366;
  font-family: 'Questrial', sans-serif;
  font-size: 1.042rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.cardapio-cta:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
}

.blink-promo {
  display: block;
  text-align: center;
  font-family: 'Questrial', sans-serif;
  font-size: 0.953rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-top: 6px;
  margin-bottom: 4px;
  animation: blink-fade 1.5s ease-in-out infinite;
}

@keyframes blink-fade {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.resultados-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.resultado-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 154, 108, 0.2);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: background 200ms ease, border-color 200ms ease;
}

.resultado-item:hover {
  background: rgba(196, 154, 108, 0.12);
  border-color: rgba(196, 154, 108, 0.5);
}

.resultado-icon {
  font-size: 1.43rem;
  flex-shrink: 0;
}

.resultado-text {
  flex: 1;
}

.resultado-text strong {
  display: block;
  font-family: 'Questrial', sans-serif;
  font-size: 1.012rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resultado-text span {
  font-family: 'Questrial', sans-serif;
  font-size: 0.792rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.resultado-arrow {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Fade-in escalonado dos botões ───────── */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links .link-card:nth-child(1) {
  animation-delay: 0.05s;
}

.links .link-card:nth-child(2) {
  animation-delay: 0.12s;
}

.links .link-card:nth-child(3) {
  animation-delay: 0.19s;
}

.links .link-card:nth-child(4) {
  animation-delay: 0.26s;
}

.links .link-card:nth-child(5) {
  animation-delay: 0.33s;
}

.links .link-card:nth-child(6) {
  animation-delay: 0.40s;
}

.links .link-card:nth-child(7) {
  animation-delay: 0.47s;
}

.links .link-card:nth-child(8) {
  animation-delay: 0.54s;
}

/* ── Horário de Atendimento ──────────────── */
.schedule-btn {
  background: linear-gradient(135deg, rgba(192, 150, 101, 0.10), rgba(192, 150, 101, 0.04));
  border-color: rgba(192, 150, 101, 0.22) !important;
}

.schedule-btn .link-icon {
  color: var(--gold);
  background: rgba(192, 150, 101, 0.10);
  border-color: rgba(192, 150, 101, 0.22);
}

/* ── Carrossel de Avaliações Google ─────── */
.reviews-marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 16px 0 24px;
  position: relative;
  margin-top: 8px;
}

.reviews-marquee-container::before,
.reviews-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.reviews-marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.reviews-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 97, 74, 0.18);
  border-radius: 18px;
  padding: 16px 18px;
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 200ms ease, border-color 200ms ease;
}

.review-card:hover {
  background: rgba(196, 97, 74, 0.10);
  border-color: rgba(196, 97, 74, 0.38);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Questrial', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-family: 'Questrial', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.review-stars {
  font-size: 0.82rem;
  color: #FBBC04;
  letter-spacing: 0.06em;
  line-height: 1;
}

.review-text {
  font-family: 'Questrial', sans-serif;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Carrossel de Avaliacoes Google ── */
.reviews-carousel {
  width: 100%;
  overflow: hidden;
  margin: 16px 0 24px;
  position: relative;
  border-radius: var(--radius-md);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.reviews-track {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  width: max-content;
  animation: scrollCarousel 35s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: white;
}

.review-name {
  font-family: 'Questrial', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.review-stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #fbbc04;
}

.review-text {
  font-family: 'Questrial', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.4;
  color: #e0e0e0;
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}