/* =========================================================
   OOHRIOPRETO.COM.BR — Mega Painéis Digitais em SJRP
   Multicolor Painéis · Identidade editorial premium
   ========================================================= */

:root {
  --purple-deep:    #2A0F4F;
  --purple-primary: #5B2D8E;
  --purple-mid:     #7A3FB5;
  --purple-accent:  #9B59B6;
  --lavender:       #C8A8F0;
  --lavender-soft:  #E8DFF5;
  --cream:          #FAF7F2;
  --paper:          #FFFFFF;
  --ink:            #15082B;
  --ink-muted:      #5A4870;
  --gold:           #E8C547;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --max-w: 1320px;
  --pad-x: clamp(20px, 5vw, 64px);
}

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

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

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

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--purple-accent); color: white; }

/* ============ TYPOGRAPHY ============ */

.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 24px 0 32px;
}

h2.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--purple-primary);
}

/* ============ LAYOUT HELPERS ============ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { padding: clamp(80px, 12vh, 140px) 0; position: relative; }

.bg-dark { background: var(--purple-deep); color: var(--cream); }
.bg-dark .section-title { color: var(--cream); }
.bg-dark .eyebrow { color: var(--lavender); }

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 242, 0);
  backdrop-filter: blur(0);
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px var(--pad-x);
  border-bottom: 1px solid rgba(91, 45, 142, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  transition: color .3s ease;
  letter-spacing: -0.02em;
}

.nav.scrolled .nav-logo { color: var(--ink); }

.nav-logo img { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity .2s ease, color .3s ease;
}

.nav.scrolled .nav-links a { color: var(--ink); opacity: 0.7; }
.nav-links a:hover { opacity: 1; color: var(--purple-accent); }

.nav-cta {
  background: var(--purple-accent);
  color: white !important;
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  opacity: 1 !important;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover { background: var(--purple-primary); transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--cream);
}

.nav.scrolled .nav-mobile-toggle { color: var(--ink); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 24px var(--pad-x);
    gap: 20px;
    border-bottom: 1px solid var(--lavender-soft);
  }
  .nav-links.open a { color: var(--ink); }
  .nav-links.open .nav-cta { color: white !important; align-self: flex-start; }
}

/* ============ HERO ============ */

.hero {
  min-height: 100vh;
  position: relative;
  background: var(--purple-deep);
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(1.1);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42,15,79,0.55) 0%,
    rgba(42,15,79,0.3) 40%,
    rgba(42,15,79,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  color: white;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .8s .2s ease forwards;
}

.hero-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--lavender);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 124px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp .9s .35s ease forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--lavender);
  display: inline-block;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  max-width: 52ch;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s .55s ease forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s .75s ease forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 30px -10px rgba(232, 197, 71, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(232, 197, 71, 0.65);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}

.hero-meta {
  position: absolute;
  bottom: 32px; right: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 2;
}

.hero-meta-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ STATS STRIP ============ */

.stats {
  background: var(--purple-deep);
  color: white;
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px; top: 10%;
  width: 1px; height: 80%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lavender);
  margin-bottom: 8px;
}

.stat-value sup {
  font-size: 0.45em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--gold);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .stat:nth-child(2)::after { display: none; }
  .stat:not(:last-child)::after { right: -12px; }
}

/* ============ ABOUT ============ */

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--ink);
}

.about-text p strong { color: var(--purple-primary); font-weight: 600; }

.about-pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pillar {
  padding: 20px 0;
  border-top: 1px solid var(--lavender-soft);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--purple-accent);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.pillar-label {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.4;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(42, 15, 79, 0.4);
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(42, 15, 79, 0.85);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-image-badge svg { width: 14px; height: 14px; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { aspect-ratio: 5/4; }
}

/* ============ PAINEIS (PORTFOLIO) ============ */

.paineis {
  background: var(--paper);
  position: relative;
}

.paineis-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.paineis-intro-text {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 48ch;
}

@media (max-width: 880px) {
  .paineis-intro { grid-template-columns: 1fr; gap: 24px; }
}

.painel-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 8px;
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
}

.painel-card:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.painel-card:nth-child(even) .painel-media { order: 2; }

.painel-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.painel-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.painel-card:hover .painel-media img { transform: scale(1.04); }

.painel-tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
}

.painel-tag.tag-mega { background: var(--purple-accent); color: white; }
.painel-tag.tag-empena { background: var(--ink); color: var(--cream); }

.painel-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.painel-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-accent);
  margin-bottom: 16px;
}

.painel-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.painel-address {
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 28px;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.painel-address svg {
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--purple-accent);
}

.painel-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  padding: 24px 0;
  border-top: 1px solid var(--lavender-soft);
  border-bottom: 1px solid var(--lavender-soft);
  margin-bottom: 24px;
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--purple-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.spec-value small { font-size: 13px; font-weight: 500; color: var(--ink-muted); letter-spacing: 0; }

.painel-classes {
  display: flex;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
}

.class-pill {
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--lavender-soft);
  color: var(--purple-deep);
  font-weight: 600;
}

@media (max-width: 880px) {
  .painel-card,
  .painel-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .painel-card:nth-child(even) .painel-media { order: 0; }
  .painel-specs { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SUSTENTABILIDADE ============ */

.sustain {
  background: var(--purple-deep);
  color: white;
  position: relative;
  overflow: hidden;
}

.sustain::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,89,182,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sustain-text .section-title { color: white; }
.sustain-text .section-title em { color: var(--gold); }

.sustain-text p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}

.sustain-points {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.sustain-point {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}

.sustain-point-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(232, 197, 71, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.sustain-point-text strong {
  display: block;
  color: white;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}

.sustain-point-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.sustain-image {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}

.sustain-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 880px) {
  .sustain-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============ CLIENTES ============ */

.clientes {
  background: var(--paper);
  padding: 100px 0;
  text-align: center;
}

.clientes-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.clientes-subtitle {
  color: var(--ink-muted);
  margin-bottom: 56px;
  font-size: 16px;
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.cliente-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: -0.01em;
  padding: 32px 12px;
  border: 1px solid var(--lavender-soft);
  border-radius: 4px;
  transition: all .25s ease;
}

.cliente-name:hover {
  border-color: var(--purple-accent);
  color: var(--purple-primary);
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .clientes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============ CTA + CONTATO ============ */

.cta-final {
  background: linear-gradient(180deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  left: -150px; bottom: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,197,71,0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.cta-text .section-title { color: white; max-width: 14ch; }
.cta-text .section-title em { color: var(--gold); }

.cta-text > p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 42ch;
}

.cta-contacts {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.cta-contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cta-contact strong { color: white; font-weight: 600; }
.cta-contact span { display: block; font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 400; }

/* Formulário */
.form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 44px);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: white;
}

.form-card > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-size: 14px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: white;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background .2s ease, transform .2s ease;
  margin-top: 8px;
}

.form-submit:hover { background: #FFD757; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}

.form-status.success { display: block; background: rgba(46, 204, 113, 0.15); color: #6FE5A0; border: 1px solid rgba(46, 204, 113, 0.3); }
.form-status.error   { display: block; background: rgba(231, 76, 60, 0.15); color: #FF8B7B; border: 1px solid rgba(231, 76, 60, 0.3); }

@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 28px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 18px;
  opacity: 0.95;
}

.footer-brand p {
  max-width: 36ch;
  line-height: 1.55;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--lavender); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ FLOATING WHATSAPP ============ */

.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5);
  z-index: 50;
  transition: transform .25s ease;
}

.fab-whatsapp:hover { transform: scale(1.08); }

.fab-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: fabPulse 2s infinite;
  z-index: -1;
}

@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ REVEAL ON SCROLL ============ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ COOKIES NOTICE (mínimo viável) ============ */

/* ============ PRINT ============ */
@media print {
  .nav, .fab-whatsapp { display: none; }
}
