/* ============================================================
   Marcos Vilela Advocacia — Elegância Contemporânea Escura
   Navy #0c1829 · Dourado #d4af37 · Creme #f5f0e8
   ============================================================ */

:root {
  --navy-1: #0a1525;
  --navy-2: #0c1829;
  --navy-3: #070e1a;
  --gold: #d4af37;
  --gold-light: #e5c44a;
  --cream: #f5f0e8;
  --whatsapp: #25d366;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy-2);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; }

.gold { color: var(--gold); }

.bg-navy-1 { background: var(--navy-1); }
.bg-navy-2 { background: var(--navy-2); }

.section { padding: 6rem 0; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Gold divider ── */
.gold-divider { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 0.5rem 0; }
.gold-divider span { height: 1px; width: 4rem; background: linear-gradient(to right, transparent, var(--gold)); }
.gold-divider span:last-child { background: linear-gradient(to left, transparent, var(--gold)); }
.gold-divider i { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 2rem; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy-1); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--navy-1); }
.btn-ghost { border: 1px solid rgba(245, 240, 232, 0.3); color: var(--cream); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25); }
.btn-whatsapp:hover { background: #20bd5a; }

/* ══════════ HEADER ══════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: background 0.5s ease, box-shadow 0.5s ease;
}
#header.scrolled { background: rgba(10, 21, 37, 0.95); backdrop-filter: blur(10px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 0.85rem; padding-bottom: 0.85rem; }

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-logo { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.brand-text { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--cream); line-height: 1.1; display: flex; flex-direction: column; }
.brand-text em { font-style: normal; font-family: var(--font-body); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }

.nav-desktop { display: none; align-items: center; gap: 1.8rem; }
.nav-desktop a:not(.btn) {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8); text-decoration: none; transition: color 0.3s;
}
.nav-desktop a:not(.btn):hover { color: var(--gold); }
.nav-desktop .btn { padding: 0.65rem 1.3rem; }

.menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 0.5rem; cursor: pointer; }
.menu-toggle span { width: 26px; height: 2px; background: var(--cream); transition: all 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 0.25rem; padding: 1.25rem;
  background: rgba(10, 21, 37, 0.98); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.nav-mobile.open { display: flex; }
.nav-mobile a:not(.btn) {
  padding: 0.7rem 0; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245, 240, 232, 0.8); text-decoration: none;
}
.nav-mobile a:not(.btn):hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 0.75rem; }

@media (min-width: 992px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* ══════════ HERO ══════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10, 21, 37, 0.85), rgba(10, 21, 37, 0.7) 50%, var(--navy-2));
}
.hero-content { position: relative; z-index: 2; text-align: center; padding-top: 6rem; padding-bottom: 4rem; }
.hero-logo { height: 110px; width: 110px; border-radius: 50%; margin: 0 auto 2rem; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35), 0 16px 48px rgba(0, 0, 0, 0.5); }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--cream); margin-top: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { max-width: 40rem; margin: 1.5rem auto 0; font-size: clamp(1rem, 2.2vw, 1.25rem); color: rgba(245, 240, 232, 0.7); }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

.hero-stats { margin: 4rem auto 0; max-width: 56rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat strong { display: block; font-family: var(--font-heading); font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 700; color: var(--gold); }
.stat span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245, 240, 232, 0.6); }
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(212, 175, 55, 0.5); font-size: 1.75rem; z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ══════════ SECTION HEADS ══════════ */
.section-head { text-align: center; margin-bottom: 4rem; }
.eyebrow { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--cream); margin-bottom: 0.5rem; }

/* ══════════ SOBRE ══════════ */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { position: relative; }
.about-img img {
  width: 100%; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.25); display: block;
}
.about-text p { font-size: 1.05rem; color: rgba(245, 240, 232, 0.8); margin-bottom: 1.4rem; }
.about-text strong { color: var(--cream); }
.about-text strong.gold { color: var(--gold); }
.about-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.75rem; padding-top: 0.5rem; }
@media (min-width: 576px) { .about-list { grid-template-columns: 1fr 1fr; } }
.about-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: rgba(245, 240, 232, 0.7); }
.about-list li::before { content: "◆"; color: var(--gold); font-size: 0.7rem; }

/* ══════════ ÁREAS ══════════ */
.area-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.area-tab {
  padding: 0.85rem 1.4rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  background: transparent; border: 1px solid rgba(212, 175, 55, 0.3); color: rgba(245, 240, 232, 0.7);
  transition: all 0.3s;
}
.area-tab:hover { border-color: var(--gold); color: var(--gold); }
.area-tab.active { background: var(--gold); border-color: var(--gold); color: var(--navy-1); font-weight: 700; }

.area-panel { display: none; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.area-panel.active { display: grid; }
@media (min-width: 992px) { .area-panel { grid-template-columns: 1fr 1fr; } }

.area-img { position: relative; height: 18rem; overflow: hidden; }
@media (min-width: 768px) { .area-img { height: 24rem; } }
.area-img img { width: 100%; height: 100%; object-fit: cover; }
.area-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--navy-1), transparent 60%); }
.area-img h3 { position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2; font-size: 1.9rem; color: var(--cream); }

.area-info > p { font-size: 1.05rem; color: rgba(245, 240, 232, 0.8); margin-bottom: 2rem; }
.area-items { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.65rem; margin-bottom: 2rem; }
@media (min-width: 576px) { .area-items { grid-template-columns: 1fr 1fr; } }
.area-items li {
  display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1rem;
  background: rgba(12, 24, 41, 0.8); border-left: 2px solid rgba(212, 175, 55, 0.4);
  font-size: 0.87rem; color: rgba(245, 240, 232, 0.8); transition: border-color 0.3s;
}
.area-items li:hover { border-left-color: var(--gold); }
.area-items li::before { content: "◆"; color: var(--gold); font-size: 0.6rem; }

.areas-subtitle {
  text-align: center; font-size: clamp(1.3rem, 2.8vw, 1.8rem); color: var(--gold);
  margin-bottom: 1.75rem; letter-spacing: 0.04em;
}
.areas-subtitle-2 { margin-top: 4rem; }

.consult-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .consult-grid { grid-template-columns: repeat(3, 1fr); } }
.consult-card {
  padding: 2rem 1.75rem; background: var(--navy-2);
  border: 1px solid rgba(212, 175, 55, 0.12); border-top: 3px solid rgba(212, 175, 55, 0.5);
  transition: border-color 0.4s, transform 0.4s;
}
.consult-card:hover { border-color: rgba(212, 175, 55, 0.45); transform: translateY(-4px); }
.consult-card h4 { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 600; color: var(--cream); margin-bottom: 1.1rem; }
.consult-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.consult-card li { display: flex; align-items: baseline; gap: 0.6rem; font-size: 0.85rem; color: rgba(245, 240, 232, 0.7); }
.consult-card li::before { content: "◆"; color: var(--gold); font-size: 0.55rem; }

/* ══════════ EQUIPE ══════════ */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-grid .team-card:nth-child(n+4) { justify-self: stretch; }

.team-card {
  background: var(--navy-1); border: 1px solid rgba(212, 175, 55, 0.1);
  transition: border-color 0.5s, transform 0.5s; overflow: hidden;
}
.team-card:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateY(-4px); }

.team-photo { position: relative; height: 22rem; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.7s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--navy-1), rgba(10, 21, 37, 0.25) 40%, transparent); }

.team-monogram { display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 35%, #14273f, var(--navy-1)); }
.team-monogram span {
  font-family: var(--font-heading); font-size: 5.5rem; font-weight: 600; color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35); padding: 1.5rem 2.2rem;
}

.team-info { position: relative; padding: 1.5rem; margin-top: -3.5rem; z-index: 2; }
.team-oab { color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.25rem; }
.team-info h3 { font-size: 1.6rem; color: var(--cream); margin-bottom: 0.2rem; }
.team-role { color: rgba(212, 175, 55, 0.8); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.8rem; }
.team-desc { color: rgba(245, 240, 232, 0.6); font-size: 0.88rem; }

/* ══════════ PRÊMIOS ══════════ */
.section-sub { max-width: 44rem; margin: 1.25rem auto 0; color: rgba(245, 240, 232, 0.65); font-size: 1rem; }
.section-sub strong.gold { color: var(--gold); }

.awards-head { text-align: left; margin-bottom: 2rem; }
.awards-head h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }

.awards-stats { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .awards-stats { grid-template-columns: repeat(3, 1fr); } }
.awards-stat {
  padding: 1.25rem 1.5rem; border: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.07), transparent 55%);
}
.awards-stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1.1; }
.awards-stat span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245, 240, 232, 0.6); }

.awards-list { list-style: none; border-top: 1px solid rgba(212, 175, 55, 0.15); }
.awards-list li {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 0.95rem 0.5rem; border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: background 0.3s;
}
.awards-list li:hover { background: rgba(212, 175, 55, 0.04); }
.award-year { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--gold); min-width: 3.4rem; }
.award-title { flex: 1; font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.award-source { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(212, 175, 55, 0.65); text-align: right; }
@media (max-width: 575px) {
  .awards-list li { flex-wrap: wrap; gap: 0.35rem 1rem; }
  .award-title { flex-basis: calc(100% - 4.4rem); }
  .award-source { margin-left: 4.4rem; text-align: left; }
}

.awards-note {
  margin-top: 1.75rem; padding-left: 1rem; border-left: 3px solid var(--gold);
  font-size: 0.9rem; color: rgba(245, 240, 232, 0.55);
}

/* ══════════ NA MÍDIA / NOTORIEDADE ══════════ */
.notoriety {
  max-width: 46rem; margin: 0 auto; padding: 2.5rem 2rem;
  background: var(--navy-1); border: 1px solid rgba(212, 175, 55, 0.12);
  border-left: 3px solid rgba(212, 175, 55, 0.5); text-align: center;
}
.notoriety p { font-size: 1.08rem; line-height: 1.8; color: rgba(245, 240, 232, 0.75); }
.notoriety p + p { margin-top: 1.25rem; }
.notoriety strong { color: var(--cream); }
.notoriety strong.gold { color: var(--gold); }

/* ══════════ DEPOIMENTOS ══════════ */
.rating-line { margin-top: 1rem; color: var(--gold); font-size: 1.05rem; letter-spacing: 0.05em; }
.rating-line strong { color: var(--cream); margin-left: 0.4rem; }

.testimonial-wrap { max-width: 46rem; margin: 0 auto; }
.testimonial-card {
  background: var(--navy-1); border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem 2rem; text-align: center; transition: opacity 0.4s;
}
@media (min-width: 768px) { .testimonial-card { padding: 3rem; } }
.testimonial-card.fading { opacity: 0; }
.testimonial-card .stars { color: var(--gold); letter-spacing: 0.3em; margin-bottom: 1.5rem; }
.testimonial-card p { font-family: var(--font-heading); font-style: italic; font-size: 1.25rem; color: rgba(245, 240, 232, 0.8); margin-bottom: 2rem; }
.testimonial-card hr { border: none; height: 1px; width: 4rem; background: rgba(212, 175, 55, 0.3); margin: 0 auto 1rem; }
.testimonial-card cite { font-style: normal; color: var(--gold); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.85rem; }

.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonial-nav button {
  width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(212, 175, 55, 0.3); color: rgba(245, 240, 232, 0.6);
  font-size: 1.2rem; cursor: pointer; transition: all 0.3s;
}
.testimonial-nav button:hover { background: var(--gold); color: var(--navy-1); border-color: var(--gold); }
.t-dots { display: flex; gap: 0.5rem; }
.t-dots button {
  width: 8px; height: 8px; min-width: 8px; padding: 0; border: none; border-radius: 50%;
  background: rgba(245, 240, 232, 0.2); cursor: pointer; transition: all 0.3s;
}
.t-dots button.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ══════════ CTA ══════════ */
.cta { position: relative; padding: 6rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(10, 21, 37, 0.9); }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--cream); margin-bottom: 1.5rem; }
.cta h2 em { font-style: normal; color: var(--gold); }
.cta p { max-width: 40rem; margin: 0 auto 2.5rem; font-size: 1.05rem; color: rgba(245, 240, 232, 0.7); }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

/* ══════════ CONTATO ══════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  display: block; padding: 2.5rem 1.75rem; text-align: center; text-decoration: none;
  background: var(--navy-2); border: 1px solid rgba(212, 175, 55, 0.1); transition: border-color 0.5s;
}
.contact-card:hover { border-color: rgba(212, 175, 55, 0.4); }
.contact-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3); color: var(--gold); font-size: 1.6rem;
}
.contact-card h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 0.6rem; }
.contact-card p { font-size: 0.88rem; color: rgba(245, 240, 232, 0.6); }
.contact-card p.gold { color: var(--gold); }
.contact-note { margin-top: 0.6rem; font-size: 0.75rem !important; color: rgba(245, 240, 232, 0.5) !important; }

.map-wrap { margin: 3rem auto 0; max-width: 64rem; border: 1px solid rgba(212, 175, 55, 0.15); overflow: hidden; }
.map-wrap iframe { display: block; filter: grayscale(0.2); }

/* ══════════ FOOTER ══════════ */
footer { background: var(--navy-3); border-top: 1px solid rgba(212, 175, 55, 0.1); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { margin-bottom: 1rem; }
.footer-desc { font-size: 0.85rem; color: rgba(245, 240, 232, 0.5); margin-bottom: 1rem; }
.footer-addr { font-size: 0.78rem; color: rgba(245, 240, 232, 0.4); }
footer h4 { font-family: var(--font-body); color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.85rem; color: rgba(245, 240, 232, 0.5); text-decoration: none; transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3); color: rgba(245, 240, 232, 0.6); transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-1); border-color: var(--gold); }
.footer-phones { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-phones a { font-size: 0.85rem; color: rgba(245, 240, 232, 0.5); text-decoration: none; transition: color 0.3s; }
.footer-phones a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.72rem; color: rgba(245, 240, 232, 0.3); }

/* ══════════ WHATSAPP FLOAT ══════════ */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 4rem; height: 4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--whatsapp); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pop-in 0.5s ease-out 2s both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--whatsapp); opacity: 0.25; animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pop-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes ping { 75%, 100% { transform: scale(1.7); opacity: 0; } }
