/**
 * Alericos Homepage - Estilos
 *
 * Design system dark-mode consistente com store.css, perfil.css, lms.css.
 * Todas as classes scoped em .alx-home para evitar conflitos.
 *
 * @package Alericos\Core
 * @version 1.0.0
 */

/* ==========================================================================
   CSS Variables - Dark Mode (Padrão Alericos)
   COMENTADO: Variáveis movidas para o tema Alericos (style.css :root).
   Se algo quebrar, descomentar este bloco para reverter.
   ========================================================================== */
.alx-home {
  /* --alx-primary: #219EBC;
  --alx-primary-dark: #1A7A94;
  --alx-primary-light: #8ECAE6;
  --alx-accent: #FFB703;
  --alx-success: #2A9D8F;
  --alx-warning: #F4A261;
  --alx-danger: #E76F51;
  --alx-text: #E9ECEF;
  --alx-text-secondary: #ADB5BD;
  --alx-bg: #0A1628;
  --alx-bg-secondary: #0F1D2B;
  --alx-bg-card: #1A2C3E;
  --alx-border: #2C3E50;
  --alx-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --alx-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.4);
  --alx-radius: 12px;
  --alx-radius-sm: 8px;
  --alx-radius-lg: 16px;
  --alx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --alx-transition-fast: all 0.15s ease-in-out; */

  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--alx-text);
  background: var(--alx-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.alx-home *,
.alx-home *::before,
.alx-home *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
.alx-home-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--anim-delay, 0s);
}

.alx-home-animate.alx-home-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Section Container (reutilizável)
   ========================================================================== */
.alx-home-section {
  padding: 5rem 0;
}

.alx-home-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.alx-home-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.alx-home-section-title {
  margin: 0 0 0.5rem 0;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--alx-white);
  letter-spacing: -0.02em;
}

.alx-home-section-subtitle {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--alx-text-secondary);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.alx-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: var(--alx-radius);
  border: none;
  cursor: pointer;
  transition: var(--alx-transition);
  line-height: 1.4;
  white-space: nowrap;
}

.alx-home-btn svg {
  flex-shrink: 0;
}

.alx-home-btn-primary {
  background: var(--alx-primary);
  color: var(--alx-white);
}

.alx-home-btn-primary:hover {
  background: var(--alx-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(33, 158, 188, 0.4);
  color: var(--alx-white);
}

.alx-home-btn-ghost {
  background: transparent;
  color: var(--alx-text-secondary);
  border: 1px solid var(--alx-border);
}

.alx-home-btn-ghost:hover {
  color: var(--alx-primary-light);
  border-color: var(--alx-primary);
  background: rgba(33, 158, 188, 0.08);
}

.alx-home-btn-accent {
  background: var(--alx-accent);
  color: var(--alx-gray-900);
}

.alx-home-btn-accent:hover {
  background: #e6a503;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 183, 3, 0.4);
  color: var(--alx-gray-900);
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.alx-home-hero {
  position: relative;
  --alx-hero-tint: 0;
  min-height: 85vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.alx-home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(33, 158, 188, 0.30) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(142, 202, 230, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(255, 183, 3, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, #001219 0%, #0A1628 40%, #162938 100%);
  z-index: 0;
}

.alx-home-hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
}

.alx-home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;            /* mesmo nivel do -bg; vem depois no DOM, entao pinta por cima dele */
  pointer-events: none;
}

.alx-home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--alx-bg) 0%, transparent 18%),
    linear-gradient(to top, var(--alx-bg) 0%, rgba(10, 22, 40, 0.4) 40%, transparent 100%),
    rgba(10, 22, 40, var(--alx-hero-tint, 0));
  z-index: 1;
}

/* Veu de legibilidade entra so quando o video realmente toca (sem ruptura no estado atual) */
.alx-home-hero.is-video-ready {
  --alx-hero-tint: 0.4;   /* teste 0.3 / 0.4 / 0.5 */
}

.alx-home-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Badge */
.alx-home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(33, 158, 188, 0.2);
  border: 1px solid rgba(33, 158, 188, 0.4);
  border-radius: 100px;
  color: var(--alx-primary-light);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: alxHomeSlideDown 0.6s ease-out both;
}

.alx-home-hero-badge svg {
  flex-shrink: 0;
}

/* Hero Title */
.alx-home-hero-title {
  margin: 0 0 1.25rem 0;
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--alx-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.3);
  animation: alxHomeSlideUp 0.7s ease-out 0.1s both;
}

.alx-home-hero-highlight {
  background: linear-gradient(135deg, var(--alx-primary) 0%, var(--alx-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.alx-home-hero-subtitle {
  margin: 0 0 2rem 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.7;
  animation: alxHomeSlideUp 0.7s ease-out 0.2s both;
}

/* Hero Actions */
.alx-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: alxHomeSlideUp 0.7s ease-out 0.3s both;
}

/* Hero Stats */
.alx-home-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: alxHomeFadeIn 0.8s ease-out 0.5s both;
}

.alx-home-hero-stat {
  display: flex;
  flex-direction: column;
}

.alx-home-hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--alx-white);
  line-height: 1.2;
}

.alx-home-hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.125rem;
}

.alx-home-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Animations */
@keyframes alxHomeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes alxHomeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes alxHomeFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   Section 2: Reviews
   ========================================================================== */
.alx-home-reviews {
  padding-top: 3rem;
}

/* ==========================================================================
   Section 3: Conquistas
   ========================================================================== */
.alx-home-conquistas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.alx-home-conquista-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--alx-bg-card);
  border: 1px solid var(--alx-border);
  border-radius: var(--alx-radius);
  transition: var(--alx-transition);
  overflow: hidden;
}

.alx-home-conquista-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--card-accent, var(--alx-primary));
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.alx-home-conquista-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: rgba(33, 158, 188, 0.3);
}

.alx-home-conquista-card:hover::before {
  transform: scaleY(1);
}

.alx-home-conquista-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.alx-home-conquista-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--alx-text);
  line-height: 1.3;
}

/* ==========================================================================
   Section 4: Journey
   ========================================================================== */
.alx-home-journey {
  padding-bottom: 3rem;
}

/* ==========================================================================
   Section 5: Sobre
   ========================================================================== */
/* Flat: sem chrome externo; o radius vive só na imagem. */
.alx-home-sobre-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.alx-home-sobre-image {
  position: relative;
  min-height: 400px;
  background: var(--alx-bg-secondary);
  overflow: hidden;
  border-radius: var(--alx-radius-lg);
}

.alx-home-sobre-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.alx-home-sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alx-home-sobre-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(33, 158, 188, 0.15) 0%, transparent 70%),
    var(--alx-bg-secondary);
  color: var(--alx-text-secondary);
}

.alx-home-sobre-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alx-home-sobre-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.alx-home-sobre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: rgba(33, 158, 188, 0.15);
  border: 1px solid rgba(33, 158, 188, 0.3);
  border-radius: 100px;
  color: var(--alx-primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.alx-home-sobre-badge svg {
  flex-shrink: 0;
}

.alx-home-sobre-name {
  margin: 0 0 1rem 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--alx-white);
}

.alx-home-sobre-text {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: var(--alx-text-secondary);
  line-height: 1.7;
}

.alx-home-sobre-text:last-child {
  margin-bottom: 0;
}

.alx-home-sobre-text strong {
  color: var(--alx-primary-light);
  font-weight: 600;
}

/* ==========================================================================
   Section 6: FAQ
   ========================================================================== */
.alx-home-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.alx-home-faq-item {
  border-bottom: 1px solid var(--alx-border);
}

.alx-home-faq-item:first-child {
  border-top: 1px solid var(--alx-border);
}

.alx-home-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--alx-text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.alx-home-faq-question::-webkit-details-marker {
  display: none;
}

.alx-home-faq-question::marker {
  content: '';
}

.alx-home-faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--alx-text-secondary);
  background: rgba(33, 158, 188, 0.1);
  border-radius: 50%;
  transition: var(--alx-transition);
  margin-left: 1rem;
}

.alx-home-faq-item[open] .alx-home-faq-question {
  color: var(--alx-primary-light);
}

.alx-home-faq-item[open] .alx-home-faq-question::after {
  content: '\2212';
  background: var(--alx-primary);
  color: var(--alx-white);
  transform: rotate(180deg);
}

.alx-home-faq-question:hover {
  color: var(--alx-primary-light);
}

.alx-home-faq-question:hover::after {
  background: rgba(33, 158, 188, 0.2);
  color: var(--alx-primary);
}

.alx-home-faq-answer {
  padding: 0 0 1.25rem 0;
  position: relative;
  --al-accent: var(--alx-primary);
  margin-left: 0;
  padding-left: 1.25rem;
}

.alx-home-faq-answer p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--alx-text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Section 7: CTA Final
   ========================================================================== */
.alx-home-cta {
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.alx-home-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(33, 158, 188, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 40%, rgba(255, 183, 3, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, #0F1D2B 0%, #162938 50%, #0A1628 100%);
  z-index: 0;
}

.alx-home-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.alx-home-cta-title {
  margin: 0 0 1rem 0;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--alx-white);
  letter-spacing: -0.02em;
}

.alx-home-cta-text {
  margin: 0 0 2rem 0;
  font-size: 1.0625rem;
  color: var(--alx-text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Responsive - 1200px
   ========================================================================== */
@media (max-width: 1200px) {
  .alx-home-conquistas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Responsive - 768px (Tablet)
   ========================================================================== */
@media (max-width: 768px) {
  .alx-home-section {
    padding: 3.5rem 0;
  }

  .alx-home-section-title {
    font-size: 1.75rem;
  }

  .alx-home-section-header {
    margin-bottom: 2rem;
  }

  /* Hero */
  .alx-home-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .alx-home-hero-content {
    padding: 3rem 1.5rem;
  }

  .alx-home-hero-title {
    font-size: 2.25rem;
  }

  .alx-home-hero-subtitle {
    font-size: 1rem;
  }

  .alx-home-hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .alx-home-hero-stat-divider {
    display: none;
  }

  /* Conquistas */
  .alx-home-conquistas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sobre */
  .alx-home-sobre-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .alx-home-sobre-image {
    min-height: 360px;
    max-height: 440px;
  }

  .alx-home-sobre-content {
    padding: 0;
  }

  /* CTA */
  .alx-home-cta {
    padding: 3.5rem 1.5rem;
  }

  .alx-home-cta-title {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   Responsive - 480px (Mobile)
   ========================================================================== */
@media (max-width: 480px) {
  .alx-home-section {
    padding: 2.5rem 0;
  }

  .alx-home-section-inner {
    padding: 0 1rem;
  }

  .alx-home-section-title {
    font-size: 1.5rem;
  }

  .alx-home-section-subtitle {
    font-size: 0.9375rem;
  }

  /* Hero */
  .alx-home-hero-content {
    padding: 2rem 1.25rem;
  }

  .alx-home-hero-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }

  .alx-home-hero-title {
    font-size: 1.75rem;
  }

  .alx-home-hero-title br {
    display: none;
  }

  .alx-home-hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .alx-home-hero-actions {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .alx-home-hero-actions .alx-home-btn {
    width: 100%;
  }

  .alx-home-hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }

  .alx-home-hero-stat {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

  .alx-home-hero-stat-value {
    font-size: 1.4rem;
  }

  .alx-home-hero-stat-label {
    font-size: 0.6rem;
    line-height: 1.2;
  }

  /* fundo fallback: no mobile, escurece p/ legibilidade + centraliza o crop */
  .alx-home-hero-overlay {
    background-color: rgba(10, 22, 40, 0.32);
  }

  .alx-home-hero-fallback {
    object-position: center;
  }

  /* Conquistas */
  .alx-home-conquistas-grid {
    grid-template-columns: 1fr;
  }

  .alx-home-conquista-card {
    padding: 1rem 1.25rem;
  }

  /* Sobre */
  .alx-home-sobre-image {
    min-height: 440px;
    max-height: none;
  }

  .alx-home-sobre-content {
    padding: 0;
  }

  .alx-home-sobre-name {
    font-size: 1.5rem;
  }

  /* FAQ */
  .alx-home-faq-question {
    font-size: 0.9375rem;
    padding: 1rem 0;
  }

  .alx-home-faq-answer {
    padding-left: 1rem;
  }

  .alx-home-faq-answer p {
    font-size: 0.875rem;
  }

  /* CTA */
  .alx-home-cta {
    padding: 3rem 1.25rem;
  }

  .alx-home-cta-title {
    font-size: 1.5rem;
  }

  .alx-home-cta-text {
    font-size: 0.9375rem;
  }

  .alx-home-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
}


/* §3d — barra-acento curta no topo (substitui a borda lateral). */
.alx-home-faq-answer::before { content: ''; position: absolute; top: 0; left: 0; width: 30px; height: 3px; border-radius: 0 0 3px 3px; background: var(--al-accent); }


/* ==========================================================================
   Vitrine de Atletas/Clientes (carrossel) — funde Reviews + Conquistas
   ========================================================================== */
.alx-vitrine-carousel {
  position: relative;
}
.alx-vitrine-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.alx-vitrine-track::-webkit-scrollbar { display: none; }

.alx-vitrine-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(240px, 78vw, 300px);
  display: flex;
  flex-direction: column;
  background: var(--alx-bg-card);
  border: 1px solid var(--alx-border);
  border-top: 3px solid var(--alx-primary);
  border-radius: var(--alx-radius);
  overflow: hidden;
  transition: var(--alx-transition);
}
.alx-vitrine-card.is-atleta { border-top-color: var(--alx-accent); }
.alx-vitrine-card.is-cliente { border-top-color: var(--alx-primary); }
.alx-vitrine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.alx-vitrine-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--alx-bg-secondary);
  overflow: hidden;
}
.alx-vitrine-card-img,
.alx-vitrine-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.alx-vitrine-card-img.is-placeholder {
  background: linear-gradient(135deg, var(--alx-bg-secondary), var(--alx-bg-card));
}
.alx-vitrine-card-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: var(--alx-gray-900);
  background: var(--alx-primary);
}
.alx-vitrine-card.is-atleta .alx-vitrine-card-badge { background: var(--alx-accent); }

.alx-vitrine-card-body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.alx-vitrine-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--alx-white);
  margin: 0;
}
.alx-vitrine-card-modalidade {
  font-size: 0.85rem;
  color: var(--alx-text-secondary);
  margin: 0;
}
.alx-vitrine-medals {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
}
.alx-vitrine-medals li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--alx-text);
}
.alx-vitrine-medals .m-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.alx-vitrine-medals .is-ouro .m-dot { background: #FFB703; }
.alx-vitrine-medals .is-prata .m-dot { background: #CED4DA; }
.alx-vitrine-medals .is-bronze .m-dot { background: #F4A261; }
.alx-vitrine-card-desde {
  font-size: 0.78rem;
  color: var(--alx-text-muted);
  margin: 0;
}
.alx-vitrine-card-quote {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--alx-text);
  margin: 0.3rem 0 0;
  padding-left: 0.7rem;
  border-left: 2px solid var(--alx-border);
  font-style: italic;
}

.alx-vitrine-arrow {
  position: absolute;
  top: calc(50% - 1.2rem);
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--alx-border);
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.85);
  color: var(--alx-text);
  cursor: pointer;
  transition: var(--alx-transition);
}
.alx-vitrine-arrow:hover { background: var(--alx-primary); color: var(--alx-gray-900); }
.alx-vitrine-arrow.is-prev { left: -8px; }
.alx-vitrine-arrow.is-next { right: -8px; }
.alx-vitrine-arrow[hidden] { display: none; }

@media (max-width: 768px) {
  .alx-vitrine-arrow { display: none; }
  .alx-vitrine-track { padding-left: 1rem; padding-right: 1rem; }
}
