/* ============================================================
   Barbearia Alessandro Anjos — Landing page
   Production stylesheet. Implements the design-system tokens
   (warm wood + brass) and the component specs (Button, Badge,
   SectionHeading, ServiceCard) as plain CSS.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ----------------------------------------------------------------
   TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Base neutrals: espresso -> paper */
  --wood-900: #1a120b;
  --wood-800: #241a10;
  --wood-700: #33251a;
  --wood-600: #4a3623;
  --wood-500: #6b4a2e;
  --wood-400: #8a5a3b;
  --wood-300: #b08861;
  --paper-200: #e7d8c3;
  --paper-100: #f1e7d8;
  --paper-50:  #faf4ea;

  /* Brass / gold accent */
  --brass-700: #8a6420;
  --brass-600: #a87e2c;
  --brass-500: #c9a24a;
  --brass-400: #ddbb6a;
  --brass-300: #ecd49a;

  /* Oxblood / barber red */
  --oxblood-600: #7a2f26;
  --oxblood-500: #9c3b2e;

  /* Functional */
  --green-500: #5c7a3f;
  --white: #ffffff;
  --black: #000000;

  /* Surfaces */
  --surface-base: var(--wood-900);
  --surface-panel: var(--wood-800);
  --surface-raised: var(--wood-700);
  --surface-card: var(--paper-50);
  --surface-card-alt: var(--paper-100);

  /* Text on dark */
  --text-on-dark: var(--paper-100);
  --text-on-dark-muted: #b9a386;
  --text-on-dark-faint: #7d6b53;

  /* Text on light/paper */
  --text-heading: var(--wood-900);
  --text-body: var(--wood-700);
  --text-muted: var(--wood-500);

  /* Accent roles */
  --accent: var(--brass-500);
  --accent-hover: var(--brass-400);

  /* Borders & lines */
  --border-strong: rgba(201, 162, 74, 0.55);
  --border-soft: rgba(176, 136, 97, 0.28);
  --border-on-light: rgba(74, 54, 35, 0.18);

  /* Status */
  --status-open: var(--green-500);
  --status-closed: var(--oxblood-500);

  /* Type families */
  --font-display: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  /* Type scale */
  --text-2xs: 0.6875rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: 3rem;

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Section rhythm */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
  --maxw: 1200px;

  /* Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  /* Shadows — warm, low */
  --shadow-sm: 0 2px 6px rgba(26, 18, 11, 0.30);
  --shadow-md: 0 8px 22px rgba(26, 18, 11, 0.35);
  --shadow-lg: 0 18px 48px rgba(26, 18, 11, 0.45);
  --shadow-card: 0 6px 18px rgba(26, 18, 11, 0.18);
  --shadow-inset: inset 0 0 0 1px rgba(201, 162, 74, 0.30);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 140ms;
  --dur-base: 240ms;
  --dur-slow: 420ms;
}

/* ----------------------------------------------------------------
   RESET / BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--surface-base);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed, 1.65);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, ul, blockquote, figure { margin: 0; }
ul { padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--brass-400);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--brass-500);
  color: var(--wood-900);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-xs);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------------
   LAYOUT HELPERS
   ---------------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: var(--section-y) 0; }
.section--panel { background: var(--surface-panel); border-top: 1px solid var(--border-soft); }
.section--raised { background: var(--surface-raised); }

.icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; width: 24px; height: 24px; }

/* Eyebrow / label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-500);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--brass-500); }
.eyebrow--rules::after { content: ""; width: 28px; height: 2px; background: var(--brass-500); }

/* ----------------------------------------------------------------
   SECTION HEADING
   ---------------------------------------------------------------- */
.section-head { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.section-head--left { align-items: flex-start; text-align: left; }
.section-head__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--text-on-dark);
  max-width: 18ch;
  text-wrap: balance;
}
.section-head__sub {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  max-width: 52ch;
  text-wrap: pretty;
}

/* ----------------------------------------------------------------
   BUTTON
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--sm { padding: 8px 16px; font-size: var(--text-xs); gap: 7px; }
.btn--lg { padding: 17px 36px; font-size: var(--text-base); gap: 11px; }
.btn--full { display: flex; width: 100%; }

.btn--primary { background: var(--brass-500); color: var(--wood-900); border-color: var(--brass-500); }
.btn--primary:hover { background: var(--brass-400); border-color: var(--brass-400); }

.btn--secondary { background: transparent; color: var(--brass-400); border-color: var(--brass-500); }
.btn--secondary:hover { background: rgba(201, 162, 74, 0.12); color: var(--brass-300); }

.btn--ghost { background: transparent; color: var(--text-on-dark); border-color: transparent; letter-spacing: 0.1em; }
.btn--ghost:hover { color: var(--brass-400); }

/* Secondary on a light/paper surface (contact cards) */
.btn--on-light { color: var(--brass-600); border-color: var(--brass-500); }
.btn--on-light:hover { background: rgba(201, 162, 74, 0.12); color: var(--brass-700); }

.btn .icon { width: 18px; height: 18px; }
.btn--sm .icon { width: 16px; height: 16px; }

/* ----------------------------------------------------------------
   BADGE
   ---------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid;
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

.badge--gold   { color: var(--brass-600);   background: var(--brass-300); border-color: var(--brass-500); }
.badge--open   { color: #3f5a28;             background: #cdd8b8;          border-color: var(--green-500); }
.badge--open   .badge__dot { background: var(--green-500); }
.badge--closed { color: var(--oxblood-600);  background: #e6c4bd;          border-color: var(--oxblood-500); }
.badge--closed .badge__dot { background: var(--oxblood-500); }

/* ----------------------------------------------------------------
   NAV
   ---------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 14, 9, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__brand img { width: 42px; height: 42px; }
.nav__brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--paper-100);
  line-height: 1;
}
.nav__right { display: flex; align-items: center; gap: 32px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__links a:hover { color: var(--brass-400); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--paper-100);
  padding: 8px;
  cursor: pointer;
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
}
.hero__kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--brass-500);
  margin: 22px 0 14px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--paper-50);
  margin-bottom: 10px;
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--brass-300);
  margin-bottom: 22px;
}
.hero__lead {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__chip {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--brass-500);
  color: var(--wood-900);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------------
   PHOTO SLOT (placeholder until real photos arrive)
   ---------------------------------------------------------------- */
.photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, #2a1d12, #160f08);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-inset);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-on-dark-faint);
  position: relative;
  overflow: hidden;
}
.photo--square { aspect-ratio: 1 / 1; }
.photo .icon { width: 30px; height: 30px; opacity: 0.7; }

/* Photo slot holding a real image */
.photo--has-img { margin: 0; background: #160f08; box-shadow: var(--shadow-md), var(--shadow-inset); }
.photo--has-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo--has-img::after { opacity: 0.7; z-index: 1; }
.photo__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}
/* subtle barber-pole stripe motif (brand accent, used sparingly) */
.photo::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 8px;
  background-image: repeating-linear-gradient(
    45deg,
    var(--brass-500) 0 6px,
    var(--wood-900) 6px 12px
  );
  opacity: 0.55;
}

/* ----------------------------------------------------------------
   SERVICES
   ---------------------------------------------------------------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.service-card {
  position: relative;
  background: var(--surface-card);
  border-top: 3px solid var(--brass-500);
  border-radius: var(--radius-md);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card__badge { position: absolute; top: 16px; right: 16px; }
.service-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wood-600);
}
.service-card__icon .icon { width: 32px; height: 32px; }
.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-lg);
  color: var(--text-heading);
}
.service-card__desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
  text-wrap: pretty;
}
.service-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--border-on-light);
  padding-top: 14px;
  margin-top: 4px;
}
.service-card__price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--text-heading);
}
.service-card__duration {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   ABOUT
   ---------------------------------------------------------------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
}
.about__text p {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin-bottom: 18px;
  max-width: 54ch;
}
.about__quote {
  padding-left: 22px;
  border-left: 3px solid var(--brass-500);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--brass-300);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   ACOLHIMENTO (inclusive welcome)
   ---------------------------------------------------------------- */
.acolhimento__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}
.acolhimento__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  color: var(--paper-50);
  margin: 18px 0;
  max-width: 20ch;
}
.acolhimento__text {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin-bottom: 20px;
  max-width: 54ch;
}
.checklist { display: grid; gap: 12px; margin-bottom: 28px; }
.checklist li { display: flex; align-items: center; gap: 12px; color: var(--paper-100); }
.checklist__mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brass-500);
  color: var(--wood-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.checklist__mark .icon { width: 13px; height: 13px; stroke-width: 3; }

/* ----------------------------------------------------------------
   HOURS
   ---------------------------------------------------------------- */
.hours__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.hours__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.hours__day {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  color: var(--paper-100);
}
.hours__time { font-size: 15px; color: var(--brass-300); }
.hours__time--closed { color: var(--text-on-dark-faint); }
.hours__time[data-now="true"] { font-weight: 600; }

.locator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: var(--surface-panel);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  border: 1px solid var(--border-soft);
}
.locator .icon { width: 28px; height: 28px; color: var(--brass-500); }
.locator__eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--text-on-dark-faint);
  margin-bottom: 6px;
}
.locator__city { font-family: var(--font-serif); font-size: 22px; color: var(--paper-50); margin-bottom: 4px; }
.locator__addr { font-size: 14px; color: var(--text-on-dark-muted); }
.locator a.locator__addr { text-decoration: none; }
.locator a.locator__addr:hover { color: var(--brass-300); }

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */
.contact-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--brass-500);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.contact-card__icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--wood-900);
  color: var(--brass-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon .icon { width: 22px; height: 22px; }
.contact-card__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-card__value { font-family: var(--font-serif); font-size: 22px; color: var(--text-heading); word-break: break-word; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer { background: var(--wood-900); padding: var(--space-8) 0 var(--space-6); border-top: 2px solid var(--brass-500); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 52px; height: 52px; }
.footer__name { font-family: var(--font-serif); font-weight: 700; font-size: 18px; color: var(--paper-100); }
.footer__tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: var(--brass-500);
  margin-top: 4px;
}
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-400);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.footer__social a:hover { border-color: var(--brass-500); color: var(--brass-300); }
.footer__social .icon { width: 18px; height: 18px; }
.footer__legal {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--text-on-dark-faint);
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL
   ---------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; }
  .about__inner,
  .acolhimento__inner,
  .hours__inner { grid-template-columns: 1fr; }
  .about__inner .photo { max-width: 460px; }
  .acolhimento__inner .photo { max-width: 460px; order: -1; }
}

@media (max-width: 720px) {
  .nav__right { gap: 0; }
  .nav__links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(20, 14, 9, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    padding: 8px var(--gutter) 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { display: block; padding: 14px 0; font-size: 14px; border-bottom: 1px solid var(--border-soft); }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
