/* ================================================
   AME PIERCING — Landing Page Styles
   ================================================ */

:root {
  --gold:        #C4975A;
  --gold-dark:   #A67C3E;
  --gold-light:  #D4AD76;
  --dark:        #1C1C1C;
  --text:        #2C2C2C;
  --muted:       #6B6B6B;
  --cream:       #F5EFE4;
  --bg:          #FAFAF8;
  --white:       #FFFFFF;
  --border:      #E8E2D9;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 9999px;

  --sh-sm:  0 1px 4px rgba(0,0,0,.08);
  --sh-md:  0 4px 20px rgba(0,0,0,.10);
  --sh-lg:  0 12px 48px rgba(0,0,0,.14);

  --max-w:  1200px;
  --pad:    clamp(1rem, 5vw, 2.5rem);
  --t:      .25s ease;
  --t-sl:   .4s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad); }

/* ================================================
   TYPOGRAPHY HELPERS
   ================================================ */
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}
.section-tag--light { color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-inline: auto;
}
.section-subtitle--light { color: rgba(255,255,255,.72); }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-subtitle { color: rgba(255,255,255,.72); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: .01em;
  border-radius: var(--r-full);
  padding: .72rem 1.7rem;
  transition: all var(--t);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(196,151,90,.38);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
}
.btn--white:hover, .btn--white:focus-visible {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
}

.btn--sm  { font-size: .83rem; padding: .5rem 1.2rem; }
.btn--lg  { font-size: .98rem; padding: .95rem 2.2rem; }
.btn--full { width: 100%; }

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.header.scrolled {
  background: var(--white);
  box-shadow: var(--sh-sm);
  padding: .6rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo { flex-shrink: 0; display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--t);
}
.logo__name--light { color: var(--white); }
.header.scrolled .logo__name:not(.logo__name--light) { color: var(--dark); }
.logo__sub {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--t);
}
.header.scrolled .logo__sub { color: var(--muted); }

/* Desktop nav */
.nav { display: none; margin-left: auto; }
@media (min-width: 768px) { .nav { display: flex; } }
.nav__list { display: flex; gap: 2rem; }
.nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.header.scrolled .nav__link { color: var(--text); }

.nav__cta { display: none; }
@media (min-width: 768px) { .nav__cta { display: inline-flex; margin-left: auto; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
  padding: 4px;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
  transform-origin: center;
}
.header.scrolled .hamburger span { background: var(--dark); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 5.5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--t-sl);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__list { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 2rem; }
.mobile-menu__link {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-menu__link:hover { color: var(--gold); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.44) 55%, rgba(0,0,0,.3) 100%);
}
.hero__content { position: relative; z-index: 1; }
.hero__text { max-width: 610px; }

.hero__eyebrow {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero__subtitle {
  font-size: clamp(.97rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.82);
  line-height: 1.68;
  margin-bottom: 2rem;
  max-width: 510px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero__proof { display: flex; align-items: center; gap: .65rem; }
.stars { display: flex; gap: 2px; color: var(--gold-light); font-size: 1.05rem; }
.hero__proof-text { font-size: .88rem; color: rgba(255,255,255,.8); }
.hero__proof-text strong { color: var(--white); }

/* ---- Hero: split layout no desktop ---- */
@media (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: min(50vw, 660px) min(50vw, 560px);
    justify-content: center;  /* centraliza o grid; fundo escuro cobre as bordas */
    padding: 0;
    align-items: stretch;
    background: var(--dark);
  }
  .hero__media {
    position: relative;
    inset: auto;
    z-index: auto;
    grid-column: 2;
    grid-row: 1;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7rem 3.5rem 4rem 3rem;
  }
  .hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196,151,90,.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero__overlay { display: none; }
  .hero__img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: calc(100svh - 9rem);
    max-width: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--r-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
  }
  .hero__content {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    margin-inline: 0;
    padding: 8rem 3.5rem 5rem clamp(2.5rem, 5vw, 4rem);
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: static;
    z-index: auto;
  }
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar { background: var(--dark); padding: 1.2rem 0; }
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.8rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
}
.trust-bar__icon { width: 17px; height: 17px; flex-shrink: 0; color: var(--gold); }

/* ================================================
   SERVICES
   ================================================ */
.services { padding: clamp(4rem,8vw,7rem) 0; background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .services__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(4,1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.service-card--featured { border: 2px solid var(--gold); }

.service-card__img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.service-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-sl); }
.service-card:hover .service-card__img-wrap img { transform: scale(1.04); }

.service-card__img-wrap--compare { aspect-ratio: auto; }
.compare { display: grid; grid-template-columns: 1fr 1fr; }
.compare__half { position: relative; }
.compare__half img { width: 100%; height: 170px; object-fit: cover; }
.compare__label {
  position: absolute;
  top: .5rem; left: .5rem;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: var(--r-sm);
  z-index: 1;
}

.service-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; gap: .7rem; }
.service-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: var(--r-full);
  width: fit-content;
}
.service-card__title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--dark); }
.service-card__text { font-size: .88rem; color: var(--muted); line-height: 1.65; flex: 1; }
.service-card__price { font-size: .88rem; font-weight: 600; color: var(--gold); }

/* ================================================
   DIFFERENTIALS
   ================================================ */
.differentials { padding: clamp(4rem,8vw,7rem) 0; background: var(--cream); }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .diff-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(3,1fr); } }

.diff-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.8rem;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.diff-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.diff-card__icon {
  width: 46px; height: 46px;
  background: var(--cream);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--gold);
}
.diff-card__icon svg { width: 22px; height: 22px; }
.diff-card__title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: .55rem; }
.diff-card__text { font-size: .87rem; color: var(--muted); line-height: 1.66; }

/* ================================================
   VIDEO
   ================================================ */
.video-section { padding: clamp(4rem,8vw,7rem) 0; background: var(--dark); }
.video-wrap {
  max-width: 700px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.video-player { width: 100%; display: block; }

@media (min-width: 768px) {
  .video-wrap { max-width: 480px; }
  .video-player { max-height: 360px; object-fit: cover; }
}
.video-section__cta { text-align: center; margin-top: 2.5rem; }

/* ================================================
   ABOUT
   ================================================ */
.about { padding: clamp(4rem,8vw,7rem) 0; background: var(--bg); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .about__inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about__media { position: relative; }
.about__img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--sh-lg);
}
.about__card {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--r-md);
  padding: .9rem 1.4rem;
  box-shadow: var(--sh-md);
  text-align: center;
  white-space: nowrap;
}
.about__card-name { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--dark); }
.about__card-title { font-size: .72rem; color: var(--muted); margin-top: .15rem; }

.about__heading { text-align: left; }
.about__text { font-size: .95rem; color: var(--muted); line-height: 1.76; margin-bottom: .9rem; }

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat__n {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__l { font-size: .77rem; color: var(--muted); margin-top: .2rem; max-width: 90px; line-height: 1.4; }

/* ================================================
   GALLERY
   ================================================ */
.gallery { padding: clamp(4rem,8vw,7rem) 0; background: var(--cream); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .75rem;
}
.gallery__item { overflow: hidden; border-radius: var(--r-md); }
.gallery__item img { width: 100%; height: 210px; object-fit: cover; transition: transform var(--t-sl); }
.gallery__item:hover img { transform: scale(1.04); }
@media (min-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(3,1fr); }
  .gallery__item img { height: 240px; }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { padding: clamp(4rem,8vw,7rem) 0; background: var(--dark); }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3,1fr); } }

.tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.tcard__stars { color: var(--gold-light); font-size: .95rem; letter-spacing: 2px; }
.tcard__text { font-size: .92rem; line-height: 1.72; color: rgba(255,255,255,.8); flex: 1; font-style: italic; }
.tcard__footer { border-top: 1px solid rgba(255,255,255,.1); padding-top: .9rem; }
.tcard__name { font-weight: 600; font-size: .85rem; color: var(--white); }
.tcard__source { font-size: .73rem; color: rgba(255,255,255,.45); margin-top: .15rem; }
.testimonials__bottom { text-align: center; }

/* ================================================
   FAQ
   ================================================ */
.faq { padding: clamp(4rem,8vw,7rem) 0; background: var(--bg); }
.faq__list { max-width: 740px; margin-inline: auto; display: flex; flex-direction: column; gap: .65rem; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-size: .94rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color var(--t);
}
.faq__q:hover { color: var(--gold); }

.faq__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.faq__icon::before { width: 14px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__icon::after  { width: 2px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-sl);
}
.faq__a.open { max-height: 280px; }
.faq__a p { padding: 0 1.4rem 1.4rem; font-size: .9rem; color: var(--muted); line-height: 1.72; }

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
  padding: clamp(4rem,8vw,7rem) 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .final-cta__inner { grid-template-columns: 1fr auto; } }

.final-cta__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem,4vw,2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.final-cta__subtitle {
  font-size: .98rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 460px;
}
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.1rem; }
.final-cta__location { font-size: .82rem; color: rgba(255,255,255,.65); }

.final-cta__img-wrap { width: 250px; flex-shrink: 0; display: none; }
@media (min-width: 768px) { .final-cta__img-wrap { display: block; } }
.final-cta__img-wrap img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--sh-lg);
}

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--dark); padding: clamp(3rem,5vw,5rem) 0 0; color: rgba(255,255,255,.65); }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer__tagline { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: .7rem; }
.footer__col-title {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .9rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__col ul a,
.footer__col ul li { font-size: .85rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer__col ul a:hover { color: var(--gold-light); }

.footer__bottom { padding: 1.2rem 0; }
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.3); text-align: center; }
.footer__credit { margin-top: .3rem; }
.footer__credit a { color: rgba(255,255,255,.3); transition: color var(--t); }
.footer__credit a:hover { color: rgba(255,255,255,.55); }

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float svg { width: 30px; height: 30px; color: white; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ================================================
   REVEAL ANIMATION
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   ACCESSIBILITY
   ================================================ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
