/* ==========================================================================
   Casa do Consignado — Design System
   ========================================================================== */

:root {
  --navy-900: #0a1f3d;
  --navy-800: #0d2a52;
  --navy-700: #123a6e;
  --navy-600: #1a4d8f;
  --gold-500: #d4af37;
  --gold-400: #e6c65c;
  --green-500: #1b9e6b;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;

  --gray-900: #14181f;
  --gray-700: #414954;
  --gray-500: #6b7280;
  --gray-200: #e5e9f0;
  --gray-100: #f4f6fa;
  --white: #ffffff;

  --font-heading: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 31, 61, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 31, 61, 0.18);

  --transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { color: var(--gray-700); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 800px; }

.section { padding: 96px 0; }
.section--alt { background: var(--gray-100); }

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  color: var(--green-500);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.section__head h2 { margin-bottom: 16px; }

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { box-shadow: var(--shadow-lg); }

.btn--outline {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-800);
}
.btn--outline:hover { background: var(--navy-700); color: var(--white); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); }

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ==== Header ==== */
/* Note: backdrop-filter lives on ::before (not .header) because a filter/
   backdrop-filter on an ancestor turns it into the containing block for
   position:fixed descendants (like .nav on mobile), breaking their sizing. */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.is-scrolled::before {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
}
.logo__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo__text {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.2;
}
.logo__text strong { font-weight: 800; }
.logo__tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green-500);
  letter-spacing: 0.02em;
}

.nav__list {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--navy-800); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width var(--transition);
}
.nav__link:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy-900);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==== Hero ==== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 96px;
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.12), transparent 45%),
    linear-gradient(180deg, #f7f9fc 0%, var(--white) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(27, 158, 107, 0.12);
  color: var(--green-500);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.1rem;
  margin: 20px 0 32px;
  max-width: 520px;
}

.highlight { color: var(--green-500); }

.typewriter-text.is-typing::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 3px;
  background: var(--green-500);
  vertical-align: text-bottom;
  animation: cursor-blink 0.8s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .typewriter-text.is-typing::after { animation: none; }
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-700);
}

.hero__visual { display: flex; justify-content: center; }
.hero__card-wrap { position: relative; width: 100%; max-width: 360px; }
.hero__card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
}
.hero__card-photo {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid var(--gold-400);
  margin: 0 auto 16px;
}
.hero__card-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-align: center;
}
.hero__card-role {
  text-align: center;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.hero__card-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 24px;
}
.hero__card-cta { width: 100%; }

/* ==== Falling bills (discreet, site-wide ambient animation) ==== */
.bills-fall {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}
.bill {
  position: absolute;
  top: -12%;
  width: 44px;
  height: 25px;
  left: var(--x, 50%);
  opacity: var(--o, 0.16);
  transform: scale(var(--s, 1));
  animation: bill-fall var(--dur, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}
.bill__note {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green-500), #157a53);
  border: 1.5px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 9px;
  color: var(--gold-400);
  box-shadow: 0 4px 10px rgba(10, 31, 61, 0.15);
}
@keyframes bill-fall {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--s, 1)); }
  100% { transform: translate3d(var(--drift, 30px), 135vh, 0) rotate(var(--spin, 260deg)) scale(var(--s, 1)); }
}

/* ==== Money stack (decorative badge) ==== */
.money-stack {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 108px;
  animation: money-float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(10, 31, 61, 0.25));
}
@keyframes money-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

/* ==== CTA shimmer (only the two main conversion buttons) ==== */
.btn--shine {
  position: relative;
  overflow: hidden;
}
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: btn-shimmer 3.6s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%   { left: -60%; }
  35%  { left: 130%; }
  100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .bill, .money-stack, .btn--shine::after, .cta-final__coin, .btn--instagram::before {
    animation: none !important;
  }
  .bills-fall { display: none; }
}

/* ==== Audience strip ==== */
.audience {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}
.audience__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding: 18px 24px;
}
.audience__label {
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.audience__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.audience__list li {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding-left: 18px;
}
.audience__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold-400);
}

/* ==== Consultor (Sobre o consultor) ==== */
.consultor__inner {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 56px;
  align-items: center;
}
.consultor__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 465 / 1000;
}
.consultor__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.consultor__content h2 { margin-bottom: 6px; }
.consultor__role {
  color: var(--green-500);
  font-weight: 600;
  margin-bottom: 20px;
}
.consultor__bio {
  font-size: 1.02rem;
  margin-bottom: 24px;
  max-width: 560px;
}
.consultor__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 32px;
}

/* ==== Grid & Cards ==== */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  font-size: 1.8rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }

.feature { text-align: center; padding: 8px; }
.feature__icon {
  font-size: 1.6rem;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.feature h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature p { font-size: 0.92rem; }

/* ==== Steps ==== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: 0.92rem; }

/* ==== Testimonials ==== */
.testimonial {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial p { font-style: italic; margin-bottom: 20px; color: var(--gray-900); }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.testimonial__author small { color: var(--gray-500); }

/* ==== Accordion ==== */
.accordion__item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
  cursor: pointer;
}
.accordion__trigger:focus-visible {
  outline: 2px solid var(--navy-600);
  outline-offset: 2px;
}
.accordion__icon {
  font-size: 1.4rem;
  color: var(--green-500);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
}
.accordion__item.is-open .accordion__panel {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ==== CTA Final ==== */
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-final h2 { color: var(--white); margin-bottom: 12px; }
.cta-final p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-final__coin {
  position: absolute;
  width: 64px;
  opacity: 0.18;
  animation: money-float 5.5s ease-in-out infinite;
}
.cta-final__coin--1 { left: 6%; top: 18%; animation-delay: -1.2s; }
.cta-final__coin--2 { right: 8%; bottom: 14%; width: 52px; animation-delay: -3s; }
@media (max-width: 760px) {
  .cta-final__coin { width: 38px; opacity: 0.14; }
  .cta-final__coin--1 { left: 4%; top: 8%; }
  .cta-final__coin--2 { right: 4%; bottom: 8%; width: 32px; }
}

/* ==== Contact ==== */
.contact {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--gray-100);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--navy-800); }
.field input, .field select, .field textarea {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-600);
}
.form__note { grid-column: 1 / -1; font-size: 0.9rem; color: var(--green-500); font-weight: 600; min-height: 20px; }
.field--consent {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}
.field--consent a { color: var(--navy-700); text-decoration: underline; }

.contact__agent {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-bottom: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}
.contact__agent-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid var(--gold-400);
}
.contact__agent strong { display: block; color: var(--navy-900); }
.contact__agent small { color: var(--gray-500); font-size: 0.8rem; }

.contact__info h3 { margin-bottom: 20px; }
.contact__list { display: flex; flex-direction: column; gap: 22px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__list li span { font-size: 1.3rem; }
.contact__list strong { display: block; color: var(--navy-900); margin-bottom: 2px; }
.contact__list a { color: var(--green-500); font-weight: 600; }
.contact__list small { display: block; color: var(--gold-500); font-size: 0.75rem; margin-top: 2px; }
.contact__social { margin-top: 28px; }
.btn--instagram {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn--instagram::before {
  content: '';
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 0deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #4c68d7, #f09433);
  filter: blur(7px);
  opacity: 0.9;
  animation: instagram-glow-spin 3.5s linear infinite;
}
.btn--instagram:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
@keyframes instagram-glow-spin {
  to { transform: rotate(360deg); }
}

/* ==== Footer ==== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}
.footer__inner { text-align: center; }
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gold-400);
  text-transform: uppercase;
}
.footer__disclaimer {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer__copy { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer__copy a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer__copy a:hover { color: var(--white); }

.footer__credit {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__credit-links {
  display: inline-flex;
  gap: 6px;
}
.footer__credit-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.68rem;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.footer__credit-link svg { width: 11px; height: 11px; }
.footer__credit-link:hover { transform: translateY(-1px); }
.footer__credit-link--whatsapp { background: var(--whatsapp); }
.footer__credit-link--whatsapp:hover { background: var(--whatsapp-dark); }
.footer__credit-link--linkedin { background: #0a66c2; }
.footer__credit-link--linkedin:hover { background: #084d92; }

/* ==== Cookie Banner ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner a { color: var(--gold-400); text-decoration: underline; }
.cookie-banner p { color: rgba(255,255,255,0.85); font-size: 0.88rem; max-width: 760px; }
.cookie-banner__accept {
  flex-shrink: 0;
  background: var(--gold-400);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.cookie-banner__accept:hover { background: var(--gold-500); transform: translateY(-1px); }
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
    text-align: center;
  }
}

/* ==== WhatsApp Float ==== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), var(--shadow-lg); }
}

/* ==== Scroll reveal ==== */
[data-reveal],
[data-reveal-children] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible,
.is-visible[data-reveal-children] > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; margin-bottom: 32px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .consultor__inner { grid-template-columns: 1fr; }
  .consultor__photo-wrap { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .nav { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--white);
    transform: translateX(100%); transition: transform var(--transition); overflow-y: auto; }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 0; padding: 24px; }
  .nav__list li { border-bottom: 1px solid var(--gray-200); }
  .nav__link { display: block; padding: 18px 4px; }
  .nav__toggle { display: flex; }
  .header__actions { display: none; }

  .section { padding: 64px 0; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .consultor__photo-wrap { max-width: 210px; }
}
