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

:root {
  --cream:      #faf7f2;
  --cream-dark: #f0ebe2;
  --bege:       #d3c6ba;
  --bege-dark:  #b8a898;
  --brown:      #1e110a;
  --brown-mid:  #4a2e1e;
  --brown-soft: #7a5540;
  --gold:       #c8a96e;
  --gold-dark:  #a8823a;
  --gold-light: #e8d0a0;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --section-pad: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  --radius:      2px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
}
.page-wrapper { overflow-x: clip; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 400; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  { font-size: clamp(0.9rem, 1.5vw, 1.05rem); line-height: 1.75; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===================== SITE HEADER ===================== */
.site-header {
  position: relative;
  z-index: 1000;
}

/* ===================== OFFER RIBBON ===================== */
.offer-ribbon {
  background: var(--brown);
  color: var(--gold-light);
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.offer-ribbon span { color: var(--gold); font-weight: 600; }

/* ===================== NAVIGATION ===================== */
#navbar {
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brown);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(30, 17, 10, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
  -webkit-transform: translateZ(0); /* iOS Safari fixed position stability */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px;
  height: auto;
  opacity: 0.92;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bege);
  letter-spacing: 0.08em;
}
.nav-logo-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bege);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-links a.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  opacity: 1;
  transition: background var(--transition), color var(--transition);
}
.nav-links a.nav-cta:hover { background: var(--gold); color: var(--brown); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}
.nav-hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bege);
  transition: var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ===================== FOCUS VISIBLE — WCAG 2.4.7 ===================== */
.nav-links a:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.whatsapp-float:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--bege);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  border: 1px solid rgba(211,198,186,0.35);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover { border-color: var(--bege); color: var(--cream); }

/* ===================== HERO ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--brown);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(211,198,186,0.05) 0%, transparent 60%);
}
.hero-isotipo {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(380px, 52vw, 720px);
  opacity: 0.07;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad);
  max-width: 780px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--bege);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bege-dark);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ===================== HERO PHOTO ===================== */
.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brown) 0%, rgba(30,17,10,0.5) 35%, transparent 70%);
  z-index: 1;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brown) 0%, transparent 25%);
  z-index: 1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.65;
}

/* ===================== SECTION HEADERS ===================== */
.section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-header.centered { text-align: center; }
.section-header.centered .gold-line { margin: 1.5rem auto; }

/* ===================== PRODUTOS ===================== */
#produtos { padding: var(--section-pad); background: var(--cream); }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2px;
}
.produto-card {
  position: relative;
  background: var(--cream-dark);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  overflow: hidden;
  transition: transform var(--transition);
  cursor: default;
}
.produto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.produto-card:hover::before { transform: scaleX(1); }
.produto-card:hover { transform: translateY(-4px); }

.produto-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--bege-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.produto-card h3 { color: var(--brown); margin-bottom: 1rem; font-weight: 500; }
.produto-card p  { color: var(--brown-soft); font-size: 0.92rem; margin-bottom: 1.5rem; }
.produto-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* ===================== DIFERENCIAIS ===================== */
#diferenciais {
  padding: var(--section-pad);
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
#diferenciais::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--cream), transparent);
}
#diferenciais .section-label { color: var(--gold); }
#diferenciais h2 { color: var(--cream); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5px;
  margin-top: 4rem;
}
.diferencial-card {
  padding: clamp(2rem, 3.5vw, 3rem);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,110,0.12);
  transition: background var(--transition), border-color var(--transition);
}
.diferencial-card:hover {
  background: rgba(200,169,110,0.06);
  border-color: rgba(200,169,110,0.35);
}
.diferencial-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.diferencial-card h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: 0.75rem; }
.diferencial-card p  { color: var(--bege-dark); font-size: 0.88rem; line-height: 1.7; }

/* ===================== VISAGISMO ===================== */
#visagismo {
  padding: var(--section-pad);
  background: var(--cream-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.visagismo-frame {
  aspect-ratio: 4/5;
  background: var(--bege);
  position: relative;
  overflow: visible; /* allow badge to overflow */
}
.visagismo-frame-inner {
  position: absolute;
  inset: 1.5rem;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* clip the inner content only */
}
.visagismo-frame-inner svg { width: 65%; opacity: 0.5; }
.visagismo-frame-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.visagismo-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--brown);
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  width: 130px;
  z-index: 1;
}
.visagismo-text .section-label { color: var(--gold); }
.visagismo-text h2 { color: var(--brown); margin-bottom: 1.5rem; }
.visagismo-text p  { color: var(--brown-soft); margin-bottom: 2rem; }
.visagismo-microcopy {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--brown-soft);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ===================== GALERIA ===================== */
#galeria {
  padding: var(--section-pad);
  background: var(--cream);
}
#galeria .section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.galeria-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.galeria-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.galeria-item:hover img { transform: scale(1.04); }

/* ===================== MARCAS ===================== */
#marcas {
  padding: var(--section-pad);
  background: var(--brown);
  text-align: center;
}
#marcas .section-label { color: var(--gold); }
#marcas h2 { color: var(--cream); margin-bottom: 1rem; }
#marcas .section-intro {
  color: var(--bege-dark);
  max-width: 580px;
  margin: 0 auto 4rem;
  font-size: 0.95rem;
}
.marcas-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.marca-item {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--bege-dark);
  padding: 1.2rem clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(211,198,186,0.1);
  transition: color var(--transition), border-color var(--transition);
  cursor: default;
}
.marca-item:hover { color: var(--gold); border-color: rgba(200,169,110,0.3); }
.marcas-cta {
  margin-top: 3.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--bege-dark);
  font-style: italic;
}

/* ===================== BENEFÍCIOS ===================== */
#beneficios { padding: var(--section-pad); background: var(--cream); }

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.beneficio-card {
  background: var(--cream-dark);
  border-bottom: 3px solid var(--bege);
  padding: 2.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.beneficio-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.beneficio-card .icon { margin-bottom: 1.25rem; color: var(--gold); }
.beneficio-card h3 { font-size: 1.25rem; color: var(--brown); margin-bottom: 0.75rem; }
.beneficio-card p  { font-size: 0.88rem; color: var(--brown-soft); line-height: 1.7; }

.beneficios-cta-row { margin-top: 3rem; text-align: center; }
.beneficios-cta-row p {
  color: var(--brown-soft);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* ===================== DEPOIMENTOS ===================== */
#depoimentos { padding: var(--section-pad); background: var(--cream-dark); }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.depoimento-card {
  background: var(--cream);
  padding: 2.5rem;
  position: relative;
}
.depoimento-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--bege);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}
.depoimento-card p {
  font-size: 0.92rem;
  color: var(--brown-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.autor-avatar {
  width: 40px;
  height: 40px;
  background: var(--bege);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brown-mid);
  flex-shrink: 0;
}
.autor-info strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
}
.autor-info span { font-size: 0.75rem; color: var(--brown-soft); }
.stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 0.75rem; }

/* ===================== LOCALIZAÇÃO ===================== */
#localizacao {
  padding: var(--section-pad);
  background: var(--brown);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.localizacao-info .section-label { color: var(--gold); }
.localizacao-info h2 { color: var(--cream); margin-bottom: 1.5rem; }
.localizacao-info p  { color: var(--bege-dark); margin-bottom: 2rem; }

.info-list { list-style: none; margin-bottom: 2.5rem; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(211,198,186,0.12);
  color: var(--bege);
  font-size: 0.92rem;
}
.info-list li:last-child { border-bottom: none; }
.info-list .info-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; display: flex; align-items: flex-start; }
.info-list .info-label {
  color: var(--cream);
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}
.info-list a { color: var(--gold); text-decoration: none; }

.map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.2);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
}

/* ===================== FOOTER ===================== */
footer {
  background: #0e0804;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 6vw, 6rem);
  text-align: center;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.footer-logo svg { width: 50px; height: auto; opacity: 0.7; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--bege);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--bege-dark);
  margin-bottom: 2.5rem;
}
.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bege-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(211,198,186,0.6); /* increased from 0.35 for WCAG AA contrast */
  letter-spacing: 0.05em;
}
.footer-dev {
  margin-top: 0.75rem;
  font-size: 0.62rem;
  color: rgba(211,198,186,0.25);
  letter-spacing: 0.08em;
}
.footer-dev a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-dev a:hover {
  color: rgba(211,198,186,0.5);
}

/* ===================== UTILITY CLASSES ===================== */
.section-intro-text {
  color: var(--brown-soft);
  max-width: 560px;
}
.cta-microcopy {
  color: var(--bege-dark);
  font-size: 0.78rem;
  margin-top: 0.75rem;
  font-style: italic;
}
.depoimento-autor cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
  color: var(--brown);
}
.marcas-lista { list-style: none; }

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.7; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===================== RESPONSIVE ===================== */


@media (max-width: 900px) {
  .hero-photo { display: none; }
  #visagismo,
  #localizacao { grid-template-columns: 1fr; gap: 2rem; }
  .visagismo-visual { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--brown);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 998;
  }
  .nav-links.open a { font-size: 1.2rem; opacity: 1; }
  .nav-hamburger { display: flex; z-index: 1000; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .marcas-lista { flex-direction: column; }
  .offer-ribbon { font-size: 0.68rem; }
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-wide { grid-column: 1; aspect-ratio: 4/3; }
}
