/* RADIO MAC — versão compacta. Identidade: alterar as variáveis abaixo. */
:root {
  --ink: #090a0d;
  --ink-soft: #15191e;
  --ink-raised: #20262d;
  --red: #f03b32;
  --red-dark: #d92d28;
  --white: #ffffff;
  --paper: #f5f4f1;
  --muted: #a7adb5;
  --line: rgba(255, 255, 255, .18);
  --title-font: 'Space Grotesk', Arial, sans-serif;
  --body-font: 'DM Sans', Arial, sans-serif;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  padding-bottom: 80px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}
body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--title-font);
  letter-spacing: -.05em;
  line-height: 1.05;
}
p { color: var(--muted); }
::selection { background: var(--red); color: var(--white); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; left: 14px; top: -100px;
  padding: 10px 14px; border-radius: 7px; background: var(--white); color: var(--ink);
}
.skip-link:focus { top: 12px; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 96px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--white); font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow-red { color: var(--red-dark); }
.live-dot {
  display: inline-block; flex: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 59, 50, .2);
  animation: live-pulse 2.1s ease-in-out infinite;
}
.status-dot { display: inline-block; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-height: 47px; padding: 11px 19px;
  border: 1px solid transparent; border-radius: 7px;
  background: transparent; color: var(--white);
  font-size: .8rem; font-weight: 700; letter-spacing: .055em;
  text-transform: uppercase; white-space: nowrap;
  transition: transform .22s, background .22s, border-color .22s;
}
.button:hover { transform: translateY(-2px); }
.button-red { background: var(--red); border-color: var(--red); }
.button-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button-ghost { border-color: rgba(255, 255, 255, .48); }
.button-ghost:hover { background: rgba(255, 255, 255, .1); }
.button-dark { background: var(--ink); border-color: var(--ink); }
.button-dark:hover { background: var(--ink-raised); }
.button-large { min-height: 55px; padding: 14px 24px; }
.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding-bottom: 6px; border-bottom: 2px solid var(--red);
  font-size: .84rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; transition: gap .2s;
}
.text-link:hover { gap: 18px; }

/* Header and logo */
.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; right: 0;
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled, .site-header.menu-open {
  background: rgba(9, 10, 13, .95);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand-symbol {
  width: 38px; height: 38px; border: 3px solid var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 3px;
  transform: rotate(-12deg);
}
.brand-symbol span { width: 3px; height: 10px; border-radius: 3px; background: var(--white); }
.brand-symbol span:nth-child(2) { height: 20px; }
.brand-name { font-family: var(--title-font); font-size: .97rem; font-weight: 700; letter-spacing: -.03em; white-space: nowrap; }
.brand-name strong { color: var(--red); }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: #d4d6d9; font-size: .82rem; font-weight: 700; transition: color .2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--white); }
.desktop-nav a.active { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 10px; text-decoration-thickness: 2px; }
.header-play { margin-left: 18px; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 7px; background: transparent; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded=true] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded=true] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded=true] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }

/* Hero: one clear message and immediate access to the stream */
.hero { position: relative; min-height: 690px; overflow: hidden; display: flex; align-items: center; background: var(--ink-soft); }
.hero-photo, .hero-overlay { position: absolute; inset: 0; }
.hero-photo { background: url('../assets/images/hero-studio.webp') center right / cover no-repeat; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 10, 13, .98) 0%, rgba(9, 10, 13, .88) 34%, rgba(9, 10, 13, .23) 82%),
    linear-gradient(0deg, rgba(9, 10, 13, .54), transparent 42%);
}
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 340px; gap: 5%; align-items: end; padding: 145px 0 95px; }
.hero-copy { max-width: 660px; }
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(4.4rem, 8.3vw, 8.8rem); line-height: .83; margin: 0 0 26px; }
.hero h1 span { color: var(--white); }
.hero h1 b { color: var(--red); font-weight: 700; }
.hero-tagline { font-family: var(--title-font); font-size: clamp(1.28rem, 2vw, 1.8rem); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.hero-description { max-width: 490px; color: #e1e3e6; margin-bottom: 28px; font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-signal {
  align-self: end; border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 14px; overflow: hidden; background: rgba(9, 10, 13, .82);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .36); backdrop-filter: blur(18px);
}
.signal-head {
  display: flex; align-items: center; gap: 10px; padding: 15px 20px;
  border-bottom: 1px solid var(--line); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
}
.signal-body { display: flex; align-items: center; gap: 13px; padding: 23px 20px; }
.signal-icon { width: 43px; height: 43px; flex: none; display: grid; place-items: center; border-radius: 50%; background: rgba(240, 59, 50, .16); color: var(--red); }
.signal-body strong, .signal-body small { display: block; }
.signal-body strong { font-family: var(--title-font); font-size: 1.18rem; line-height: 1.1; }
.signal-body small { color: var(--muted); font-size: .73rem; margin-top: 5px; }
.signal-play { width: 40px; height: 40px; flex: none; margin-left: auto; border: 0; border-radius: 50%; background: var(--red); color: var(--white); }
.signal-play:hover { background: var(--red-dark); }
.signal-foot { margin: 0; padding: 0 20px 18px; color: #ced2d5; font-size: .77rem; }
.brand-strip { overflow: hidden; background: var(--red); color: var(--ink); transform: skewY(-1deg); transform-origin: left; }
.brand-strip-inner {
  display: flex; width: max-content; min-width: 100%;
  font-family: var(--title-font); font-size: .94rem; font-weight: 700;
  letter-spacing: .08em; white-space: nowrap;
}
.brand-strip-segment { display: block; flex: none; padding: 14px 0; }
.brand-strip-segment > span { margin: 0 18px; }
@media (prefers-reduced-motion: no-preference) {
  .brand-strip-inner { will-change: transform; }
}

/* About: concise institutional introduction */
.about { background: var(--paper); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 9%; align-items: center; }
.about-mark {
  position: relative; min-height: 390px; display: grid; place-items: center;
  border-radius: 20px; overflow: hidden; background: var(--red); color: var(--ink);
}
.about-mark::before, .about-mark::after {
  content: ''; position: absolute; width: 440px; height: 440px;
  border: 2px solid rgba(9, 10, 13, .2); border-radius: 50%;
}
.about-mark::before { transform: translate(-38%, -17%); }
.about-mark::after { transform: translate(38%, 17%); }
.about-mark-ring { position: absolute; width: 275px; height: 275px; border: 4px solid var(--ink); border-radius: 50%; transform: rotate(-15deg); }
.about-mark strong { position: relative; z-index: 1; font-family: var(--title-font); font-size: 13rem; line-height: 1; letter-spacing: -.13em; transform: rotate(-10deg); }
.about-mark small { position: absolute; z-index: 1; bottom: 25px; font-size: .73rem; font-weight: 700; letter-spacing: .2em; }
.about-copy h2 { max-width: 580px; margin: 20px 0 23px; font-size: clamp(2.8rem, 4.8vw, 5.2rem); }
.about-copy h2 em { color: var(--red-dark); font-style: normal; }
.about-copy > p { max-width: 590px; color: #49525b; font-size: 1.04rem; }
.about-points { margin-top: 25px; border-top: 1px solid #d8d9d8; }
.about-points div { display: flex; align-items: center; gap: 15px; padding: 13px 0; border-bottom: 1px solid #d8d9d8; font-size: .91rem; font-weight: 700; }
.about-points i { width: 25px; color: var(--red-dark); font-size: 1.1rem; }

/* Compact demonstrative schedule */
.programme { background: var(--ink); }
.programme-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 9%; align-items: center; }
.programme-heading h2 { max-width: 620px; margin: 22px 0; font-size: clamp(2.7rem, 5vw, 5.4rem); }
.programme-heading h2 em { font-style: normal; color: var(--red); }
.programme-heading p { max-width: 550px; margin-bottom: 23px; }
.programme-panel { padding: 28px; border: 1px solid var(--line); border-radius: 17px; background: var(--ink-soft); box-shadow: 0 28px 60px rgba(0, 0, 0, .18); }
.programme-panel-top { display: flex; justify-content: space-between; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.programme-panel-top i { margin-right: 7px; color: var(--red); }
.programme-panel-top span:last-child { color: var(--muted); }
.programme-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin: 18px 0 4px; }
.programme-tabs button { min-height: 39px; padding: 7px 9px; border: 1px solid var(--line); border-radius: 6px; background: var(--ink-raised); color: var(--muted); font-size: .78rem; font-weight: 700; }
.programme-tabs button:hover { color: var(--white); }
.programme-tabs button[aria-selected="true"] { border-color: var(--red); background: var(--red); color: var(--white); }
.programme-item { display: grid; grid-template-columns: 112px 1fr; gap: 14px; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.programme-item:last-child { border-bottom: 0; }
.programme-item time { color: var(--red); font-size: .78rem; font-weight: 700; }
.programme-item strong, .programme-item small { display: block; }
.programme-item strong { font-family: var(--title-font); font-size: 1.02rem; line-height: 1.3; }
.programme-item small { color: var(--muted); font-size: .76rem; line-height: 1.4; margin-top: 4px; }
.programme-disclaimer { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; line-height: 1.4; }

/* Contact combines audience and commercial enquiries */
.contact { background: var(--red); color: var(--white); padding-bottom: 50px; }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 9%; align-items: start; }
.contact-copy h2 { margin: 20px 0; max-width: 560px; font-size: clamp(2.8rem, 5vw, 5.5rem); }
.contact-copy h2 em { color: var(--ink); font-style: normal; }
.contact-copy > p { max-width: 500px; color: rgba(255, 255, 255, .92); font-size: 1.04rem; }
.contact-channels { display: grid; gap: 14px; margin-top: 32px; }
.contact-channels span, .contact-channels a { display: inline-flex; align-items: center; gap: 12px; width: max-content; max-width: 100%; font-weight: 700; }
.contact-channels a:hover { text-decoration: underline; }
.contact-channels i { width: 20px; }
.contact-copy .contact-note { margin-top: 22px; font-size: .8rem; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 23px; }
.social-links a { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid rgba(255, 255, 255, .64); border-radius: 50%; transition: color .2s, background .2s; }
.social-links a:hover { color: var(--red); background: var(--white); }
.contact-form { display: grid; gap: 13px; padding: 32px; border-radius: 16px; background: var(--white); color: var(--ink); box-shadow: 0 24px 55px rgba(0, 0, 0, .16); }
.contact-form h3 { margin: 0; font-size: 1.8rem; }
.contact-form > p { margin: 0 0 4px; color: #6a737b; font-size: .84rem; }
.form-row { display: grid; gap: 6px; }
.form-row label { font-size: .8rem; font-weight: 700; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; min-height: 43px; padding: 10px 12px;
  border: 1px solid #cdd2d6; border-radius: 6px;
  outline: none; background: #f8f9fa; color: var(--ink);
}
.form-row textarea { resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--red-dark); box-shadow: 0 0 0 3px rgba(240, 59, 50, .15); }
.contact-form .button { justify-self: start; margin-top: 5px; }
.contact-form .form-feedback { min-height: 20px; margin: 0; color: #176a39; font-size: .82rem; }
.contact-form .form-feedback.error { color: #a31e1e; }
.commercial-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 62px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .48); font-family: var(--title-font); font-weight: 700; }
.commercial-line a { display: inline-flex; align-items: center; gap: 10px; text-decoration: underline; text-underline-offset: 5px; }
.commercial-line a:hover { gap: 16px; }

/* Footer */
.site-footer { padding: 52px 0 0; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; gap: 25px; align-items: center; }
.footer-main p { margin: 0; font-size: .85rem; }
.footer-main nav { display: flex; gap: 19px; }
.footer-main nav a { color: var(--muted); font-size: .8rem; font-weight: 700; }
.footer-main nav a:hover, .footer-bottom a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 15px; margin-top: 48px; padding: 20px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }

/* Persistent player */
.sticky-player {
  position: fixed; z-index: 110; left: 0; right: 0; bottom: 0; height: 76px;
  background: rgba(21, 25, 30, .97); border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .24); backdrop-filter: blur(15px);
}
.player-inner { height: 100%; display: flex; align-items: center; gap: 22px; }
.player-status { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .11em; white-space: nowrap; }
.player-identity { display: grid; line-height: 1.25; }
.player-identity strong { font-family: var(--title-font); font-size: .94rem; }
.player-identity small { color: var(--muted); font-size: .7rem; }
.equalizer { display: flex; align-items: center; gap: 3px; height: 23px; margin-left: auto; }
.equalizer i { width: 3px; height: 7px; border-radius: 4px; background: var(--red); }
.equalizer i:nth-child(2), .equalizer i:nth-child(4) { height: 14px; }
.equalizer i:nth-child(3) { height: 22px; }
.is-playing .equalizer i { animation: equalize .8s ease-in-out infinite alternate; }
.is-playing .equalizer i:nth-child(2) { animation-delay: -.5s; }
.is-playing .equalizer i:nth-child(3) { animation-delay: -.2s; }
.is-playing .equalizer i:nth-child(4) { animation-delay: -.7s; }
.player-play { flex: none; display: grid; place-items: center; width: 47px; height: 47px; border: 0; border-radius: 50%; background: var(--red); color: var(--white); }
.player-play:hover { background: var(--red-dark); }
.player-volume { display: flex; align-items: center; gap: 9px; color: var(--muted); }
.player-volume input { width: 110px; accent-color: var(--red); }
.player-expand { display: grid; place-items: center; width: 32px; height: 40px; border: 0; background: none; color: var(--white); }
.player-expand:hover { color: var(--red); }
.player-error { position: absolute; right: 16px; bottom: calc(100% + 10px); max-width: calc(100vw - 32px); margin: 0; padding: 11px 14px; border: 1px solid var(--red); border-radius: 8px; background: var(--ink); color: var(--white); font-size: .82rem; box-shadow: 0 10px 30px rgba(0, 0, 0, .3); }
.player-dialog { width: min(430px, calc(100% - 24px)); max-height: calc(100dvh - 24px); overflow-y: auto; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--ink-soft); color: var(--white); box-shadow: 0 25px 90px rgba(0, 0, 0, .6); }
.player-dialog::backdrop { background: rgba(0, 0, 0, .76); backdrop-filter: blur(6px); }
.dialog-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dialog-close { width: 35px; height: 35px; border: 1px solid var(--line); border-radius: 50%; background: none; color: var(--white); }
.dialog-close:hover { background: var(--red); }
.dialog-image { margin: 18px 0; aspect-ratio: 1.6; overflow: hidden; border-radius: 10px; }
.dialog-image img { width: 100%; height: 100%; object-fit: cover; object-position: right; }
.player-dialog h2 { font-size: 2.1rem; margin: 0 0 12px; }
.player-dialog p { margin-bottom: 17px; }
.dialog-controls { display: flex; align-items: center; gap: 24px; padding-top: 15px; border-top: 1px solid var(--line); }
.dialog-controls input { width: 180px; }

/* Motion and responsive layout */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes live-pulse { 50% { box-shadow: 0 0 0 10px rgba(240, 59, 50, 0); } }
@keyframes equalize { from { height: 5px; } to { height: 22px; } }

@media (max-width: 1000px) {
  .hero-layout { grid-template-columns: 1fr 290px; gap: 25px; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6.8rem); }
  .desktop-nav { gap: 17px; }
  .header-play { margin-left: 0; }
  .footer-main { grid-template-columns: auto 1fr; }
  .footer-main nav { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .desktop-nav, .header-play { display: none; }
  .menu-button { display: block; margin-left: auto; }
  .mobile-nav:not([hidden]) {
    display: grid; position: absolute; top: 76px; left: 0; right: 0;
    padding: 12px 24px 24px; background: rgba(9, 10, 13, .98);
    border-bottom: 1px solid var(--line); box-shadow: 0 22px 40px rgba(0, 0, 0, .3);
  }
  .mobile-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mobile-nav .button { margin-top: 17px; justify-self: start; }
  .hero { min-height: 730px; }
  .hero-photo { background-position: 65% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(9, 10, 13, .98), rgba(9, 10, 13, .76) 60%, rgba(9, 10, 13, .18)); }
  .hero-layout { display: block; padding: 250px 0 75px; }
  .hero-signal { display: none; }
  .hero-copy { max-width: 600px; }
  .about-grid, .programme-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-mark { min-height: 320px; }
  .footer-main { grid-template-columns: 1fr; gap: 16px; }
  .footer-main nav { grid-column: auto; }
}

@media (max-width: 600px) {
  body { padding-bottom: 69px; }
  html { scroll-padding-top: 72px; }
  .container { width: calc(100% - 36px); }
  .section { padding: 70px 0; }
  .header-inner { height: 68px; }
  .mobile-nav:not([hidden]) { top: 68px; padding-inline: 18px; }
  .brand-name { font-size: .9rem; }
  .hero { min-height: 710px; }
  .hero-layout { padding: 255px 0 63px; }
  .hero h1 { font-size: clamp(3.7rem, 15vw, 6rem); margin-bottom: 22px; }
  .hero-tagline { font-size: 1.2rem; }
  .hero-description { font-size: .94rem; }
  .hero-actions { gap: 8px; }
  .hero-actions .button { padding: 11px 13px; min-height: 47px; font-size: .69rem; }
  .brand-strip-inner { font-size: .75rem; }
  .brand-strip-segment { padding: 10px 0; }
  .brand-strip-segment > span { margin-inline: 10px; }
  .about-mark { min-height: 275px; }
  .about-mark strong { font-size: 10rem; }
  .about-mark-ring { width: 210px; height: 210px; }
  .about-copy h2, .programme-heading h2, .contact-copy h2 { font-size: clamp(2.8rem, 11vw, 4.3rem); }
  .programme-panel { padding: 22px; }
  .programme-item { grid-template-columns: 98px 1fr; gap: 10px; }
  .contact-form { padding: 24px 20px; }
  .commercial-line { display: grid; margin-top: 42px; font-size: .92rem; }
  .footer-main nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 8px 22px; }
  .footer-bottom { display: block; margin-top: 35px; }
  .footer-bottom a { display: block; margin-top: 6px; }
  .sticky-player { height: 66px; }
  .player-inner { gap: 11px; }
  .player-status { font-size: .63rem; }
  .player-identity { flex: 1; min-width: 0; }
  .player-identity strong { font-size: .8rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .player-identity small, .equalizer, .player-inner .player-volume { display: none; }
  .player-play { width: 42px; height: 42px; }
  .player-expand { width: 25px; }
  .dialog-controls input { width: 140px; }
}
@media (max-width: 365px) {
  .hero h1 { font-size: 3.4rem; }
  .hero-actions .button { white-space: normal; text-align: center; }
  .brand-name { font-size: .78rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
