/* ============================================
   SITE PESSOAL - CARLOS EDUARDO LUMINATTI
   Sistema Visual ADR-001 V11
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  /* Paleta aprovada */
  --azul-profundo: #082B5C;
  --azul-dara: #0A5BD8;
  --azul-eletrico: #2F80ED;
  --azul-gelo: #EDF5FF;
  --branco: #FFFFFF;
  --grafite: #172033;
  --verde-online: #22C55E;
  --verde-profundo: #15803D;

  /* Tipografia */
  --font-titulo: 'Cabin', Arial, Helvetica, sans-serif;
  --font-texto: 'Carlito', Calibri, Arial, sans-serif;

  /* Espaçamentos */
  --espaco-xs: 0.5rem;
  --espaco-sm: 1rem;
  --espaco-md: 1.5rem;
  --espaco-lg: 2.5rem;
  --espaco-xl: 4rem;
  --espaco-xxl: 6rem;

  /* Componentes */
  --raio-card: 16px;
  --sombra-card: 0 4px 24px rgba(8, 43, 92, 0.08);
  --sombra-card-hover: 0 8px 40px rgba(8, 43, 92, 0.14);
  --transicao: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-largura: 1200px;
  --max-texto: 72ch;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-texto);
  color: var(--grafite);
  background: var(--branco);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titulo);
  font-weight: 700;
  line-height: 1.2;
  color: var(--azul-profundo);
  margin-top: var(--espaco-lg);
  margin-bottom: var(--espaco-md);
}

h1:first-child, h2:first-child, h3:first-child {
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p {
  max-width: var(--max-texto);
  margin-bottom: var(--espaco-sm);
}

a {
  color: var(--azul-dara);
  text-decoration: none;
  transition: color var(--transicao);
}

a:hover { color: var(--azul-eletrico); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === FOCO ACESSÍVEL === */
:focus-visible {
  outline: 3px solid var(--azul-eletrico);
  outline-offset: 2px;
  border-radius: 4px;
}

/* === UTILITÁRIOS === */
.container {
  width: 100%;
  max-width: var(--max-largura);
  margin: 0 auto;
  padding: 0 var(--espaco-md);
}

.section {
  padding: var(--espaco-xxl) 0;
}

.section--azul {
  background: var(--azul-profundo);
  color: var(--branco);
}

.section--azul h2,
.section--azul h3 {
  color: var(--branco);
}

.section--gelo {
  background: var(--azul-gelo);
}

.texto-centro { text-align: center; }

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3em 1em;
  border-radius: 100px;
  background: var(--azul-gelo);
  color: var(--azul-dara);
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 2em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transicao);
  text-decoration: none;
}

.btn--primario {
  background: var(--azul-dara);
  color: var(--branco);
  border-color: var(--azul-dara);
}

.btn--primario:hover {
  background: var(--azul-eletrico);
  border-color: var(--azul-eletrico);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 91, 216, 0.3);
}

.btn--secundario {
  background: transparent;
  color: var(--azul-dara);
  border-color: var(--azul-dara);
}

.btn--secundario:hover {
  background: var(--azul-dara);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn--branco {
  background: var(--branco);
  color: var(--azul-profundo);
  border-color: var(--branco);
}

.btn--branco:hover {
  background: var(--azul-gelo);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* === CARDS === */
.card {
  background: var(--branco);
  border: 1px solid var(--azul-gelo);
  border-radius: var(--raio-card);
  padding: var(--espaco-lg);
  box-shadow: var(--sombra-card);
  transition: all var(--transicao);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-card-hover);
  border-color: var(--azul-eletrico);
}

.card--link {
  display: block;
  color: inherit;
}

.card--link:hover {
  color: inherit;
}

.card--link:focus-visible {
  outline: 3px solid var(--azul-eletrico);
  outline-offset: 3px;
}

.card__titulo {
  font-size: 1.15rem;
  margin-bottom: var(--espaco-xs);
}

.card__texto {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 0;
}

.card__acoes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--espaco-sm);
  margin-top: var(--espaco-md);
}

.whatsapp-flutuante {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #20c76a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(8, 43, 92, 0.25);
  transition: transform var(--transicao), box-shadow var(--transicao), background var(--transicao);
}

.whatsapp-flutuante:hover {
  color: #fff;
  background: #19ad5a;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(8, 43, 92, 0.3);
}

.whatsapp-flutuante:focus-visible {
  outline: 3px solid var(--azul-eletrico);
  outline-offset: 4px;
}

.whatsapp-flutuante svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

/* === GRID === */
.grid {
  display: grid;
  gap: var(--espaco-md);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--azul-gelo);
  transition: all var(--transicao);
}

.header--scroll {
  box-shadow: 0 2px 20px rgba(8, 43, 92, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--azul-profundo);
  letter-spacing: -0.02em;
}

.header__logo-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.header__logo-text {
  color: var(--azul-profundo);
}

.header__logo-text span {
  color: var(--azul-dara);
  font-weight: 700;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--espaco-md);
  list-style: none;
}

.nav__link {
  font-family: var(--font-titulo);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grafite);
  padding: 0.4em 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azul-dara);
  transition: width var(--transicao);
}

.nav__link:hover::after,
.nav__link--ativo::after {
  width: 100%;
}

.nav__link--ativo {
  color: var(--azul-dara);
}

.header__cta {
  font-size: 0.85rem;
  padding: 0.6em 1.4em;
}

/* Menu Mobile */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--azul-profundo);
  transition: all var(--transicao);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-dara) 100%);
  color: var(--branco);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(47, 128, 237, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, 5%) scale(1.1); }
}

.hero__conteudo {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--branco);
  margin-top: var(--espaco-lg);
  margin-bottom: var(--espaco-md);
}

.hero h1 {
  color: var(--branco);
  margin-bottom: var(--espaco-md);
}

.hero__texto {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: var(--espaco-lg);
  color: var(--branco);
}

.hero__acoes {
  display: flex;
  gap: var(--espaco-sm);
  flex-wrap: wrap;
}

/* Partículas decorativas */
.hero__particulas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particula {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: flutuar 6s ease-in-out infinite;
}

@keyframes flutuar {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}

/* === LED / STATUS === */
.led {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.led__ponto {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--verde-online);
  animation: pulso 2.4s ease-in-out infinite;
}

.led--espera .led__ponto {
  background: var(--azul-eletrico);
  animation: none;
}

@keyframes pulso {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .led__ponto { animation: none; }
  .particula { animation: none; }
  .hero::before { animation: none; }
}

/* === TIMELINE === */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--azul-dara), var(--azul-eletrico));
  border-radius: 3px;
}

.timeline__item {
  position: relative;
  margin-bottom: var(--espaco-lg);
  padding: var(--espaco-md);
  background: var(--branco);
  border-radius: var(--raio-card);
  border: 1px solid var(--azul-gelo);
  box-shadow: var(--sombra-card);
  transition: all var(--transicao);
}

.timeline__item:hover {
  transform: translateX(8px);
  box-shadow: var(--sombra-card-hover);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--azul-dara);
  border: 3px solid var(--branco);
  box-shadow: 0 0 0 3px var(--azul-dara);
}

.timeline__item--ativo::before {
  background: var(--verde-online);
  box-shadow: 0 0 0 3px var(--verde-online);
  animation: pulso 2.4s ease-in-out infinite;
}

.timeline__ano {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--azul-dara);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline__titulo {
  font-size: 1.1rem;
  margin: 0.3em 0;
}

.timeline__texto {
  font-size: 0.95rem;
  color: #4a5568;
}

/* === FORMULÁRIO === */
.form__grupo {
  margin-bottom: var(--espaco-md);
}

.form__label {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4em;
  color: var(--azul-profundo);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  font-family: var(--font-texto);
  font-size: 1rem;
  padding: 0.8em 1.2em;
  border: 2px solid var(--azul-gelo);
  border-radius: 12px;
  background: var(--branco);
  color: var(--grafite);
  transition: border-color var(--transicao), box-shadow var(--transicao);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--azul-dara);
  box-shadow: 0 0 0 4px rgba(10, 91, 216, 0.1);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.85rem;
}

.form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--azul-dara);
}

/* === FOOTER === */
.footer {
  background: var(--azul-profundo);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--espaco-xl) 0 var(--espaco-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--espaco-lg);
  margin-bottom: var(--espaco-lg);
}

.footer__marca {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--branco);
  margin-bottom: var(--espaco-xs);
}

.footer__desc {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer__titulo {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--espaco-sm);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5em;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transicao);
}

.footer__links a:hover {
  color: var(--branco);
}

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--espaco-md);
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
}

/* === ANIMAÇÕES DE SCROLL === */
.animar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animar--esquerda {
  transform: translateX(-30px);
}

.animar--direita {
  transform: translateX(30px);
}

.animar--escala {
  transform: scale(0.95);
}

.animar.visivel {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Delay escalonado */
.animar-delay-1 { transition-delay: 0.1s; }
.animar-delay-2 { transition-delay: 0.2s; }
.animar-delay-3 { transition-delay: 0.3s; }
.animar-delay-4 { transition-delay: 0.4s; }

/* === PÁGINA INTERNA === */
.pagina-hero {
  padding: calc(72px + var(--espaco-xxl)) 0 var(--espaco-xl);
  background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-dara) 100%);
  color: var(--branco);
}

.pagina-hero h1 {
  color: var(--branco);
  margin-bottom: var(--espaco-sm);
}

.pagina-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  margin-bottom: var(--espaco-md);
  opacity: 0.8;
}

.breadcrumb a { color: inherit; }
.breadcrumb__sep { opacity: 0.5; }

/* === FOTOS COM MOLDURA REDONDA === */
.foto-redonda {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 5px solid var(--azul-dara);
  box-shadow: 0 8px 32px rgba(8, 43, 92, 0.15);
  transition: all var(--transicao);
}

.foto-redonda:hover {
  transform: scale(1.05);
  border-color: var(--azul-dara);
  box-shadow: 0 12px 40px rgba(10, 91, 216, 0.25);
}

.foto-redonda--grande {
  width: 300px;
  height: 300px;
}

/* Radar animation wrapper */
.radar-wrap {
  position: relative;
  display: inline-block;
  width: 260px;
  height: 260px;
}

.radar-wrap img {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  border-radius: 50%;
  border: none !important;
  box-shadow: none !important;
}

/* Arco giratório principal */
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #0A5BD8;
  border-right-color: rgba(10, 91, 216, 0.4);
  z-index: 3;
  pointer-events: none;
  animation: radarGirar 2s linear infinite;
  filter: drop-shadow(0 0 6px rgba(10, 91, 216, 0.6));
}

/* Segundo arco (contra-rotação) */
.radar-sweep::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #2F80ED;
  border-left-color: rgba(47, 128, 237, 0.3);
  animation: radarGirarReverso 3s linear infinite;
}

/* Brilho estático circular */
.radar-sweep::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(10, 91, 216, 0.2);
  box-shadow:
    0 0 20px rgba(10, 91, 216, 0.3),
    inset 0 0 20px rgba(10, 91, 216, 0.1);
}

/* Anéis do radar */
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 91, 216, 0.3);
  z-index: 2;
  pointer-events: none;
}

.radar-ring--1 { inset: 18%; }
.radar-ring--2 { inset: 6%; }

@keyframes radarGirar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes radarGirarReverso {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Pulso externo */
.radar-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid #0A5BD8;
  animation: radarPulso 2s ease-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes radarPulso {
  0% { transform: scale(1); opacity: 0.7; }
  80% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Imagem da Dara no acervo: sem card quadrado, menor e com o mesmo radar azul do hero. */
.dara-image-stage {
  display: grid;
  place-items: center;
  margin-top: var(--espaco-md);
  padding: var(--espaco-md) 0;
  background: transparent;
}

.dara-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: var(--espaco-xl);
}

.dara-intro-copy {
  min-width: 0;
}

.dara-intro-visual {
  min-width: 0;
}

.dara-intro-visual .dara-image-stage {
  margin-top: 0;
}

.dara-image-stage .radar-wrap--content {
  width: 250px;
  height: 250px;
}

.dara-image-stage .radar-wrap--content img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 600px) {
  .dara-intro-layout {
    grid-template-columns: 1fr;
    gap: var(--espaco-lg);
  }

  .dara-image-stage .radar-wrap--content {
    width: 230px;
    height: 230px;
  }

  .dara-image-stage .radar-wrap--content img {
    width: 190px;
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .radar-sweep, .radar-sweep::before { animation: none; }
  .radar-pulse { animation: none; opacity: 0; }
}

.foto-redonda--hero {
  width: 280px;
  height: 280px;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.foto-redonda--hero:hover {
  border-color: #fff;
}

/* Galeria de fotos */
.galeria {
  display: flex;
  gap: var(--espaco-md);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.galeria__item {
  text-align: center;
}

.galeria__legenda {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5em;
  max-width: 180px;
}

/* === RESPONSIVO === */
@media (max-width: 968px) {
  .nav__list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--branco);
    flex-direction: column;
    padding: var(--espaco-lg);
    gap: var(--espaco-sm);
    box-shadow: 0 10px 40px rgba(8, 43, 92, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transicao);
  }

  .nav__list--aberto {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__logo-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

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

  .hero__acoes {
    flex-direction: column;
  }

  .hero__acoes .btn {
    text-align: center;
    justify-content: center;
  }

  /* Centraliza a foto no mobile */
  .hero .animar--escala {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: var(--espaco-lg);
    margin-bottom: var(--espaco-lg);
  }
}

@media (max-width: 640px) {
  :root {
    --espaco-xxl: 3.5rem;
    --espaco-xl: 2.5rem;
  }

  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }

  .whatsapp-flutuante {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline__item::before {
    left: -24px;
    width: 10px;
    height: 10px;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .animar {
    opacity: 1;
    transform: none;
  }
}
