/* ============================================
   EVERTON MARINS — CONSULTORIA & SERVIÇOS
   Design: editorial moderno | laranja + preto
   ============================================ */

:root {
  /* Cores - Paleta Laranja & Preto */
  --ink:        #0a0a0b;          /* preto profundo */
  --ink-soft:   #141416;
  --ink-mid:    #1f1f22;
  --ink-line:   #2a2a2e;

  --paper:      #fffaf5;           /* creme quente */
  --paper-soft: #f6efe6;
  --paper-mid:  #e9dfd0;

  --orange:       #ff5a1f;         /* laranja principal vibrante */
  --orange-deep:  #e04410;         /* laranja mais denso */
  --orange-soft:  #ffa97a;         /* laranja claro */
  --orange-glow:  #ff7a3d;

  --accent:    var(--orange);

  /* Tipografia */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos fluídos */
  --space-1: clamp(0.5rem, 1vw, 0.75rem);
  --space-2: clamp(1rem, 2vw, 1.5rem);
  --space-3: clamp(2rem, 4vw, 3rem);
  --space-4: clamp(3rem, 6vw, 5rem);
  --space-5: clamp(4rem, 9vw, 8rem);

  --container: 1280px;
  --radius: 4px;
  --radius-lg: 20px;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Correção de Layout Crítico */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 2rem;
}

.header__logo {
  max-height: 60px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Grão sutil */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}

.accent { color: var(--orange); font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
}

.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1.5px solid transparent;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.btn--sm  { font-size: 0.85rem; padding: 0.65rem 1.2rem; }
.btn--lg  { font-size: 1rem; padding: 1.05rem 1.9rem; }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(255,90,31,0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.15rem 0;
  background: rgba(255, 250, 245, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav.is-scrolled {
  border-bottom-color: rgba(10,10,11,0.08);
  background: rgba(255, 250, 245, 0.92);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 120px; width: auto; }

.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.93rem;
  font-weight: 500;
}

.nav__links a {
  position: relative;
  color: var(--ink);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after { width: 100%; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__logo { height: 36px; }
}

/* Menu Mobile Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--paper);
  z-index: 1000;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.header__toggle span {
  width: 28px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .header__toggle { display: flex; }
  .header__nav, .header__cta { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--space-5) + 3rem) clamp(1rem, 3vw, 2rem) var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 10%; right: -10%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle,
    rgba(255, 90, 31, 0.25) 0%,
    rgba(255, 90, 31, 0.08) 30%,
    transparent 65%);
  filter: blur(60px);
  animation: floatGlow 18s ease-in-out infinite;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-8%, 6%) scale(1.08); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__title {
  font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 1.5rem 0 1.8rem;
  font-weight: 600;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__lede {
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  max-width: 640px;
  color: var(--ink-mid);
  line-height: 1.45;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__meta {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(10,10,11,0.12);
  max-width: 720px;
}

.hero__meta-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.hero__meta-item strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.hero__meta-item span {
  font-size: 0.83rem;
  line-height: 1.25;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
[data-reveal="1"] { animation-delay: 0.1s; }
[data-reveal="2"] { animation-delay: 0.25s; }
[data-reveal="3"] { animation-delay: 0.4s; }
[data-reveal="4"] { animation-delay: 0.6s; }
[data-reveal="5"] { animation-delay: 0.8s; }
[data-reveal="6"] { animation-delay: 1.0s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  margin: var(--space-4) -2rem 0;
  padding: 1.2rem 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  transform: rotate(-1.2deg);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: scroll 42s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.marquee__track span { flex-shrink: 0; }
.marquee__dot { color: var(--orange); font-style: normal; }

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SEÇÕES GENÉRICAS
   ============================================ */
.section__head {
  max-width: var(--container);
  margin: 0 auto var(--space-4);
  padding: 0 clamp(1rem, 3vw, 2rem);
  text-align: left;
}

.section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.section__tag--light { color: var(--orange-soft); }

.section__title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  max-width: 1000px;
}

.section__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 620px;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* ============================================
   PILARES
   ============================================ */
.pillars {
  padding: var(--space-5) 0;
  background: var(--paper);
  position: relative;
}

.pillars__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pillar {
  position: relative;
  padding: 2.5rem 2rem 2.2rem;
  background: var(--paper-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10,10,11,0.08);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 40%, rgba(255,90,31,0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(255,90,31,0.3);
  box-shadow: 0 30px 60px -30px rgba(10,10,11,0.15);
}
.pillar:hover::before { opacity: 1; }

.pillar--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.pillar--featured .pillar__num { color: var(--orange); }
.pillar--featured p { color: rgba(255,250,245,0.75); }
.pillar--featured .pillar__tags li {
  background: rgba(255,250,245,0.08);
  border-color: rgba(255,250,245,0.15);
  color: var(--paper);
}

.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.pillar__icon {
  width: 52px; height: 52px;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1;
}

.pillar p {
  color: var(--ink-mid);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 1.8rem;
}

.pillar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pillar__tags li {
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  background: rgba(10,10,11,0.05);
  border: 1px solid rgba(10,10,11,0.08);
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ============================================
   SOBRE / MANIFESTO
   ============================================ */
.about {
  padding: var(--space-5) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 120%;
  background: radial-gradient(circle,
    rgba(255,90,31,0.18) 0%,
    transparent 65%);
  pointer-events: none;
}

.about__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

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

.about__title {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.about__text {
  font-size: 1.1rem;
  color: rgba(255,250,245,0.75);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.about__quote {
  margin-top: 2.5rem;
  padding: 2rem 2rem 2rem 3.5rem;
  background: rgba(255,250,245,0.04);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
}
.about__quote-mark {
  position: absolute;
  top: -0.6rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
  font-weight: 900;
}
.about__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--paper);
}

/* ============================================
   CONTEÚDO / BLOG
   ============================================ */
.content {
  padding: var(--space-5) 0 var(--space-4);
  background: var(--paper);
}

.content__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .content__grid { grid-template-columns: 1fr 1fr; }
  .post--hero { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .content__grid { grid-template-columns: 1fr; }
  .post--hero    { grid-column: auto; }
}

.post {
  padding: 1.8rem 1.7rem;
  background: var(--paper-soft);
  border: 1px solid rgba(10,10,11,0.08);
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.post:hover {
  background: var(--paper);
  transform: translateY(-4px);
  border-color: rgba(255,90,31,0.3);
  box-shadow: 0 24px 50px -24px rgba(10,10,11,0.18);
}

.post--hero {
  grid-row: 1 / span 2;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  padding: 2.5rem 2.2rem;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.post--hero::before {
  content: '';
  position: absolute;
  bottom: -50%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(255,90,31,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.post--hero:hover {
  background: var(--ink);
  border-color: var(--orange);
  box-shadow: 0 30px 60px -30px rgba(255,90,31,0.4);
}

.post__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.8rem;
  background: var(--orange);
  color: var(--ink);
  border-radius: 100px;
}

.post__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.post--hero .post__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
}

.post__excerpt {
  color: rgba(255,250,245,0.7);
  font-size: 0.98rem;
  line-height: 1.55;
}

.post__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-mid);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: auto;
}
.post--hero .post__meta { color: rgba(255,250,245,0.5); }

.post__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.content__cta {
  max-width: var(--container);
  margin: var(--space-4) auto 0;
  padding: 2.5rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(10,10,11,0.1);
}
.content__cta p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  max-width: 560px;
  line-height: 1.35;
}

/* ============================================
   CAPTURA / NEWSLETTER
   ============================================ */
.capture {
  position: relative;
  padding: var(--space-5) 0;
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
}

.capture__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,250,245,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(10,10,11,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.capture__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.capture__inner .section__tag {
  color: var(--ink);
  opacity: 0.6;
}

.capture__title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.3rem;
}

.capture__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  color: var(--ink);
  opacity: 0.8;
  line-height: 1.5;
}

.capture__form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto 1.2rem;
  padding: 0.5rem;
  background: var(--paper);
  border-radius: 100px;
  box-shadow: 0 20px 50px -20px rgba(10,10,11,0.3);
}

.capture__field { flex: 1 1 180px; }

.capture__field input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font: inherit;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.capture__field input::placeholder { color: rgba(10,10,11,0.5); }

.capture__form .btn {
  flex-shrink: 0;
}

.capture__mini {
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

@media (max-width: 560px) {
  .capture__form {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 0.6rem;
  }
  .capture__field input { text-align: center; }
  .capture__form .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-4) 0 2rem;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,250,245,0.1);
}

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

.footer__logo {
  height: 56px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1) sepia(1) hue-rotate(-20deg) saturate(5);
  /* Fallback: se o filtro não funcionar bem, removemos para manter a logo original */
  filter: none;
  background: var(--paper);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  width: fit-content;
}

.footer__brand p {
  color: rgba(255,250,245,0.65);
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 0.94rem;
  color: rgba(255,250,245,0.7);
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--orange); }

.footer__base {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.8rem clamp(1rem, 3vw, 2rem) 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: rgba(255,250,245,0.45);
  letter-spacing: 0.02em;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.wpp {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 60px; height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.5);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wpp:hover {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 20px 40px -10px rgba(37,211,102,0.7);
}

.wpp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wppPulse 2s infinite;
}

@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 560px) {
  .wpp {
    bottom: 1.2rem; right: 1.2rem;
    width: 54px; height: 54px;
  }
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 560px) {
  .hero { padding-top: 7rem; min-height: auto; }
  .hero__meta-item strong { font-size: 1.9rem; }
  .hero__cta .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
