:root {
  --green: #00b04f;
  --green-dark: #007d38;
  --green-light: #e6f9ee;
  --blue: #003d7a;
  --blue-mid: #005fba;
  --gold: #f5a623;
  --gold-light: #fff8ec;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray: #6b7280;
  --text: #1a2235;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,61,122,0.13);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; }
input, select, textarea { -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; user-select: auto; }
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #25d366; color: #fff; border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: pulse-wa 2s infinite;
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.05); }
.float-wa svg { width: 24px; height: 24px; flex-shrink: 0; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
}

/* ── TOP BAR ── */
.topbar {
  background: var(--blue); color: #fff; text-align: center;
  padding: 9px 16px; font-size: 13px; font-weight: 600; letter-spacing: .3px;
}
.topbar span { color: var(--gold); }

/* ── NAVBAR ── */
nav {
  background: var(--white); padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; flex-direction: row; align-items: center; gap: 10px; text-decoration: none; }
.logo-nav-img { height: 96px; width: auto; object-fit: contain; display: block; }
.logo-icon {
  width: 86px; height: 86px; display: flex; align-items: center; justify-content: center; border-radius: 10px;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; color: var(--blue); line-height: 1.1; }
.logo-text span { color: var(--green); display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  padding: 10px 20px; font-weight: 700; font-size: 14px; cursor: pointer;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--green-dark); }
.nav-social {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid #e8eef5;
  border-radius: 8px;
  color: var(--gray);
  transition: background .2s, color .2s, border-color .2s;
}
.nav-social:hover {
  background: #fdeff9; color: #c13584; border-color: #fdeff9;
}
.nav-social-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(188,24,136,0.4);
}
.nav-social-ig:hover { background: linear-gradient(135deg, #e0832a 0%, #cf5b33 25%, #c52040 50%, #b31f5c 75%, #a01578 100%); color: #fff; border-color: transparent; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Foto de fundo */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 18, 40, 0.82) 0%,
    rgba(0, 30, 60, 0.72) 45%,
    rgba(0, 18, 40, 0.45) 100%
  );
}

/* Wrapper interno sobre a foto */
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 120px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 56px;
}

.hero-content { max-width: 680px; }

.hero-logo-card {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroLogoIn 0.9s cubic-bezier(.22,1,.36,1) both;
}
.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@media (max-width: 600px) {
  .hero-logo-card { top: 64px; padding: 14px 20px; }
  .hero-logo { width: 80px; height: 80px; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold); padding: 7px 16px; border-radius: 30px; font-size: 13px; font-weight: 700;
  margin-bottom: 24px; letter-spacing: .5px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 560px;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #fff8ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-rate {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px; border-radius: 8px; color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 32px;
}
.hero-rate strong { color: var(--gold); font-size: 20px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-wa-hero {
  background: #25d366; color: #fff; border: none; border-radius: 10px;
  padding: 17px 30px; font-weight: 800; font-size: 17px; cursor: pointer;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-wa-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px; padding: 17px 28px; font-weight: 700; font-size: 16px;
  cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-security-note {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Stats em linha na base do hero */
.hero-stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 18px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex: 1; min-width: 120px;
}
.stat-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 3px; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--green); color: #fff;
  display: flex; justify-content: center; align-items: center; gap: 48px; padding: 16px 24px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }
.mini-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
    mix-blend-mode: screen;
  /* Adiciona um leve realce para a logo se destacar no fundo verde */
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
}

/* ── SIMULATOR ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  text-align: center; display: inline-block; background: var(--green-light); color: var(--green-dark);
  padding: 6px 18px; border-radius: 30px; font-size: 13px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px;
}
.section h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--blue); text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--gray); font-size: 17px; margin-bottom: 48px; }

.simulator-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.sim-card {
  background: #fff; border: 2px solid #e8eef5; border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow);
}
.sim-card h3 { font-size: 22px; color: var(--blue); margin-bottom: 24px; font-weight: 700; }
.sim-field { margin-bottom: 20px; }
.sim-field label { display: block; font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 8px; }
.sim-field select, .sim-field input[type=range] {
  width: 100%; padding: 13px 16px; border: 2px solid #dce4ef; border-radius: 10px;
  font-size: 15px; color: var(--text); background: #fff; cursor: pointer;
  transition: border-color .2s;
}
.sim-field select:focus { outline: none; border-color: var(--blue-mid); }
.range-val { text-align: center; font-size: 32px; font-weight: 800; color: var(--blue); margin: 8px 0; font-family: 'Sora', sans-serif; }
.range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray); }
.result-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 16px; padding: 28px; color: #fff; margin-top: 24px;
}
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.result-row:last-child { border-bottom: none; }
.result-label { font-size: 14px; opacity: .8; }
.result-value { font-weight: 700; font-size: 18px; }
.result-value.big { font-size: 28px; color: var(--gold); font-family: 'Sora', sans-serif; }
.btn-sim {
  width: 100%; background: #25d366; color: #fff; border: none; border-radius: 12px;
  padding: 18px; font-size: 18px; font-weight: 800; cursor: pointer; margin-top: 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform .2s, box-shadow .2s;
  text-decoration: none; letter-spacing: .3px;
}
.btn-sim:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); color: #fff; text-decoration: none; }

/* form side */
.form-card {
  background: #fff; border: 2px solid #e8eef5; border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 22px; color: var(--blue); margin-bottom: 6px; font-weight: 700; }
.form-card p { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; color: var(--text); margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 14px 16px; border: 2px solid #dce4ef; border-radius: 10px;
  font-size: 15px; transition: border-color .2s;
}
.form-group input:focus { outline: none; border-color: var(--blue-mid); }
.form-group input::placeholder { color: #aab; }
.lgpd-note { font-size: 12px; color: var(--gray); margin-top: 8px; display: flex; align-items: flex-start; gap: 6px; }
.lgpd-note svg { flex-shrink: 0; margin-top: 1px; }
.btn-form {
  width: 100%; background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border: none; border-radius: 12px; padding: 18px;
  font-size: 18px; font-weight: 800; cursor: pointer; margin-top: 6px;
  box-shadow: 0 4px 20px rgba(0,176,79,0.35); transition: transform .2s;
}
.btn-form:hover { transform: translateY(-2px); }

/* ── BENEFITS ── */
.benefits-bg { background: var(--gray-light); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0,61,122,0.07);
  transition: transform .2s, box-shadow .2s;
  border-top: 4px solid transparent;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,61,122,0.13); }
.benefit-card.green { border-color: var(--green); }
.benefit-card.blue { border-color: var(--blue-mid); }
.benefit-card.gold { border-color: var(--gold); }
.benefit-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 18px;
}
.benefit-card.green .benefit-icon { background: var(--green-light); }
.benefit-card.blue .benefit-icon { background: #e6f0fb; }
.benefit-card.gold .benefit-icon { background: var(--gold-light); }
.benefit-card h3 { font-size: 18px; color: var(--blue); margin-bottom: 10px; font-weight: 700; }
.benefit-card p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ── WHO ── */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.who-card {
  border: 2px solid #e8eef5; border-radius: 18px; padding: 32px 24px; text-align: center;
  transition: border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.who-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(0,176,79,0.12); }
.who-img {
  width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px;
  border: 3px solid var(--green-light);
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.who-card h3 { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.who-card p { color: var(--gray); font-size: 14px; line-height: 1.6; }
.who-tag {
  position: absolute; top: 16px; right: 16px; background: var(--green); color: #fff;
  padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testimonials-bg { background: linear-gradient(135deg, #001f4d 0%, #003d7a 100%); }
.testimonials-bg .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.testimonials-bg h2 { color: #fff; }
.testimonials-bg .section-sub { color: rgba(255,255,255,0.7); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 28px; backdrop-filter: blur(8px);
  transition: background .2s;
}
.testi-card:hover { background: rgba(255,255,255,0.13); }
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { color: rgba(255,255,255,0.88); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green-light);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  flex-shrink: 0; border: 2px solid rgba(255,255,255,0.2);
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { color: #fff; font-weight: 700; font-size: 15px; }
.testi-role { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ── SEALS ── */
.seals { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; margin-top: 48px; }
.seal {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 16px 24px;
}
.seal-icon { font-size: 32px; }
.seal-text { color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 600; text-align: center; text-transform: uppercase; letter-spacing: .5px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid #e8eef5; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; background: #fff; border: none; padding: 20px 24px; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--blue); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: var(--gray-light); }
.faq-q .arrow { font-size: 20px; transition: transform .25s; color: var(--green); flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s;
  background: var(--green-light); color: var(--text); font-size: 15px; line-height: 1.7; padding: 0 24px;
}
.faq-a.open { max-height: 600px; padding: 16px 24px; }
/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 70px 24px; text-align: center;
}
.cta-strip h2 { font-size: clamp(24px, 3.5vw, 42px); color: #fff; margin-bottom: 14px; font-weight: 800; }
.cta-strip p { color: rgba(255,255,255,0.88); font-size: 18px; margin-bottom: 36px; }
.btn-wa-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--green-dark); border-radius: 14px;
  padding: 20px 40px; font-size: 20px; font-weight: 800; text-decoration: none;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18); transition: transform .2s;
}
.btn-wa-big:hover { transform: translateY(-3px); }

/* ── FOOTER ── */
footer { background: #001235; color: rgba(255,255,255,0.7); padding: 60px 24px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
footer h4 { color: #fff; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 18px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color .2s; }
footer a:hover { color: var(--green); }
.footer-logo-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 12px; }
.footer-logo-text span { color: var(--green); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { font-size: 14px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact span { display: flex; align-items: center; gap: 8px; }
.footer-social { margin-top: 20px; display: flex; gap: 12px; }
.footer-social a {
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { color: #fff; transform: translateY(-2px); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0 0 28px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: flex-start; }
.footer-legal { font-size: 12px; line-height: 1.8; max-width: 700px; color: rgba(255,255,255,0.45); }
.footer-badges { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.badge-pill {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 6px 12px; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px;
}

/* ── GALLERY ── */
.gallery-section { background: var(--gray-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,61,122,0.14);
  background: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-card img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s;
}
.gallery-card:hover img { transform: scale(1.03); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { padding: 100px 32px 60px; gap: 40px; }
  .hero-stats-row { gap: 10px; }
  .stat-card { padding: 14px 18px; }
  .simulator-wrap, .benefits-grid, .who-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { gap: 24px 32px; }
}
@media (max-width: 600px) {
  .hero-inner { padding: 88px 20px 48px; gap: 32px; }
  .hero-stats-row { gap: 8px; }
  .stat-card { flex: 1 1 calc(50% - 8px); min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
  .logo-nav-img { height: 100px; }
  .trust-strip { gap: 16px 20px; }
}

/* animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease forwards; }
.delay-1 { animation-delay: .1s; opacity: 0; }
.delay-2 { animation-delay: .25s; opacity: 0; }
.delay-3 { animation-delay: .4s; opacity: 0; }
.delay-4 { animation-delay: .55s; opacity: 0; }

/* ── COOKIE MODAL ── */
.cookie-modal {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 31, 77, 0.15);
  z-index: 10000;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #e8eef5;
}
.cookie-modal.show {
  transform: translateY(0);
}
.cookie-content { padding: 24px; }
.cookie-content h4 {
  font-size: 16px; color: var(--blue);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.cookie-content p {
  font-size: 13px; color: var(--gray);
  line-height: 1.6; margin-bottom: 18px;
}
.cookie-content a { color: var(--blue-mid); font-weight: 600; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btn {
  padding: 12px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.2s; flex: 1;
}
.cookie-btn.accept { background: var(--green); color: #fff; }
.cookie-btn.accept:hover { background: var(--green-dark); transform: translateY(-2px); }
.cookie-btn.decline { background: var(--gray-light); color: var(--gray); }
.cookie-btn.decline:hover { background: #e2e6ea; }

@media (max-width: 600px) {
  .cookie-modal {
    bottom: 0; left: 0; right: 0;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    border-bottom: none;
  }
  .cookie-content { padding: 24px 20px; }
  .cookie-btns { flex-direction: column; }
  .cookie-btn { width: 100%; }
}