/* ============================================================
   Grupo JNF — Onde TODO mundo compra!
   Stylesheet principal
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: #ffffff; color: #0e1b3d;
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #ffd23f; color: #0e1b3d; }
a { color: #0d47d6; text-decoration: none; }
a:hover { color: #0a2a7a; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 110px 5vw; }
.scroll-margin { scroll-margin-top: 120px; }

/* ---------- Top Bar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 41;
  background: #081c4e; color: rgba(255,255,255,.85);
  font-size: 12.5px; font-weight: 600; padding: 8px 5vw;
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  justify-content: space-between; align-items: center;
}
.topbar__dot { width: 6px; height: 6px; border-radius: 50%; background: #ffd23f; display: inline-block; }
.topbar__left { display: inline-flex; align-items: center; gap: 8px; }
.topbar__right { display: inline-flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar__link { color: #ffffff; font-weight: 700; }
.topbar__link:hover { color: #ffd23f; }
.topbar__social { color: rgba(255,255,255,.85); }
.topbar__social:hover { color: #ffd23f; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 5vw;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-bottom: 3px solid #0d47d6; box-shadow: 0 4px 24px rgba(8,28,78,.08);
}
.navbar__brand { display: flex; align-items: center; gap: 14px; }
.navbar__logo { display: block; height: 47px; width: auto; }
.navbar__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar__brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 22px; letter-spacing: -.01em; color: #0a2a7a;
}
.navbar__brand-tagline { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: #5a6584; text-transform: uppercase; }
.navbar__links { display: flex; gap: 30px; font-size: 15px; font-weight: 700; }
.navbar__link { color: #0e1b3d; padding: 6px 0; border-bottom: 2px solid transparent; }
.navbar__link:hover { color: #0d47d6; border-bottom: 2px solid #ffd23f; }
.btn-whatsapp {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: #ffd23f; border-radius: 10px;
  color: #0e1b3d; font-size: 14px; font-weight: 800; letter-spacing: .01em;
  box-shadow: 0 6px 18px rgba(255,210,63,.4); transition: all .3s;
}
.btn-whatsapp:hover { background: #0d47d6; color: #ffffff; transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 190px 5vw 110px; overflow: hidden;
  background: linear-gradient(155deg, #0a2a7a 0%, #0d47d6 60%, #1a5cf0 100%);
}
.hero__blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__blob--1 { top: 12%; right: -6%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%); }
.hero__blob--2 { bottom: 6%; left: -4%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,210,63,.14), transparent 70%); }
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .05em; color: #ffffff;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: #ffd23f; display: inline-block; }
.hero__title {
  margin: 26px 0 0; font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1; letter-spacing: -.02em; color: #ffffff;
}
.hero__title-highlight { color: #ffd23f; }
.hero__desc {
  max-width: 560px; margin: 24px 0 0;
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65;
  color: rgba(255,255,255,.9); font-weight: 500;
}
.hero__desc strong { color: #ffd23f; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn-primary {
  padding: 16px 32px; background: #ffd23f; color: #0e1b3d;
  border-radius: 10px; font-weight: 800; font-size: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25); transition: transform .3s;
}
.btn-primary:hover { transform: translateY(-3px); }
.btn-outline {
  padding: 16px 32px; background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.4); color: #ffffff;
  border-radius: 10px; font-weight: 800; font-size: 16px; transition: all .3s;
}
.btn-outline:hover { background: #ffffff; color: #0d47d6; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 34px; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.85); }
.hero__art { position: relative; min-height: 440px; }
.hero__art-img { position: absolute; object-fit: cover; border-radius: 18px; box-shadow: 0 30px 60px rgba(4,14,44,.45); }
.hero__art-img--1 { top: 0; right: 6%; width: 64%; height: 300px; border: 1px solid rgba(255,255,255,.3); }
.hero__art-img--2 { bottom: 20px; left: 0; width: 48%; height: 220px; border: 1px solid rgba(255,255,255,.35); box-shadow: 0 30px 60px rgba(4,14,44,.5); }
.hero__art-badge { position: absolute; bottom: 0; right: 0; padding: 18px 22px; background: #ffd23f; border-radius: 14px; box-shadow: 0 20px 44px rgba(4,14,44,.4); }
.hero__art-badge-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 30px; line-height: 1; color: #0e1b3d; }
.hero__art-badge-label { font-size: 12px; font-weight: 800; color: #0e1b3d; margin-top: 4px; }

/* ---------- Marquee ---------- */
.marquee-strip { background: #ffd23f; padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; width: max-content; }
.marquee-text { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: .1em; color: #0a2a7a; }

/* ---------- Stats ---------- */
.stats-section { background: #ffffff; padding: 80px 5vw; border-bottom: 1px solid #e8edf8; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; text-align: center; }
.stat__num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(44px, 5vw, 64px); line-height: 1; color: #0d47d6; }
.stat__label { margin-top: 10px; font-size: 14px; font-weight: 700; color: #5a6584; }

/* ---------- Section Headers ---------- */
.section-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #0d47d6; }
.section-eyebrow--gold { color: #ffd23f; }
.section-title { margin: 14px 0 0; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(32px, 4.2vw, 54px); line-height: 1.05; letter-spacing: -.01em; color: #0e1b3d; }
.section-title--white { color: #ffffff; }
.section-title--sm { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.06; }
.section-header { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-end; }
.section-header__left { max-width: 680px; }
.section-desc { margin: 20px 0 0; font-size: 17px; line-height: 1.7; color: #4a5878; }
.btn-blue { padding: 14px 26px; background: #0d47d6; color: #ffffff; border-radius: 10px; font-weight: 800; font-size: 14px; transition: all .3s; }
.btn-blue:hover { background: #0a2a7a; color: #ffffff; }
.link-arrow { font-size: 14.5px; font-weight: 800; color: #0d47d6; }
.link-arrow:hover { color: #0a2a7a; }

/* ---------- Product Cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 52px; }
.product-card { position: relative; padding: 32px 28px; border-radius: 16px; background: #ffffff; border: 1px solid #e3e9f6; transition: all .35s; }
.product-card:hover { transform: translateY(-6px); border-color: #0d47d6; box-shadow: 0 22px 48px rgba(10,42,122,.12); }
.product-card__header { display: flex; align-items: center; justify-content: space-between; }
.product-card__title { margin: 0; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 23px; color: #0e1b3d; }
.product-card__num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 14px; color: #0d47d6; background: #eef3ff; padding: 6px 12px; border-radius: 8px; }
.product-card__desc { margin: 14px 0 0; font-size: 14.5px; line-height: 1.65; color: #4a5878; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: 12px; font-weight: 700; color: #0a2a7a; background: #f1f5fe; border: 1px solid #dfe7f8; padding: 5px 12px; border-radius: 999px; }

/* ---------- Gallery ---------- */
.gallery-section { background: #ffffff; padding: 0 5vw 110px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 44px; }
.gallery-img { width: 100%; height: 300px; object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 14px 34px rgba(10,42,122,.12); }

/* ---------- Diferenciais ---------- */
.diff-section { background: #081c4e; }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 52px; }
.diff-card { padding: 34px 30px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.diff-card__icon { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 34px; color: #ffd23f; }
.diff-card__title { margin: 14px 0 0; font-size: 18px; font-weight: 800; color: #ffffff; }
.diff-card__desc { margin: 10px 0 0; font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.75); }
.diff-legal { margin: 28px 0 0; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ---------- About / Timeline ---------- */
.about-section { background: #ffffff; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 60px; align-items: center; }
.about-text { font-size: 17px; line-height: 1.75; color: #4a5878; }
.about-text + .about-text { margin-top: 18px; }
.recognition-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 10px 18px; background: #fff6da; border: 1px solid #ffd23f; border-radius: 12px; font-size: 13.5px; font-weight: 800; color: #0e1b3d; }
.timeline { margin-top: 36px; border-left: 3px solid #0d47d6; display: flex; flex-direction: column; }
.timeline__item { padding: 0 0 20px 24px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__year { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 17px; color: #0d47d6; }
.timeline__text { margin: 5px 0 0; font-size: 14.5px; line-height: 1.6; color: #4a5878; }
.about-photo-wrap { position: relative; }
.about-photo__accent { position: absolute; top: -14px; right: -14px; width: 110px; height: 110px; border-radius: 18px; background: #ffd23f; z-index: 0; }
.about-photo { position: relative; z-index: 1; width: 100%; min-height: 420px; max-height: 560px; object-fit: cover; border-radius: 20px; box-shadow: 0 30px 70px rgba(10,42,122,.16); border: 1px solid #dfe7f8; display: block; }
.about-photo__caption { position: relative; z-index: 2; margin: -54px 18px 0; padding: 14px 20px; background: rgba(8,28,78,.9); backdrop-filter: blur(8px); border-radius: 12px; font-size: 13.5px; font-weight: 700; color: #ffffff; text-align: center; }

/* ---------- Grupo Cards ---------- */
.grupo-section { background: #f6f8fd; }
.grupo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 52px; }
.grupo-card { position: relative; padding: 40px 36px; border-radius: 20px; overflow: hidden; box-shadow: 0 26px 60px rgba(10,42,122,.25); }
.grupo-card--blue { background: linear-gradient(150deg, #0d47d6, #0a2a7a); color: #ffffff; }
.grupo-card--gold { background: #ffffff; border: 2px solid #ffd23f; box-shadow: 0 26px 60px rgba(10,42,122,.1); }
.grupo-card--outline { background: #ffffff; border: 2px solid #0d47d6; box-shadow: 0 26px 60px rgba(10,42,122,.1); }
.grupo-card--dark { background: #081c4e; color: #ffffff; box-shadow: 0 26px 60px rgba(8,28,78,.3); }
.grupo-card__orb { position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; border-radius: 50%; }
.grupo-card__orb--white { background: rgba(255,255,255,.08); }
.grupo-card__orb--yellow { background: rgba(255,210,63,.2); }
.grupo-card__orb--blue { background: rgba(13,71,214,.08); }
.grupo-card__orb--gold { background: rgba(255,210,63,.14); }
.grupo-card__chip { display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.chip-yellow { background: #ffd23f; color: #0e1b3d; }
.chip-blue { background: #0d47d6; color: #ffffff; }
.chip-outline { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #ffd23f; }
.grupo-card__title { margin: 20px 0 0; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 32px; }
.grupo-card--blue .grupo-card__title, .grupo-card--dark .grupo-card__title { color: #ffffff; }
.grupo-card--gold .grupo-card__title, .grupo-card--outline .grupo-card__title { color: #0e1b3d; }
.grupo-card__desc { margin: 12px 0 0; font-size: 15px; line-height: 1.7; }
.grupo-card--blue .grupo-card__desc { color: rgba(255,255,255,.88); }
.grupo-card--dark .grupo-card__desc { color: rgba(255,255,255,.85); }
.grupo-card--gold .grupo-card__desc, .grupo-card--outline .grupo-card__desc { color: #4a5878; }
.grupo-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag-white { font-size: 12px; font-weight: 700; color: #ffffff; background: rgba(255,255,255,.14); padding: 5px 12px; border-radius: 999px; }
.tag-yellow { font-size: 12px; font-weight: 700; color: #0a2a7a; background: #fff6da; padding: 5px 12px; border-radius: 999px; }
.tag-light { font-size: 12px; font-weight: 700; color: #0a2a7a; background: #eef3ff; padding: 5px 12px; border-radius: 999px; }
.grupo-card__link { display: inline-block; margin-top: 18px; font-size: 13.5px; font-weight: 800; color: #0d47d6; }
.grupo-card__link:hover { color: #0a2a7a; }

/* ---------- Depoimentos ---------- */
.depoimentos-section { background: #ffffff; }
.rating-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.rating-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; background: #f6f8fd; border: 1px solid #e3e9f6; border-radius: 999px; font-size: 13.5px; font-weight: 800; color: #0e1b3d; }
.depo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 52px; }
.depo-card { margin: 0; padding: 36px 32px; border-radius: 16px; background: #f6f8fd; border: 1px solid #e3e9f6; transition: all .35s; }
.depo-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(10,42,122,.1); border-color: #0d47d6; }
.depo-card__stars { display: flex; gap: 3px; font-size: 15px; color: #ffb800; }
.depo-card__text { margin: 18px 0 0; font-size: 16px; line-height: 1.7; color: #33415e; font-weight: 500; }
.depo-card__author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.depo-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: #0d47d6; color: #ffffff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex: none; }
.depo-card__name { font-size: 14.5px; font-weight: 800; color: #0e1b3d; }
.depo-card__role { font-size: 12.5px; color: #5a6584; }

/* ---------- Visita / Contact ---------- */
.visita-section { background: #f6f8fd; }
.visita-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.contact-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon { width: 44px; height: 44px; border-radius: 12px; background: #0d47d6; color: #ffffff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; flex: none; }
.contact-item__label { font-size: 15px; font-weight: 800; color: #0e1b3d; }
.contact-item__value { font-size: 15px; line-height: 1.6; color: #4a5878; }
.contact-item__value:hover { color: #0d47d6; }
.contact-item__phone { font-size: 18px; font-weight: 800; color: #0d47d6; display: block; }
.contact-item__phone:hover { color: #0a2a7a; }
.contact-item__sub { margin: 4px 0 0; font-size: 14.5px; line-height: 1.6; color: #4a5878; }
.map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid #dfe7f8; box-shadow: 0 26px 60px rgba(10,42,122,.12); background: #e6edfb; }
.map-wrap iframe { display: block; border: 0; }
.map-thumb { position: absolute; bottom: -26px; right: -14px; width: 44%; height: 150px; object-fit: cover; border-radius: 14px; border: 4px solid #ffffff; box-shadow: 0 18px 40px rgba(10,42,122,.25); display: block; }

/* ---------- CTA Bar ---------- */
.cta-bar { background: #ffd23f; padding: 70px 5vw; }
.cta-bar__inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.cta-bar__title { margin: 0; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.08; color: #0e1b3d; max-width: 640px; }
.btn-dark { flex: none; padding: 18px 38px; background: #0e1b3d; color: #ffffff; border-radius: 12px; font-weight: 800; font-size: 16px; box-shadow: 0 12px 30px rgba(14,27,61,.3); transition: transform .3s; }
.btn-dark:hover { transform: translateY(-3px); color: #ffd23f; }

/* ---------- Footer ---------- */
.footer { background: #081c4e; padding: 90px 5vw 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 48px; }
.footer__logo { height: 55px; width: auto; margin-bottom: 18px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.footer__desc { margin: 0; font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,.75); max-width: 280px; }
.footer__heading { font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #ffd23f; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; font-weight: 600; }
.footer__link { color: rgba(255,255,255,.8); }
.footer__link:hover { color: #ffd23f; }
.footer__link--bold { color: #ffffff; font-weight: 800; }
.footer__link--bold:hover { color: #ffd23f; }
.footer__text { color: rgba(255,255,255,.8); line-height: 1.6; }
.footer__legal { margin: 64px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer__legal p { margin: 0; }
.footer__legal p + p { margin-top: 6px; }
.footer__bottom { margin: 20px auto 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.6); }
.footer__privacy-btn { background: none; border: none; color: rgba(255,255,255,.7); font: inherit; cursor: pointer; padding: 0; text-decoration: underline; }
.footer__privacy-btn:hover { color: #ffd23f; }

/* ---------- Cookie Banner ---------- */
.cookie-banner { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 60; width: min(680px, 92vw); padding: 22px 24px; background: #ffffff; border: 1px solid #e3e9f6; border-radius: 16px; box-shadow: 0 24px 70px rgba(8,28,78,.28); display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.cookie-banner__text { margin: 0; flex: 1; min-width: 220px; font-size: 14px; line-height: 1.6; color: #4a5878; }
.cookie-banner__text button { background: none; border: none; color: #0d47d6; font: inherit; font-weight: 700; cursor: pointer; padding: 0; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.btn-reject { padding: 11px 22px; border: 1.5px solid #dfe7f8; background: none; border-radius: 10px; color: #4a5878; font-weight: 800; font-size: 13px; cursor: pointer; font-family: inherit; }
.btn-reject:hover { border-color: #0d47d6; color: #0d47d6; }
.btn-accept { padding: 11px 26px; border: none; background: #0d47d6; border-radius: 10px; color: #ffffff; font-weight: 800; font-size: 13px; cursor: pointer; font-family: inherit; box-shadow: 0 6px 16px rgba(13,71,214,.3); }
.btn-accept:hover { background: #0a2a7a; }

/* ---------- Privacy Modal ---------- */
.privacy-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(8,16,40,.6); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.privacy-modal { width: min(620px, 100%); max-height: 82vh; overflow-y: auto; background: #ffffff; border-radius: 20px; padding: 40px; box-shadow: 0 30px 90px rgba(8,16,40,.4); }
.privacy-modal__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.privacy-modal__title { margin: 0; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 30px; color: #0e1b3d; }
.privacy-modal__close { background: #f1f5fe; border: none; color: #0e1b3d; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 18px; flex: none; font-family: inherit; }
.privacy-modal__close:hover { background: #0d47d6; color: #ffffff; }
.privacy-modal__body { margin-top: 20px; font-size: 14.5px; line-height: 1.75; color: #4a5878; }
.privacy-modal__body p { margin: 0 0 16px; }
.privacy-modal__body p:last-child { margin-bottom: 0; }
.privacy-modal__body strong { color: #0e1b3d; }

/* ---------- Animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); transition: opacity 0.85s ease, transform 0.85s ease; }

/* ---------- Responsive ---------- */
@media (min-width: 1080px) { .navbar__links { display: flex !important; } }
@media (min-width: 900px) { .hero__art { display: block !important; } }
@media (max-width: 899px) { .hero__art { display: none; } }
@media (max-width: 1079px) { .navbar__links { display: none; } }
