:root {
  --accent: #76BF42;
  --accent-dark: #5EA02E;
  --accent-soft: #EAF4DF;
  --danger: #B4552F;
  --danger-soft: #F5EDE8;
  --yellow: #F0B429;
  --ink: #14171A;
  --ink-2: #262B24;
  --text: #1E2421;
  --text-muted: #5B645C;
  --cream: #F5F1E6;
  --cream-2: #EDE7D6;
  --border: #E2DCC8;
  --radius: 10px;
  --shadow: 0 20px 45px rgba(20, 23, 26, 0.12);
  --shadow-lg: 0 30px 70px rgba(20, 23, 26, 0.24);
  --max-width: 1220px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Anton', 'Archivo Black', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* KICKER */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent-dark);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--accent); }
.kicker--light { color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 32px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.2px;
  border: none; border-radius: 10px;
  transition: background-color .12s ease-out, transform .12s ease-out, box-shadow .12s ease-out;
  white-space: nowrap; cursor: pointer;
}
.btn--primary {
  background: var(--accent); color: var(--ink);
  box-shadow: 0 14px 30px -8px rgba(94, 160, 46, 0.55);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 18px 34px -8px rgba(94, 160, 46, 0.65); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 14px 30px -10px rgba(20,23,26,0.5); }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(20,23,26,0.6); }
.btn--lg { padding: 19px 38px; font-size: 16px; }

/* SECTION HEAD */
.section__head { max-width: 620px; margin: 0 auto 32px; text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.section__head .lead { font-family: 'Inter', sans-serif; text-transform: none; font-size: 16px; color: var(--text-muted); margin-top: 14px; }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; max-width: none; text-align: left; margin-bottom: 0; }
.section__head--row > div:first-child { max-width: 560px; }
.section__head--row .lead { margin-top: 8px; }

/* SOLUTION / COMPARE */
.solution { padding: 60px 0; background: #fff; }
.lead--light { color: #C7CFC0 !important; }
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; margin-top: 32px; }
.compare__card { background: var(--cream); border-radius: var(--radius); padding: 34px 32px; }
.compare__card--old { background: var(--danger-soft); }
.compare__card--new { background: var(--accent-soft); }
.compare__tag {
  display: inline-block; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.6px; text-transform: uppercase; color: var(--danger); margin-bottom: 20px;
}
.compare__tag--accent { color: var(--accent-dark); }
.compare__card li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; margin-bottom: 15px; }
.compare__card li:last-child { margin-bottom: 0; }
.compare__arrow { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--text-muted); }
.solution__cta { text-align: center; margin-top: 36px; }
.ic { flex: none; width: 20px; height: 20px; border-radius: 50%; position: relative; margin-top: 1px; }
.ic--x { background: rgba(180,85,47,0.14); }
.ic--x::before, .ic--x::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 2px; background: var(--danger); }
.ic--x::before { transform: translate(-50%,-50%) rotate(45deg); }
.ic--x::after { transform: translate(-50%,-50%) rotate(-45deg); }
.ic--check { background: rgba(118,191,66,0.18); }
.ic--check::before {
  content: ""; position: absolute; top: 48%; left: 50%; width: 9px; height: 5px;
  border-left: 2px solid var(--accent-dark); border-bottom: 2px solid var(--accent-dark);
  transform: translate(-50%,-60%) rotate(-45deg);
}

/* STORIES */
.stories { padding: 60px 0; background: var(--ink); }
.stories > .container { margin-bottom: 36px; }
.stories__title { color: #fff; }
.stories__track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 32px; scrollbar-width: none;
}
.stories__track::-webkit-scrollbar { display: none; }
.story {
  position: relative; flex: 0 0 210px; aspect-ratio: 9 / 16;
  border-radius: var(--radius); overflow: hidden; scroll-snap-align: start;
  border: none; padding: 0; cursor: pointer; background: var(--ink-2);
}
@media (min-width: 720px) {
  .stories__track {
    justify-content: center; flex-wrap: wrap; overflow: visible;
    max-width: var(--max-width); margin: 0 auto; gap: 28px;
  }
  .story { flex: 0 0 260px; }
}
.story img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.story:hover img { transform: scale(1.06); }
.story::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,23,26,0.8) 0%, rgba(20,23,26,0.05) 45%, rgba(20,23,26,0.15) 100%);
}
.story__play {
  position: absolute; top: 50%; left: 50%; width: 50px; height: 50px; z-index: 1;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: rgba(255,255,255,0.16); border: 1.5px solid rgba(255,255,255,0.8);
  transition: background .2s ease, transform .2s ease;
}
.story__play::before {
  content: ""; position: absolute; top: 50%; left: 57%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 8px 0 8px 13px; border-color: transparent transparent transparent #fff;
}
.story:hover .story__play { background: var(--accent); transform: translate(-50%, -50%) scale(1.08); }
.story__label {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1;
  color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; text-align: left;
}

/* SHOWCASE / CAROUSEL */
.showcase { padding: 60px 0 16px; background: var(--cream-2); }
.showcase__controls { display: flex; gap: 10px; flex: none; }
.showcase__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border);
  background: #fff; color: var(--ink); font-size: 19px; cursor: pointer;
  transition: background .15s ease-out, color .15s ease-out, border-color .15s ease-out;
}
.showcase__btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.carousel { overflow: hidden; padding: 32px 0 56px; }
.carousel__track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 32px 6px; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); padding-bottom: 22px;
}
.carousel__media { height: 210px; overflow: hidden; }
.carousel__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.carousel__card:hover .carousel__media img { transform: scale(1.08); }
.carousel__card h3 { font-size: 15.5px; margin: 20px 22px 8px; }
.carousel__card p { font-size: 13.5px; color: var(--text-muted); margin: 0 22px; }

/* HERO */
.hero { position: relative; padding: 26px 0 22px; overflow: hidden; }
.hero__title, .hero__body { position: relative; z-index: 1; }
.hero__kicker {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent-dark);
  margin-bottom: 12px;
}
.hero h1 { font-size: clamp(3.2rem, 8vw, 5.6rem); color: var(--ink); margin-bottom: 18px; }
.hero h1 span { color: var(--accent-dark); }
.hero__subtitle { font-size: 17.5px; color: var(--text-muted); max-width: 440px; margin-bottom: 26px; }
.hero__cta { margin-bottom: 26px; }
.hero__services { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__services li {
  font-size: 13px; font-weight: 700; color: var(--ink);
  background: rgba(255,255,255,0.55); border: 1.5px solid rgba(20,23,26,0.15);
  padding: 8px 16px; border-radius: 999px;
}

.hero__media {
  position: relative; z-index: 2; margin: 14px 0 0;
  border-radius: 14px; overflow: hidden;
}
.hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: 60% 45%;
}

/* Desktop hero layout: text column in normal flow, image fills the diagonal
   shape on the right, pinned absolute so it can't disturb text spacing. */
@media (min-width: 1200px) {
  .hero { display: flex; flex-direction: column; justify-content: center; min-height: 62vh; }
  .hero > .container { width: 100%; }
  .hero__title, .hero__body { max-width: 500px; }
  .hero__media {
    position: absolute; top: -40px; bottom: -40px; left: 50%; right: 0; z-index: 0;
    width: auto; margin: 0;
    border-radius: 0;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .hero__media img {
    width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover;
    object-position: 60% 55%;
    transform: scale(1.4) translateY(17%);
    transform-origin: 60% 55%;
  }
}

/* SERVICES */
.services { padding: 60px 0 28px; background: #fff; }
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.service-card { background: var(--cream); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__media { height: 170px; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__body { padding: 24px 22px 28px; }
.service-card__num {
  display: block; font-family: 'Anton', sans-serif; font-size: 22px; color: var(--accent-dark); margin-bottom: 10px;
}
.service-card__body h3 { font-size: 20px; margin-bottom: 10px; }
.service-card__body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.card__link { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ink); font-size: 13px; letter-spacing: 0.3px; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.card__link:hover { color: var(--accent-dark); }
.services__extra { text-align: center; margin-top: 32px; color: var(--text-muted); font-size: 15px; }


/* WHY */
.why { padding: 28px 0 60px; background: #fff; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why__item {
  position: relative; background: var(--cream); border-radius: 14px;
  padding: 28px 24px 30px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why__num {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Anton', sans-serif; font-size: 26px; color: var(--border);
}
.why__icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #fff;
  margin-bottom: 22px;
}
.why__icon svg { width: 24px; height: 24px; }
.why__item h3 { font-size: 16px; text-transform: none; letter-spacing: 0; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 10px; }
.why__item p { font-size: 14.5px; color: var(--text-muted); }
.why__cta { text-align: center; margin-top: 32px; }


/* CTA FINAL */
.cta-final { position: relative; background: var(--accent); padding: 56px 0; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; top: 0; left: 0; width: 68%; height: 100%;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
}
.cta-final__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-final__eyebrow { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.cta-final__inner h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 480px; }

/* CONTATO / FORMULÁRIO */
.contact { background: var(--cream); padding: 76px 0; }
.contact .section__head { text-align: center; margin: 0 auto 36px; }

.contact__form {
  position: relative; overflow: hidden;
  max-width: 640px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 44px 40px 40px; box-shadow: 0 30px 60px -28px rgba(20,23,26,0.28);
}
.contact__form::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--text-muted); }
.field input, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--text);
  background: #F8F6EF; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 13px 15px; width: 100%; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #A7AC9F; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(118, 191, 66, 0.16);
}
.field__error { display: none; font-size: 12.5px; color: var(--danger); margin-top: 1px; }
.field input.is-invalid { border-color: var(--danger); background: var(--danger-soft); box-shadow: 0 0 0 4px rgba(180, 85, 47, 0.14); }
.field input.is-invalid + .field__error { display: block; }
.contact__submit { width: 100%; justify-content: center; margin-top: 4px; }

/* RENDER PERFORMANCE: seções abaixo da dobra só são
   layoutadas/pintadas quando entram perto da viewport. */
.why,
.stories,
.showcase,
.contact,
.cta-final,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* FOOTER */
.footer { background: var(--ink); color: #A9B2A0; padding: 56px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo-wrap { display: inline-flex; align-items: center; background: #fff; border-radius: 8px; padding: 10px 16px; margin-bottom: 16px; }
.footer__logo { height: 32px; }
.footer__desc { font-size: 14px; max-width: 220px; }
.footer__col h4 { font-family: 'Inter', sans-serif; text-transform: uppercase; color: #fff; font-size: 13.5px; letter-spacing: 0.6px; margin-bottom: 16px; font-weight: 700; }
.footer__col p { font-size: 14px; margin-bottom: 9px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { text-align: center; padding: 24px 0; font-size: 13px; color: #6E7568; }

/* VIDEO MODAL */
.video-modal { position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.is-open { display: flex; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(20,23,26,0.92); }
.video-modal__box { position: relative; z-index: 1; width: 100%; max-width: 900px; animation: modalIn .3s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.video-modal__box video { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #000; }
.video-modal__close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; font-size: 32px; line-height: 1; cursor: pointer; }
.video-modal__close:hover { color: var(--accent); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28); z-index: 200; transition: transform .12s ease-out;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero { padding-top: 40px; }
  .compare { grid-template-columns: 1fr; }
  .compare__arrow { transform: rotate(90deg); padding: 4px 0; }
  .section__head--row { flex-direction: column; align-items: flex-start; text-align: left; }

  .hero__title, .hero__body { text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { display: flex; justify-content: center; }
  .hero__services { justify-content: center; }

  .cta-final { background: var(--accent); }
  .cta-final::before { display: none; }
  .cta-final__inner { justify-content: center; text-align: center; }
  .cta-final__inner h2 { margin-left: auto; margin-right: auto; color: var(--ink); }
  .cta-final__eyebrow { color: var(--ink-2); }
}

@media (max-width: 560px) {
  .hero__services { flex-wrap: nowrap; gap: 6px; }
  .hero__services li { font-size: 11.5px; padding: 7px 11px; white-space: nowrap; }
  .carousel__card { flex-basis: 82vw; }
  .story { flex-basis: 160px; }
}


@media (max-width: 720px) {
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact__form { grid-template-columns: 1fr; padding: 26px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* Hero mobile: texto sobre a imagem (banner full-bleed) */
@media (max-width: 760px) {
  .hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 34px;
    overflow: hidden;
  }
  .hero__media {
    position: absolute; inset: 0;
    margin: 0; border-radius: 0; z-index: 0;
  }
  .hero__media img {
    width: 100%; height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 60% 45%;
  }
  .hero__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
      rgba(20,23,26,0.35) 0%,
      rgba(20,23,26,0.10) 30%,
      rgba(20,23,26,0.55) 66%,
      rgba(20,23,26,0.88) 100%);
  }
  .hero .container { position: relative; z-index: 2; width: 100%; }
  .hero__title { text-align: left; margin-bottom: 6px; }
  .hero__kicker { color: #fff; opacity: .85; }
  .hero h1 { color: #fff; }
  .hero h1 span { color: var(--accent); }
  .hero__body { text-align: left; }
  .hero__subtitle { color: rgba(255,255,255,0.9); max-width: none; }
  .hero__cta { display: flex; justify-content: flex-start; }
  .hero__services { justify-content: flex-start; }
  .hero__services li {
    color: #fff;
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
  }
}

/* ============================================================
   HOME INSTITUCIONAL — componentes adicionais
   ============================================================ */

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,241,230,0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 70px;
}
.site-header__logo img { height: 40px; width: auto; display: block; }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--ink); letter-spacing: .2px;
}
.nav a:hover { color: var(--accent-dark); }
.site-header__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Button variants */
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--outline {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* Stats strip */
.stats { background: var(--ink); color: #fff; padding: 36px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 4px 12px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 46px; background: rgba(255,255,255,0.12);
}
.stat__num { display: block; font-family: 'Anton', sans-serif; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--accent); line-height: 1; }
.stat__label { display: block; font-size: 14px; color: #C4CBBB; margin-top: 10px; }

/* Sobre */
.about { padding: 76px 0; background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); display: block; }
.about__content h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 10px 0 18px; }
.about__content p { color: var(--text-muted); font-size: 16px; margin-bottom: 16px; }
.about__content .btn { margin-top: 8px; }

/* Serviços — 3 colunas na home */
.services__grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services__grid { grid-template-columns: 1fr; } }

/* Galeria */
.gallery { padding: 76px 0; background: var(--cream); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: var(--max-width); margin: 26px auto 0; padding: 0 32px;
}
.gallery__item { position: relative; margin: 0; border-radius: 12px; overflow: hidden; }
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,0.5)); }
.gallery__item figcaption {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; color: #fff;
}

/* Responsivo home */
@media (max-width: 860px) {
  .nav {
    position: fixed; left: 0; right: 0; top: 70px; margin: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--border); padding: 6px 0;
    transform: translateY(-130%); transition: transform .3s var(--ease);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav a { padding: 14px 32px; }
  .nav__toggle { display: flex; }
  .site-header__actions .btn--sm { display: none; }
}

@media (max-width: 760px) {
  .hero .btn--outline { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7); }
  .hero .btn--outline:hover { background: #fff; color: var(--ink); }
}

@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat:nth-child(3)::before, .stat:nth-child(1)::before { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
}

/* ============================================================
   HOME — HERO INSTITUCIONAL (card + painel verde + foto)
   ============================================================ */
:root { --green-deep: #1E5637; --green-deep-2: #245F3D; }

.home-hero { padding: 24px 0 50px; background: var(--cream); }
.home-hero .container { max-width: 1540px; }
.home-hero__card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--green-deep);
  box-shadow: 0 40px 80px -34px rgba(20,23,26,0.5);
  min-height: 580px;
}

/* foto de fundo cobrindo o card inteiro */
.home-hero__bg { position: absolute; inset: 0; z-index: 0; }
.home-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 20%; transform: scale(1.1); transform-origin: 62% 22%; display: block; }
.home-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(14,32,20,0.72) 0%, rgba(14,32,20,0.34) 40%, rgba(14,32,20,0.04) 66%, transparent 100%);
}

/* área do conteúdo + painel de vidro (abaixado para dar respiro sob o menu) */
.home-hero__inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: 580px; padding: 128px 0 48px; }
.home-hero__glass {
  max-width: 560px; margin-left: 56px;
  background: rgba(22,64,44,0.6);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 46px 44px;
  color: #fff;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.home-hero__eyebrow {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.home-hero__glass h1 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(2.3rem, 3.1vw, 3.5rem); line-height: 1.03;
  text-transform: uppercase; letter-spacing: .5px; color: #fff; margin-bottom: 20px;
}
.home-hero__lead { font-size: 17px; line-height: 1.62; color: rgba(255,255,255,0.86); margin-bottom: 30px; }
.home-hero__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.home-hero__phone {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.4); padding-bottom: 2px;
}
.home-hero__phone:hover { border-color: var(--accent); }

/* Header em pílula flutuante */
.home-nav {
  position: absolute; top: 24px; left: 24px; right: 24px; z-index: 5;
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  background: #fff; border-radius: 999px;
  padding: 12px 12px 12px 26px;
  box-shadow: 0 14px 34px rgba(20,23,26,0.20);
}
.home-nav__logo img { height: 42px; width: auto; display: block; }
.home-nav__links { display: flex; gap: 32px; margin-left: auto; }
.home-nav__links a { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; color: var(--ink); }
.home-nav__links a:hover { color: var(--accent-dark); }
.home-nav__cta {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; color: #fff;
  background: var(--green-deep); border-radius: 999px; padding: 13px 28px;
  transition: background-color .15s ease, transform .15s ease;
}
.home-nav__cta:hover { background: var(--green-deep-2); transform: translateY(-1px); }

@media (max-width: 980px) {
  .home-hero__card { min-height: 0; border-radius: 22px; }
  .home-hero__bg { position: relative; height: 320px; }
  .home-hero__bg img { height: 320px; object-position: 58% 25%; transform: none; }
  .home-hero__bg::after { background: linear-gradient(180deg, transparent 55%, rgba(14,32,20,.35)); }
  .home-hero__inner { position: relative; min-height: 0; display: block; padding: 0; }
  .home-hero__glass {
    max-width: none; margin: 0; border: none; border-radius: 0;
    background: linear-gradient(155deg, var(--green-deep), var(--green-deep-2));
    -webkit-backdrop-filter: none; backdrop-filter: none;
    box-shadow: none; padding: 42px 30px 46px;
  }
}

@media (max-width: 860px) {
  .home-nav { gap: 12px; padding: 10px 10px 10px 18px; }
  .home-nav__links {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff; border-radius: 18px;
    padding: 8px; box-shadow: 0 18px 40px rgba(20,23,26,0.22);
    transform: scaleY(.6); transform-origin: top; opacity: 0; visibility: hidden;
    transition: transform .22s var(--ease), opacity .22s var(--ease), visibility .22s;
  }
  body.nav-open .home-nav__links { transform: scaleY(1); opacity: 1; visibility: visible; }
  .home-nav__links a { padding: 13px 16px; border-radius: 10px; }
  .home-nav__links a:hover { background: var(--cream); }
  .nav__toggle { display: flex; margin-left: auto; }
  .home-nav__cta { display: none; }
}

@media (max-width: 560px) {
  .home-hero__glass h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .home-hero__cta { gap: 16px; }
}

/* ============================================================
   HOME — ATUAÇÃO NACIONAL (faixa verde)
   ============================================================ */
.reach {
  background: linear-gradient(155deg, var(--green-deep) 0%, var(--green-deep-2) 100%);
  color: #fff; padding: 78px 0; position: relative; overflow: hidden;
}
.reach::after {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, rgba(118,191,66,0.16) 0%, transparent 62%);
  pointer-events: none;
}
.reach__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 0 24px; text-align: center; }
.reach__icon {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 16px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.reach__icon svg { width: 32px; height: 32px; }
.reach__eyebrow { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.reach h2 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: .5px; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.05; color: #fff; margin-bottom: 18px; }
.reach p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.85); max-width: 60ch; margin: 0 auto 28px; }

@media (max-width: 560px) { .reach { padding: 58px 0; } }

/* ============================================================
   BLOG — listagem, artigo, FAQ
   ============================================================ */

/* Breadcrumbs — 140px de topo compensam o header em pílula flutuante
   (24px de offset + ~66px de altura), com respiro extra abaixo dele. */
.breadcrumbs { padding: 140px 0 0; }
@media (max-width: 860px) {
  .breadcrumbs { padding-top: 128px; }
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--border); }
.breadcrumbs li[aria-current] { color: var(--ink); font-weight: 600; }

/* Cabeçalho de artigo — rente ao header (o breadcrumb já reserva o
   respiro necessário abaixo da pílula flutuante), com respiro embaixo
   antes da seção branca do corpo do texto começar. */
.article-hero { padding: 4px 0 46px; background: var(--cream); }
.article-hero__head { max-width: 760px; margin: 14px auto 0; text-align: center; }
.article-hero__head h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 14px 0 18px; }
.article-hero__dek { font-size: 17.5px; color: var(--text-muted); max-width: 62ch; margin: 0 auto; }
.article-hero__meta {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 22px; font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--text-muted);
}
.article-hero__meta span:not(:last-child)::after { content: "•"; margin-left: 14px; color: var(--border); }

/* Capa do artigo — compacta e alinhada à largura do texto (não ao
   container inteiro, pra não virar um banner gigante). A foto original
   tem muito telhado vazio no topo, então em vez de mostrar o quadro
   4:3 inteiro (trator pequeno lá embaixo), usamos 16:9 com o recorte
   puxado pra baixo — foca no trator, corta o vão vazio de cima. */
.article-hero__cover {
  max-width: 700px; margin: 32px auto 0; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* Borda fina pra separar a foto do fundo creme — sem ela, paredes/céu
     claros da imagem quase se fundem com a página. */
  border: 1px solid rgba(20, 23, 26, 0.08);
}
.article-hero__cover img {
  display: block; width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover; object-position: 50% 78%;
}

/* Corpo do artigo (prosa) */
.article { padding: 52px 0 20px; background: #fff; }
.article__layout { display: grid; grid-template-columns: 1fr 260px; gap: 60px; align-items: start; max-width: 980px; margin: 0 auto; }
.article__body { max-width: 68ch; font-size: 17px; line-height: 1.75; color: var(--text); }
.article__body > *:first-child { margin-top: 0; }
.article__body h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin: 46px 0 18px; text-transform: none; letter-spacing: 0; }
.article__body h3 { font-size: 1.15rem; margin: 32px 0 12px; text-transform: none; letter-spacing: 0; font-family: 'Inter', sans-serif; font-weight: 800; color: var(--ink); }
.article__body p { margin-bottom: 20px; }
.article__body ul, .article__body ol { list-style: none; margin: 0 0 22px; }
.article__body ul li, .article__body ol li { position: relative; padding-left: 26px; margin-bottom: 11px; }
.article__body ul li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
/* A lista de FAQ tem estilo próprio (accordion) — não deve herdar o bullet verde. */
.article__body .faq li { padding-left: 0; margin-bottom: 0; }
.article__body .faq li::before { content: none; }
.article__body ol { counter-reset: article-ol; }
.article__body ol li { counter-increment: article-ol; }
.article__body ol li::before {
  content: counter(article-ol); position: absolute; left: 0; top: -1px;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 12.5px; color: var(--accent-dark);
}
.article__body strong { color: var(--ink); }
.article__body a:not(.btn) { color: var(--accent-dark); font-weight: 600; border-bottom: 1.5px solid var(--accent); }
.article__body a:not(.btn):hover { color: var(--ink); border-color: var(--ink); }
.article__body figure { max-width: 520px; margin: 30px auto; }
.article__body figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover; object-position: 50% 50%;
  border-radius: 14px; box-shadow: var(--shadow);
}
.article__body figcaption { font-size: 13.5px; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* Citação de destaque */
.pull-quote {
  margin: 34px 0; padding: 26px 30px; background: var(--accent-soft); border-radius: 14px;
  border-left: 4px solid var(--accent);
}
.pull-quote p {
  font-family: 'Anton', sans-serif; font-weight: 400; text-transform: none; letter-spacing: 0;
  font-size: 1.35rem; line-height: 1.3; color: var(--ink); margin: 0;
}

/* Aviso / callout */
.callout { display: flex; gap: 14px; margin: 30px 0; padding: 20px 22px; border-radius: 14px; background: var(--cream); border: 1px solid var(--border); }
.callout__icon { flex: none; width: 26px; height: 26px; }
.callout p { margin: 0; font-size: 15px; color: var(--text-muted); }
.callout p strong { color: var(--ink); }

/* Tabela comparativa */
.article__table-wrap { overflow-x: auto; margin: 30px 0; border-radius: 14px; box-shadow: var(--shadow); }
.article__table { width: 100%; min-width: 480px; border-collapse: collapse; background: #fff; font-size: 14.5px; }
.article__table th, .article__table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.article__table thead th { background: var(--ink); color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: .4px; text-transform: uppercase; }
.article__table tbody tr:last-child td { border-bottom: none; }
.article__table tbody tr:nth-child(even) { background: var(--cream); }

/* CTA embutido no meio do artigo */
.inline-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin: 40px 0; padding: 28px 30px; border-radius: 18px;
  background: var(--ink); color: #fff;
}
.inline-cta p { margin: 0; font-size: 15.5px; color: #C7CFC0; max-width: 46ch; }
.inline-cta strong { display: block; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.15rem; line-height: 1.3; color: #fff; margin-bottom: 6px; }

/* FAQ (accordion nativo, sem JS) */
.faq { list-style: none; margin: 6px 0 0; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 30px 20px 0; position: relative;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: 'Anton', sans-serif; font-size: 22px; color: var(--accent-dark); transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { margin: 0 0 22px; color: var(--text-muted); font-size: 15px; max-width: 62ch; }

/* Sidebar do artigo */
.article__aside { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 24px; }
.aside-card { background: var(--cream); border-radius: 16px; padding: 24px; }
.aside-card h4 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .6px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.aside-card__toc a { display: block; font-size: 14px; font-weight: 600; color: var(--text); padding: 7px 0; border-bottom: 1px dashed var(--border); }
.aside-card__toc a:last-child { border-bottom: none; }
.aside-card__toc a:hover { color: var(--accent-dark); }
.aside-card--dark { background: var(--ink); color: #fff; text-align: center; }
.aside-card--dark h4 { color: #C7CFC0; }
.aside-card--dark p { font-size: 14px; color: #C7CFC0; margin-bottom: 16px; }
.aside-card--dark .btn { width: 100%; }

/* Autor */
.author-box { display: flex; align-items: center; gap: 16px; margin: 50px 0 0; padding-top: 30px; border-top: 1px solid var(--border); max-width: 68ch; }
.author-box__avatar { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; }
.author-box__avatar img { width: 30px; height: 30px; object-fit: contain; }
.author-box__name { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 14.5px; color: var(--ink); }
.author-box__role { font-size: 13px; color: var(--text-muted); }

/* Tags e relacionados */
.article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0 0; max-width: 68ch; }
.tag { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .3px; color: var(--accent-dark); background: var(--accent-soft); padding: 7px 14px; border-radius: 999px; }

.related { padding: 20px 0 60px; background: #fff; }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }

/* Hero da listagem do blog — mais rente ao header (o breadcrumb já
   reserva o respiro necessário abaixo da pílula flutuante), mas com
   espaço de sobra antes da galeria de posts começar. */
.blog-hero { padding: 4px 0 58px; background: var(--cream); }
.blog-hero__head { max-width: 640px; margin: 14px auto 0; text-align: center; }
.blog-hero__head h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin: 14px 0 16px; }
.blog-hero__head .lead { max-width: 56ch; margin: 0 auto; }

/* Galeria de posts — imagem em cima, conteúdo embaixo. Usa auto-fill
   para já nascer como grade: com 1 post só, ocupa 1 coluna (não
   estica a largura toda); conforme novos posts entram, preenche a
   grade normalmente até 3 por linha. */
.post-grid { padding: 16px 0 70px; background: #fff; }
.post-grid__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.post-card { display: flex; flex-direction: column; background: var(--cream); border-radius: 18px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { height: 200px; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.08); }
.post-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .4px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.post-card__body h2 { font-size: 19px; text-transform: none; letter-spacing: 0; font-family: 'Inter', sans-serif; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.post-card__body p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; flex: 1; }

/* Tira "em breve" — leve, não finge ser conteúdo pronto */
.post-upcoming { margin-top: 36px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px 28px; border: 1.5px dashed var(--border); border-radius: 16px; }
.post-upcoming__label { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--text-muted); flex: none; }
.post-upcoming__tags { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 980px) {
  .article__layout { grid-template-columns: 1fr; }
  .article__aside { position: static; flex-direction: row; overflow-x: auto; }
  .aside-card { min-width: 240px; }
  .related__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .post-grid__list { grid-template-columns: 1fr; }
  .related__grid { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .article__table { min-width: 420px; }
  .post-upcoming { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   BANNER DE COOKIES (LGPD)
   ============================================================ */
.cookie-banner {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 500;
  max-width: 760px; margin: 0 auto;
  background: var(--ink); color: #fff;
  border-radius: 16px; padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  align-items: center; flex-wrap: wrap; gap: 18px;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__text { flex: 1 1 320px; font-family: 'Inter', sans-serif; font-size: 13.5px; line-height: 1.6; color: #C7CFC0; margin: 0; }
.cookie-banner__text strong { color: #fff; }
.cookie-banner__text a { color: var(--accent); font-weight: 600; border-bottom: 1px solid var(--accent); }
.cookie-banner__text a:hover { color: #fff; border-color: #fff; }
.cookie-banner__actions { display: flex; gap: 10px; flex: none; }
.cookie-banner__btn {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13.5px; letter-spacing: .2px;
  padding: 11px 20px; border-radius: 10px; border: none; cursor: pointer; white-space: nowrap;
  transition: background-color .12s ease-out, transform .12s ease-out, box-shadow .12s ease-out;
}
.cookie-banner__btn--accept { background: var(--accent); color: var(--ink); }
.cookie-banner__btn--accept:hover { background: var(--accent-dark); transform: translateY(-1px); }
@media (max-width: 640px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; flex-direction: column; align-items: stretch; text-align: left; }
  /* Em column, o eixo principal do flex vira vertical — sem isso, o
     "320px" do flex-basis (pensado pra largura) passa a valer como
     altura mínima do texto, abrindo aquele vão vazio enorme. */
  .cookie-banner__text { flex: 0 1 auto; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; }
}
