/* ──────────────────────────────────────────────
       TOKENS
        ────────────────────────────────────────────── */
:root {
  --teal: #00ffef;
  --teal-dark: #6abab5;
  --teal-light: #c8e9e7;
  /* --sand: rgb(217, 190, 147); */
  --sand: #00ffef;
  --sand-light: rgb(240, 228, 207);
  --text: #111;
  --text-muted: #555;
  --bg: #fff;
  --border: #e8e8e8;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: clamp(3.5rem, 8vw, 6rem);
  --radius: 12px;
  --transition: 0.25s ease;
}

/* ──────────────────────────────────────────────
       RESET & BASE
        ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ──────────────────────────────────────────────
       SKIP LINK (acessibilidade)
     ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem;
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ──────────────────────────────────────────────
       NAVBAR
     ────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
}

.navbar__brand span {
  color: var(--sand);
}

.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.navbar__links a:hover {
  color: var(--teal-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--teal);
  color: #fff;
}

.btn--primary:hover {
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(145, 208, 204, 0.4);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal-dark);
}

.btn--outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

.btn--sand {
  background: var(--sand);
  color: #fff;
}

.btn--sand:hover {
  background: #c8a870;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217, 190, 147, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-weight: 500;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────────
       HERO
        ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fafa 0%, #fdf9f4 60%, #fdf5ec 100%);
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 30%,
    rgba(145, 208, 204, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: "●";
  font-size: 0.6rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--teal-dark);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero card visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(145, 208, 204, 0.15);
  max-width: 340px;
  width: 100%;
  position: relative;
}

.hero__card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--teal-light), var(--sand-light));
  z-index: -1;
}

.hero__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #0000bc;
  margin-bottom: 1rem;
}

.hero__card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero__card-title {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero__crp {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero__badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.badge__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Urgency strip */
.urgency-strip {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.urgency-strip a {
  color: var(--sand-light);
  font-weight: 700;
  text-decoration: underline;
}

/* ──────────────────────────────────────────────
       SECTION BASE
        ────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 1.5rem;
}

.section--alt {
  background: linear-gradient(180deg, #f7fdfc 0%, #fdf9f4 100%);
}

.section--dark {
  background: linear-gradient(135deg, #00ffef 0%, #00ffef 100%);
  color: #fff;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.section--dark .section-label {
  color: var(--teal-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--teal-dark);
}

.section--dark .section-title em {
  color: var(--teal-light);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

/* ──────────────────────────────────────────────
   QUOTE / IMAGEM + TEXTO
────────────────────────────────────────────── */
.quote-hero {
  padding: var(--section-pad) 1.5rem;
}
.quote-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.quote-hero__image {
  width: 100%;
  aspect-ratio: 894 / 570;
  border-radius: 20px;
  overflow: hidden;
}
.quote-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-hero__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
.quote-hero__author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

@media (max-width: 900px) {
  .quote-hero__inner {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────
       SOBRE
        ────────────────────────────────────────────── */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 2.5rem;
}

.sobre__side {
  position: sticky;
  top: 100px;
}

.sobre__photo-wrap {
  background: linear-gradient(
    135deg,
    var(--teal-light) 0%,
    var(--sand-light) 100%
  );
  border-radius: 20px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal-dark);
  margin-bottom: 1.5rem;
}

.sobre__fact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.sobre__fact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sobre__fact-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.sobre__content p {
  font-size: 0.97rem;
  color: #333;
  margin-bottom: 1.25rem;
}

.sobre__content p:last-child {
  margin-bottom: 0;
}

.quote-block {
  border-left: 3px solid var(--sand);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--sand-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  margin: 0 !important;
}

/* ──────────────────────────────────────────────
       ABORDAGEM
        ────────────────────────────────────────────── */
.abordagem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.abordagem__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition);
}

.abordagem__card:hover {
  transform: translateY(-4px);
}

.abordagem__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.abordagem__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 0.6rem;
}

.abordagem__card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
       ATENDIMENTOS
        ────────────────────────────────────────────── */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.servico-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.servico-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
  border-radius: 0;
  transition: width var(--transition);
}

.servico-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.servico-card:hover::after {
  width: 100%;
  opacity: 0.04;
}

.servico-card--destaque {
  background: linear-gradient(135deg, var(--teal-light), #fff);
  border-color: var(--teal);
}

.servico-card--destaque::after {
  background: var(--teal-dark);
}

.servico-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.servico-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.servico-card__tag--24 {
  background: var(--sand-light);
  color: #b07a30;
}

.servico-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.servico-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────
       DEMANDAS
        ────────────────────────────────────────────── */
.demandas__grid {
  columns: 3;
  gap: 1rem;
  margin-top: 2.5rem;
}

.demanda-item {
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: #333;
}

.demanda-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────
       FAQ
        ────────────────────────────────────────────── */
.faq__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}

.faq-item__btn:hover {
  background: var(--teal-light);
}

.faq-item__btn[aria-expanded="true"] {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item__btn[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
}

.faq-item__body {
  display: none;
  padding: 1rem 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item__body.open {
  display: block;
}

/* ──────────────────────────────────────────────
       COMO FUNCIONA
        ────────────────────────────────────────────── */
.como-funciona__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.como-funciona__steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #0000bc;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--teal-light);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────
       QUANDO PROCURAR
        ────────────────────────────────────────────── */
.quando__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.quando-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.quando-item__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.quando-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

/* ──────────────────────────────────────────────
       CTA CENTRAL
        ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: var(--section-pad) 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-section .btn--sand {
  font-size: 1rem;
  padding: 0.85rem 2.25rem;
}

/* ──────────────────────────────────────────────
       CONFIANÇA
        ────────────────────────────────────────────── */
.confianca__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.confianca-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.confianca-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.confianca-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.confianca-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
       FOOTER
        ────────────────────────────────────────────── */
footer {
  background: #0000bc;
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 1.5rem 1.5rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}

.footer__brand span {
  color: var(--sand);
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
  margin-bottom: 1rem;
}

.footer__crp {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

footer ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

footer ul li a:hover {
  color: var(--teal-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__cfp {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__cfp::before {
  content: "🛡️";
  font-size: 0.9rem;
}

/* ──────────────────────────────────────────────
       RESPONSIVO
        ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar__links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
  }

  .sobre__side {
    position: static;
  }

  .sobre__photo-wrap {
    aspect-ratio: 3/1;
    font-size: 3rem;
  }

  .abordagem__grid {
    grid-template-columns: 1fr 1fr;
  }

  .como-funciona__steps {
    grid-template-columns: 1fr 1fr;
  }

  .como-funciona__steps::before {
    display: none;
  }

  .confianca__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .abordagem__grid {
    grid-template-columns: 1fr;
  }

  .demandas__grid {
    columns: 2;
  }

  .como-funciona__steps {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .demandas__grid {
    columns: 1;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ──────────────────────────────────────────────
       LGPD BANNER
    ────────────────────────────────────────────── */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0e2422;
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.lgpd-banner.visible {
  transform: translateY(0);
}
.lgpd-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
}
.lgpd-banner__text a {
  color: var(--teal-light);
  text-decoration: underline;
}
.lgpd-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.lgpd-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lgpd-btn--accept {
  background: var(--teal);
  color: #fff;
}
.lgpd-btn--accept:hover {
  background: var(--teal-dark);
}
.lgpd-btn--reject {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}
.lgpd-btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

@media (max-width: 700px) {
  .lgpd-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .lgpd-banner__actions {
    width: 100%;
  }
  .lgpd-btn {
    flex: 1;
    text-align: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
