/* ==========================================================================
   ANIMA — Premium Layer v3
   World-class polish · motion · depth · CRO
   ========================================================================== */

/* --- Enhanced tokens --- */
:root {
  --text-2xl: clamp(2.75rem, 7vw, 5.5rem);
  --text-xl: clamp(2.25rem, 4.8vw, 3.75rem);
  --text-stat: clamp(3rem, 5.5vw, 4.25rem);

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;

  --shadow-glow-gold: 0 0 40px rgba(180, 144, 48, 0.22);
  --shadow-card: 0 4px 24px rgba(10, 26, 17, 0.06), 0 1px 3px rgba(10, 26, 17, 0.04);
  --shadow-card-hover: 0 24px 48px rgba(10, 26, 17, 0.14), 0 8px 16px rgba(180, 144, 48, 0.08);
  --shadow-btn: 0 4px 20px rgba(180, 144, 48, 0.35);

  --gradient-gold: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 45%, var(--gold-600) 100%);
  --gradient-gold-hover: linear-gradient(135deg, var(--gold-200) 0%, var(--gold-300) 50%, var(--gold-500) 100%);
  --gradient-hero-overlay: linear-gradient(105deg, rgba(10, 26, 17, 0.94) 0%, rgba(10, 26, 17, 0.78) 42%, rgba(10, 26, 17, 0.45) 72%, rgba(10, 26, 17, 0.62) 100%);
  --gradient-section-light: linear-gradient(180deg, #faf8f3 0%, var(--surface-light) 100%);
  --gradient-cta: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 77, 50, 0.6) 0%, transparent 70%),
    radial-gradient(120% 120% at 50% 100%, var(--green-800) 0%, var(--green-900) 100%);

  --focus-ring: 0 0 0 3px rgba(180, 144, 48, 0.45);
}

/* --- Page grain texture --- */
.page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Scroll progress (CSS scroll-driven — taste-skill) --- */
.nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--gradient-gold);
  z-index: calc(var(--z-nav) + 1);
  box-shadow: 0 0 12px rgba(180, 144, 48, 0.6);
}

@supports (animation-timeline: scroll()) {
  .nav-progress {
    animation: taste-scroll-progress linear;
    animation-timeline: scroll(root block);
  }
}

@keyframes taste-scroll-progress {
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-progress {
    display: none;
  }
}

/* --- Typography refinements --- */
.h1 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-light .h2 {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  margin: 1.375rem auto 0;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.section-dark .section-desc,
.section-deep .section-desc {
  color: var(--text-inverse-muted);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.85rem;
}

.section-dark .section-eyebrow,
.section-deep .section-eyebrow {
  color: var(--gold-300);
}

.section-light {
  background: var(--gradient-section-light);
}

/* --- Focus accessibility --- */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn:focus-visible,
.a-link:focus-visible {
  box-shadow: var(--focus-ring);
}

/* --- Premium buttons --- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary,
.btn-gold {
  background: var(--gradient-gold);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-btn);
}

.btn-primary::before,
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.28) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-out-expo);
}

.btn-primary:hover::before,
.btn-gold:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover,
.btn-gold:hover {
  background: var(--gradient-gold-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow-gold);
}

.btn-primary:active,
.btn-gold:active {
  transform: translateY(-1px);
}

.btn-ghost {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(180, 144, 48, 0.14);
  border-color: rgba(180, 144, 48, 0.55);
  transform: translateY(-2px);
}

.btn-outline:hover {
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 1.25rem 2.375rem;
  font-size: 0.9375rem;
}

/* --- Navigation premium --- */
.nav-links a {
  position: relative;
  padding: 0.375rem 0;
  transition: color 0.3s var(--ease-out-expo);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold-300);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta-desk {
  box-shadow: var(--shadow-btn);
}

/* --- Hero premium --- */
.hero {
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 4rem;
  padding-inline: var(--section-pad-x);
}

.hero-stage {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 82rem;
  margin-inline: auto;
  min-height: clamp(28rem, 68vh, 40rem);
}

.hero-logo-enter {
  position: absolute;
  left: clamp(0.5rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(44vw, 26rem);
  pointer-events: none;
}

.hero-logo-enter::before {
  content: '';
  position: absolute;
  inset: 5% 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 144, 48, 0.18) 0%, transparent 72%);
  pointer-events: none;
  opacity: 0;
  animation: hero-logo-glow 1.2s ease-out 1.4s forwards;
}

.hero-logo-enter__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: clamp(18rem, 52vh, 32rem);
  object-fit: contain;
  transform: translateX(calc(-100vw - 100%));
  animation: hero-logo-slide-in 1.55s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
  will-change: transform;
}

.hero-watermark {
  opacity: 0.03;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  width: min(100%, 42rem);
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
  padding: 1.5rem 1.25rem;
  background: rgba(10, 26, 17, 0.55);
  border: 1px solid rgba(180, 144, 48, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-stats-bar__item {
  padding-left: 0.75rem;
  border-left: 2px solid rgba(180, 144, 48, 0.35);
}

.hero-stats-bar .stat-label {
  color: rgba(245, 242, 234, 0.55);
  font-size: 0.6875rem;
}

.hero-trust {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(180, 144, 48, 0.12);
}

.hero-video-overlay {
  background: var(--gradient-hero-overlay);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow--gold {
  width: min(40vw, 28rem);
  height: min(40vw, 28rem);
  background: rgba(180, 144, 48, 0.12);
  top: 20%;
  right: 10%;
  animation: anima-glow-pulse 8s ease-in-out infinite;
}

.hero-glow--green {
  width: min(50vw, 36rem);
  height: min(50vw, 36rem);
  background: rgba(26, 77, 50, 0.25);
  bottom: 5%;
  left: -5%;
  animation: anima-glow-pulse 10s ease-in-out infinite reverse;
}

.hero-eyebrow-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
  animation: anima-pulse-dot 2s ease-in-out infinite;
}

.hero-lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: rgba(245, 242, 234, 0.82);
}

.hero-actions .btn-primary {
  font-size: 0.9375rem;
  padding: 1.25rem 2.375rem;
}

.hero-panel {
  background: rgba(10, 26, 17, 0.55);
  border: 1px solid rgba(180, 144, 48, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 0;
  width: 100%;
}

.hero-panel-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.25rem;
  margin-top: 0;
}

.hero-stats > div {
  padding-left: 0.875rem;
  border-left: 2px solid rgba(180, 144, 48, 0.35);
}

.hero-stats .stat-label {
  color: rgba(245, 242, 234, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.hero-trust {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(180, 144, 48, 0.12);
  gap: 0.625rem 1.75rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.hero-trust span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}

.hero-video-inner {
  will-change: transform;
  transform: none;
}

@media (min-width: 1025px) {
  .hero-panel .hero-trust {
    display: flex;
    flex-direction: column;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(180, 144, 48, 0.15);
  }
}

/* --- About cards --- */
.about-card {
  margin-top: 1.25rem;
  padding: 1.75rem;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s;
}

.about-card:first-of-type {
  margin-top: 2rem;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.about-card__label {
  margin: 0 0 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-600);
}

.about-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.about-media-frame {
  box-shadow: var(--shadow-xl);
  transition: transform 0.8s var(--ease-out-expo);
}

.about-media:hover .about-media-frame {
  transform: scale(1.02);
}

.about-quote {
  border: 1px solid rgba(180, 144, 48, 0.2);
}

.kids-space-frame {
  transition: transform 0.8s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
}

.kids-space-media:hover .kids-space-frame {
  transform: scale(1.02);
}

/* --- Diff cells hover --- */
.diff-cell {
  transition: background 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
}

.diff-cell:hover {
  background: rgba(17, 41, 27, 0.65);
  transform: translateY(-2px);
}

.diff-cell-num {
  opacity: 0.85;
  transition: color 0.3s, transform 0.3s var(--ease-out-expo);
}

.diff-cell:hover .diff-cell-num {
  color: var(--gold-300);
  transform: translateX(4px);
}

/* --- Mod cards premium --- */
.mod-card {
  border: 1px solid rgba(17, 41, 27, 0.06);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
}

.mod-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.mod-card {
  position: relative;
}

.mod-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(180, 144, 48, 0.2);
}

.mod-card-body {
  position: relative;
}

.mod-card-body::before {
  content: '→';
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.125rem;
  color: var(--gold-500);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out-expo);
}

.mod-card:hover .mod-card-body::before {
  opacity: 1;
  transform: translateX(0);
}

.mod-img {
  background-size: cover;
}

.mod-img.mod-personal,
.mod-img.mod-personal-trainer {
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.mod-img.mod-calistenia {
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.mod-img.mod-banho-gelo,
.mod-img.mod-sauna {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mod-img.mod-gelo-sauna {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #8b8680;
}

.mod-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 26, 17, 0.55) 100%);
}

.mod-img {
  position: relative;
}

/* --- Plan cards featured --- */
.plan-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.plan-card-dark {
  transform: scale(1.03);
  border: 1px solid rgba(180, 144, 48, 0.35);
  background: linear-gradient(165deg, var(--green-600) 0%, var(--green-700) 50%, var(--green-800) 100%);
}

.plan-card-dark:hover {
  transform: scale(1.03) translateY(-10px);
}

.plan-card-badge {
  box-shadow: 0 4px 16px rgba(180, 144, 48, 0.4);
}

/* --- Transform & BA cards --- */
.ba-card {
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
  border-radius: var(--radius-lg);
}

.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.ba-side--before img {
  filter: grayscale(0.45) brightness(0.85);
}

.transform-card {
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s, box-shadow 0.5s;
}

.transform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 144, 48, 0.35);
  box-shadow: var(--shadow-glow-gold);
}

.rating-strip {
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

/* --- Gallery premium --- */
.gallery-item {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(17, 41, 27, 0.06);
}

.gallery-item-overlay {
  opacity: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 26, 17, 0.82) 100%);
}

.gallery-item-label {
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.45s;
}

.gallery-item:hover .gallery-item-label {
  transform: translateY(0);
  opacity: 1;
}

/* --- Coach cards --- */
.coach-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 41, 27, 0.06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.coach-card-img {
  position: relative;
}

.coach-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 26, 17, 0.35) 100%);
  pointer-events: none;
}

/* --- FAQ dark section fix --- */
.section-dark .faq-question,
.section-deep .faq-question {
  color: var(--text-inverse);
}

.section-dark .faq-item,
.section-deep .faq-item {
  border-bottom-color: var(--border-inverse);
}

.section-dark .faq-answer-inner,
.section-deep .faq-answer-inner {
  color: var(--text-inverse-muted);
}

.section-dark .faq-question:hover,
.section-deep .faq-question:hover {
  color: var(--gold-300);
}

/* --- Modal premium --- */
.mod-modal-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(180, 144, 48, 0.15);
  transform: scale(0.94) translateY(16px);
  transition:
    transform 0.5s var(--ease-out-expo),
    opacity 0.4s;
}

.mod-modal.is-open .mod-modal-panel {
  transform: scale(1) translateY(0);
}

.mod-modal-backdrop {
  transition: opacity 0.4s;
}

/* --- CTA section --- */
.cta-section {
  background: var(--gradient-cta);
}

.cta-section .section-desc {
  color: var(--text-inverse-muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.75rem;
}

/* --- Marquee premium --- */
.marquee-item {
  transition: color 0.3s;
}

.marquee:hover .marquee-item {
  color: rgba(245, 242, 234, 0.72);
}

/* --- Floating WhatsApp --- */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem 0.875rem 0.875rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.wa-float__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.125rem;
}

.wa-float__label {
  padding-right: 0.25rem;
}

/* --- Reveal variants --- */
[data-reveal='left'] {
  transform: translateX(-2rem);
}

[data-reveal='left'].is-visible {
  transform: none;
}

[data-reveal='right'] {
  transform: translateX(2rem);
}

[data-reveal='right'].is-visible {
  transform: none;
}

/* --- Counter animation --- */
.stat-number.is-counted {
  display: inline-block;
}

/* --- Keyframes --- */
@keyframes anima-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes anima-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes hero-logo-slide-in {
  0% {
    transform: translateX(calc(-100vw - 100%));
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  82% {
    transform: translateX(2.5%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes hero-logo-glow {
  to {
    opacity: 1;
  }
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .hero-stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1099px) {
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-stage {
    justify-content: center;
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-logo-enter {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(70vw, 16rem);
    margin: 0 auto 1.5rem;
  }

  .hero-logo-enter__img {
    max-height: clamp(10rem, 32vw, 14rem);
  }

  .hero-content {
    width: 100%;
    max-width: 42rem;
  }

  .plan-card-dark {
    transform: none;
  }

  .plan-card-dark:hover {
    transform: translateY(-10px);
  }

  .wa-float__label {
    display: none;
  }

  .wa-float {
    padding: 0.875rem;
    border-radius: 50%;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .hero-panel {
    padding: 1.5rem 1.25rem;
  }

  .hero-panel .hero-trust {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow,
  .hero-eyebrow-dot,
  .hero-scroll,
  .hero-logo-enter__img,
  .hero-logo-enter::before {
    animation: none !important;
  }

  .hero-logo-enter__img {
    transform: none;
    opacity: 1;
  }

  .hero-logo-enter::before {
    opacity: 1;
  }

  .mod-modal-panel {
    transform: none !important;
  }
}

/* --- Parceiros --- */
.partners-become {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.partner-carousel-card {
  backdrop-filter: none;
}

@media (max-width: 640px) {
  .partners-become {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .partners-become .btn {
    width: 100%;
    justify-content: center;
  }
}
