/* ============================================================
   COMPONENTES — header, botões, cards, footer, badges, etc.
   ============================================================ */

/* ---------- Glow orbs decorativos ---------- */

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 22, 24, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--t-base), height var(--t-base), box-shadow var(--t-base);
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(4, 18, 20, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-area .logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(23, 199, 154, 0.45));
  transition: height var(--t-base);
}

.site-header.is-scrolled .logo-area .logo {
  height: 34px;
}

.logo-extra img {
  height: 20px;
  width: auto;
  opacity: 0.95;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}

.main-nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(234, 247, 244, 0.82);
  padding: 6px 2px;
  transition: color var(--t-fast);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: right var(--t-base);
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  right: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(4, 18, 20, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
  z-index: 99;
}

.mobile-nav.open {
  max-height: 480px;
}

.mobile-nav ul {
  list-style: none;
  padding: var(--sp-4) var(--sp-6) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.mobile-nav a {
  display: block;
  padding: 14px 6px;
  font-size: 1.05rem;
  color: var(--dark-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .header-cta .btn-outline {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: var(--grad-brand);
  color: #04211d;
  box-shadow: var(--glow-brand);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(23, 199, 154, 0.5), 0 16px 46px rgba(14, 138, 114, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: translateY(-2px);
}

/* variante para usar em fundo claro (fora do header/hero escuro) */
.on-light .btn-outline,
.btn-outline.on-light {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.on-light .btn-outline:hover,
.btn-outline.on-light:hover {
  background: var(--surface-2);
  border-color: var(--brand);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-2);
  padding: 15px 10px;
}

.btn-ghost:hover {
  color: var(--brand);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Cards ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(23, 199, 154, 0.35);
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-brand);
  color: #04211d;
  flex-shrink: 0;
  box-shadow: var(--glow-brand);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.icon-badge.violet {
  background: var(--grad-violet);
  color: #100b2e;
  box-shadow: 0 0 0 1px rgba(108, 92, 231, 0.35), 0 12px 32px rgba(108, 92, 231, 0.28);
}

.icon-badge.gold {
  background: var(--grad-gold);
  color: #3a2c0e;
  box-shadow: var(--glow-gold);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* Card em superfície escura (glass) */

.glass-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  backdrop-filter: blur(6px);
}

.glass-card:hover {
  background: var(--dark-surface-strong);
  border-color: rgba(23, 199, 154, 0.4);
}

/* ---------- Badges / tags ---------- */

.tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--brand-2);
  border: 1px solid var(--line);
}

.tag.gold {
  background: rgba(201, 162, 77, 0.12);
  color: #8a6a25;
  border-color: rgba(201, 162, 77, 0.3);
}

/* Em fundos escuros (rodapé, seções dark) o par claro/escuro se inverte
   para manter contraste legível. */
.section-dark .tag,
.site-footer .tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--dark-ink);
  border-color: var(--dark-line);
}

.section-dark .tag.gold,
.site-footer .tag.gold {
  background: rgba(201, 162, 77, 0.16);
  color: #f0d9a0;
  border-color: rgba(201, 162, 77, 0.4);
}

/* ---------- Artigo / Blog cards ---------- */

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(23, 199, 154, 0.35);
}

.article-card-media {
  height: 156px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4) var(--sp-5);
  background: var(--grad-brand-2);
  overflow: hidden;
}

.article-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.article-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 22, 24, 0.04) 34%, rgba(5, 22, 24, 0.72) 100%);
  z-index: 1;
}

.article-card-media::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  right: -50px;
  top: -60px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 70%);
  z-index: 1;
}

.article-card-media .tag {
  position: relative;
  align-self: flex-start;
  max-width: 100%;
  line-height: 1.25;
  text-align: left;
  white-space: normal;
  z-index: 2;
  background: rgba(255, 255, 255, 0.14);
  color: #eafff8;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.article-card-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.article-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.article-card-body p {
  font-size: 0.94rem;
  flex: 1;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 650;
  color: var(--brand-2);
  margin-top: var(--sp-2);
  transition: gap var(--t-fast), color var(--t-fast);
}

.link-more::after {
  content: "→";
  transition: transform var(--t-fast);
}

.link-more:hover {
  color: var(--brand);
  gap: 10px;
}

/* ---------- Info box ---------- */

.info-box {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-6);
}

.info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--sp-3);
}

.info-box li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-soft);
}

.info-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #04211d;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Stats ---------- */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--dark-muted);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}

/* ---------- Timeline / Como funciona ---------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  counter-reset: step;
}

@media (max-width: 980px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

.timeline-step {
  position: relative;
  padding-top: var(--sp-2);
}

.timeline-step .step-number {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: var(--sp-3);
  display: block;
}

.timeline-step h3 {
  font-size: 1.05rem;
}

.timeline-step p {
  font-size: 0.94rem;
}

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  background: var(--dark-bg-2);
  border-bottom: 1px solid var(--dark-line);
  padding-top: calc(var(--header-h) + 18px);
  padding-bottom: 18px;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--dark-muted);
}

.breadcrumbs a {
  color: var(--dark-muted);
  transition: color var(--t-fast);
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs .current {
  color: var(--dark-ink);
}

/* ---------- Floating buttons ---------- */

.floating-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: floatPulse 3.2s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #1fd784, #0e9a63);
}

.floating-btn.instagram {
  background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fd5949 26%, #d6249f 61%, #285aeb 100%);
  animation-delay: 0.3s;
}

.floating-btn svg {
  width: 26px;
  height: 26px;
}

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--brand-2);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes floatPulse {
  0%, 100% {
    box-shadow: var(--shadow-lg), 0 0 0 0 rgba(23, 199, 154, 0.35);
  }
  50% {
    box-shadow: var(--shadow-lg), 0 0 0 10px rgba(23, 199, 154, 0);
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark-bg);
  color: var(--dark-muted);
  position: relative;
  overflow: hidden;
  padding-top: var(--sp-20);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-mesh-dark);
  opacity: 0.6;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--dark-line);
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

.footer-brand img {
  height: 30px;
  width: auto;
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.98rem;
  color: var(--dark-muted);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-ink);
  margin-bottom: var(--sp-4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 1rem;
  color: var(--dark-muted);
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding: var(--sp-6) 0;
  font-size: 0.92rem;
  color: var(--dark-muted);
}

.footer-disclaimer {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  color: var(--dark-muted);
  max-width: 900px;
  margin-bottom: var(--sp-6);
}

.footer-agency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-agency img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 6px;
}

.footer-internal-link {
  text-decoration: underline;
  text-decoration-color: var(--dark-line);
  text-underline-offset: 3px;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}

.footer-internal-link:hover {
  color: var(--dark-ink);
  text-decoration-color: currentColor;
}

/* ---------- Acesso Interno (formulário de e-mail) ---------- */

.access-card {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

.access-card .icon-badge {
  margin-bottom: var(--sp-4);
}

.access-card h1 {
  color: var(--dark-ink);
  margin-bottom: var(--sp-2);
}

.access-subtitle {
  margin-bottom: var(--sp-8);
}

.access-subtitle,
.access-note {
  display: none;
}

.access-direct-message {
  margin-bottom: var(--sp-8);
}

.access-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-ink);
}

.form-group input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.form-group input::placeholder {
  color: var(--dark-muted);
  opacity: 0.7;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand-light);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(23, 199, 154, 0.2);
}

.password-field {
  position: relative;
  display: flex;
}

.password-field input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--r-sm);
  color: var(--dark-muted);
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

.password-toggle:hover,
.password-toggle.is-visible {
  color: var(--brand-light);
  background: rgba(255, 255, 255, 0.08);
}

.access-note,
.access-fallback {
  font-size: 0.86rem;
  margin-top: var(--sp-6);
  margin-bottom: 0;
}

.access-fallback a {
  color: var(--brand-light);
  font-weight: 600;
}

.access-fallback a:hover {
  text-decoration: underline;
}

/* ---------- Mapa ---------- */

.map-wrapper {
  margin-top: var(--sp-10);
}

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  filter: saturate(0.9);
}

.map-embed iframe {
  display: block;
  width: 100%;
}

/* ---------- Contato ---------- */

.contact-detail {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-5);
}

.contact-detail .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
}

.contact-detail .icon-badge svg {
  width: 20px;
  height: 20px;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.98rem;
  margin: 0 0 4px;
  color: var(--ink);
}

.contact-detail p {
  margin: 0;
  font-size: 0.94rem;
}

/* ---------- Avaliações (Google Reviews) ---------- */

.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-10);
}

.reviews-summary__score {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--dark-surface);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-full);
  padding: 12px 24px;
}

.reviews-summary__score svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.reviews-summary__score strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
}

.reviews-stars {
  color: var(--gold-light);
  letter-spacing: 2px;
  font-size: 1rem;
}

.reviews-stars--sm {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.reviews-summary__score small {
  font-size: 0.86rem;
  color: var(--dark-muted);
}

.reviews-carousel {
  max-width: 640px;
  margin: 0 auto;
}

.reviews-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-brand);
  color: #04211d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__top strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.review-card__note {
  color: var(--dark-muted);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.reviews-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  text-align: center;
}

.reviews-cta-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-muted);
  transition: color var(--t-fast);
}

.reviews-cta-link:hover {
  color: #fff;
}

.reviews-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--dark-muted);
  max-width: 640px;
  margin: var(--sp-8) auto 0;
}

/* Carrossel: melhoria progressiva — sem JS, a lista permanece estática
   e empilhada (funciona perfeitamente, só não gira sozinha). */
.reviews-carousel__nav {
  display: none;
}

.reviews-carousel.is-active .reviews-list {
  display: grid;
  gap: 0;
}

.reviews-carousel.is-active .review-card {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reviews-carousel.is-active .review-card.is-current {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reviews-carousel.is-active .reviews-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: var(--sp-6);
}

.reviews-carousel__arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--dark-line);
  background: transparent;
  color: var(--dark-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.reviews-carousel__arrow:hover {
  border-color: var(--brand-light);
  color: var(--brand-light);
}

.reviews-carousel__arrow:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 2px;
}

.reviews-carousel__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.reviews-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--dark-line);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}

.reviews-carousel__dot.is-active {
  background: var(--gold-light);
  transform: scale(1.35);
}

.reviews-carousel__dot:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel.is-active .review-card {
    transition: opacity 0.01s linear;
    transform: none;
  }
}
