/* ========================================================================
   Costa Nery Advocacia — Stylesheet
   Padrões premium aplicados:
   - Tipografia serif (Cinzel/Cormorant) para títulos
   - Paleta preto + dourado (do cartão de visitas)
   - Whitespace generoso
   - Mobile-first responsivo
   - Cross-browser (Chrome, Safari, Firefox, Edge, mobile iOS/Android)
   ======================================================================== */

/* -------- CSS Reset / Base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
address { font-style: normal; }

/* -------- Variáveis ---------------------------------------------------- */
:root {
  --gold:        #d4af5f;
  --gold-light:  #e6c87a;
  --gold-dark:   #a07a32;
  --black:       #080808;
  --black-soft:  #141414;
  --black-light: #1c1c1c;
  --white:       #ffffff;
  --silver:      #c8c8c8;
  --text:        #1a1a1a;
  --text-muted:  #6b6b6b;
  --bg:          #fafafa;
  --bg-alt:      #f4f1ec;
  --border:      #e6e0d4;
  --radius:      8px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container:   1200px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.20);
}

/* -------- Tipografia --------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin: 0 0 1rem; }

em { font-style: italic; color: var(--gold-dark); }

/* -------- Layout helpers ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section--dark {
  background: var(--black);
  color: rgba(255,255,255,0.85);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark em { color: var(--gold); }

.section__header { margin-bottom: 64px; }
.section__header--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.section__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section__eyebrow--gold { color: var(--gold); }
.section__eyebrow--center { padding-left: 0; }
.section__eyebrow--center::before { display: none; }
.section__header--center .section__eyebrow { padding-left: 0; }
.section__header--center .section__eyebrow::before { display: none; }
.section__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section__title--light { color: var(--white); }
.section__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.65); }

/* -------- Botões ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,95,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* -------- Top bar ------------------------------------------------------ */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,175,95,0.15);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.topbar__item:hover { color: var(--gold); }
.topbar__item--right { margin-left: auto; }
.topbar__item svg { flex-shrink: 0; opacity: 0.8; }
@media (max-width: 768px) {
  .topbar { display: none; }
}

/* -------- Header / Nav ------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__main {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}
.logo__sub {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.4em;
  margin-top: 4px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav__list a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__list a:not(.btn):hover {
  color: var(--gold-dark);
}
.nav__list a:not(.btn):hover::after { width: 100%; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}

@media (max-width: 968px) {
  .nav__toggle { display: flex; }
  .nav__list {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 360px;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 100px 32px 32px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    align-items: flex-start;
  }
  .nav__list.is-open { right: 0; }
  .nav__list li { width: 100%; }
  .nav__list a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav__list a.btn { margin-top: 16px; border-bottom: 0; }
  body.menu-open { overflow: hidden; }
  body.menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 90;
  }
}

/* -------- Hero --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 70%, var(--black-light) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,95,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,175,95,0.05) 0%, transparent 50%);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,95,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,95,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid rgba(212,175,95,0.3);
  border-radius: 30px;
}
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero__title em {
  color: var(--gold);
  font-style: italic;
}
.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__scale {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(212,175,95,0.25));
  animation: scaleFloat 6s ease-in-out infinite;
}
@keyframes scaleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(212,175,95,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
}
.hero__scroll-indicator span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollMove 1.8s ease-in-out infinite;
}
@keyframes scrollMove {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}
@media (max-width: 968px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__visual { order: -1; }
  .hero__scale { max-width: 240px; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
}

/* -------- Sobre -------------------------------------------------------- */
.about { background: var(--bg); }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__photo {
  position: relative;
}
.about__photo-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__photo-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  transform: translate(16px, 16px);
}
.about__photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.about__photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
}
.about__photo-badge-num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.about__photo-badge-reg {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 4px;
}
.about__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.about__values {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.about__values li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.about__values svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 968px) {
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__photo { max-width: 420px; margin: 0 auto; }
  .about__photo-badge { right: 0; bottom: -16px; }
}

/* -------- Áreas de Atuação --------------------------------------------- */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.area-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,95,0.15);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.area-card:hover {
  transform: translateY(-6px);
  background: rgba(212,175,95,0.05);
  border-color: var(--gold);
}
.area-card:hover::before { transform: scaleX(1); }
.area-card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 20px;
}
.area-card__icon svg { width: 100%; height: 100%; }
.area-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.area-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* -------- Diferenciais ------------------------------------------------- */
.diferenciais { background: var(--bg-alt); }
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.diferencial {
  position: relative;
  padding-top: 60px;
}
.diferencial__number {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.diferencial h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--black);
}
.diferencial p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* -------- Contato ------------------------------------------------------ */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contato__lead {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.contato__list {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}
.contato__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contato__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}
.contato__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.contato__list a, .contato__list address {
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
}
.contato__list a:hover { color: var(--gold); }
.contato__qrcode {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,95,0.2);
  border-radius: var(--radius);
}
.contato__qrcode img {
  width: 100px;
  height: 100px;
  background: white;
  padding: 4px;
  border-radius: 4px;
}
.contato__qrcode span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

.contato__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.contato__form h3 {
  color: var(--black);
  margin-bottom: 24px;
  font-size: 1.6rem;
}
.form-row { margin-bottom: 18px; }
.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: #fafafa;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-consent {
  margin: 16px 0 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; }
.form-consent a { color: var(--gold-dark); text-decoration: underline; }
.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  display: none;
}
.form-message.is-success {
  display: block;
  background: rgba(76,175,80,0.1);
  color: #2e7d32;
  border: 1px solid #2e7d32;
}
.form-message.is-error {
  display: block;
  background: rgba(244,67,54,0.1);
  color: #c62828;
  border: 1px solid #c62828;
}

.map {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (max-width: 968px) {
  .contato__grid { grid-template-columns: 1fr; }
  .contato__form { padding: 28px 24px; }
  .form-row--2 { grid-template-columns: 1fr; }
}

/* -------- Footer ------------------------------------------------------- */
.footer {
  background: #050505;
  color: rgba(255,255,255,0.65);
  padding: 60px 0 24px;
  border-top: 2px solid var(--gold-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand .logo__main { color: var(--gold); }
.footer__brand .logo__sub { color: rgba(255,255,255,0.5); }
.footer__tagline {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
}
.footer__col h4 {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer__col a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }
.footer__warning {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.5;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom ul { display: flex; gap: 24px; }
.footer__bottom a { color: rgba(255,255,255,0.55); }
.footer__bottom a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* -------- Botão flutuante WhatsApp ------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform var(--transition);
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
}
@media (max-width: 768px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* -------- Cookie banner ------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  border-left: 3px solid var(--gold);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  flex: 1;
  color: var(--text);
}
.cookie-banner a { color: var(--gold-dark); text-decoration: underline; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}

/* -------- Animações de scroll ------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- Print styles ------------------------------------------------- */
@media print {
  .topbar, .header, .whatsapp-float, .cookie-banner, .nav, .hero__scroll-indicator { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  body { background: white; color: black; }
  .section--dark { background: white; color: black; }
}

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