/* ============================================
   BRUNA HELENA MARTINEZ — ADVOCACIA
   Premium black / gold identity
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --charcoal: #1a1a1a;
  --line: rgba(245, 243, 239, 0.1);
  --line-soft: rgba(245, 243, 239, 0.06);

  --ivory: #f5f3ef;
  --ivory-dim: #ccc9c2;

  --gold: #c6a768;
  --gold-bright: #e3c98c;
  --gold-dim: rgba(198, 167, 104, 0.35);

  --text-on-dark: var(--ivory);
  --text-on-dark-dim: #a8a49c;
  --text-on-light: #17140f;
  --text-on-light-dim: #5c574d;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

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

html { scroll-behavior: auto; }

body {
  background: var(--ivory);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

svg { width: 1em; height: 1em; }

[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

section h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

/* ============================================
   LOADER
   ============================================ */

#loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  height: 52px;
  width: auto;
  display: block;
}

.loader-bar {
  width: 160px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.6rem 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  height: 32px;
  color: var(--ivory);
}

.logo-frame {
  display: block;
  height: 32px;
  overflow: hidden;
  transition: width 0.55s var(--ease), opacity 0.4s var(--ease);
}

.logo-frame-mark {
  width: 22px;
  opacity: 1;
}

.logo-frame-word {
  width: 0;
  opacity: 0;
}

.logo:hover .logo-frame-mark,
.logo:focus-visible .logo-frame-mark {
  width: 0;
  opacity: 0;
}

.logo:hover .logo-frame-word,
.logo:focus-visible .logo-frame-word {
  width: 290px;
  opacity: 1;
}

.logo-mark {
  height: 32px;
  width: auto;
  display: block;
}

.logo-wordmark {
  height: 18px;
  width: auto;
  display: block;
  margin-top: 7px;
  object-fit: contain;
  object-position: left center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.85rem;
  color: var(--text-on-dark-dim);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.main-nav a:hover {
  color: var(--ivory);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(198, 167, 104, 0.5);
}

.btn-secondary {
  border-color: rgba(245, 243, 239, 0.28);
  color: var(--ivory);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-ghost {
  color: var(--ivory);
  border: 1px solid var(--line);
  padding: 0.65rem 1.3rem;
  font-size: 0.78rem;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-sm { padding: 0.65rem 1.3rem; }

.btn-glow {
  position: relative;
  box-shadow: 0 0 0 rgba(198, 167, 104, 0);
  animation: glow-pulse 3.2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 18px 0 rgba(198, 167, 104, 0.25); }
  50% { box-shadow: 0 0 34px 6px rgba(198, 167, 104, 0.45); }
}

/* ============================================
   REVEAL ANIMATIONS (base state, JS toggles .is-visible)
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal].is-visible,
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 20%;
}

.hero-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.65) 30%, rgba(10,10,10,0.1) 62%, rgba(10,10,10,0) 78%);
}

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

.hero-content .eyebrow { color: var(--gold); }

.hero-title {
  max-width: 620px;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  color: var(--ivory);
  margin-bottom: 1.75rem;
}

.hero-title span { display: block; }

.hero-title .gold-line {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}

.hero-text {
  max-width: 440px;
  color: var(--text-on-dark-dim);
  font-size: 1.05rem;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-indicators {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}

.hero-indicators li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-on-dark-dim);
  letter-spacing: 0.01em;
}

.hero-indicators [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-on-dark-dim);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue [data-lucide] {
  width: 14px; height: 14px;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============================================
   CREDIBILITY STRIP
   ============================================ */

.credibility {
  position: relative;
  background: var(--black);
  padding: 3.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.credibility-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}

.credibility-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.credibility-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ivory);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.credibility-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.credibility-card [data-lucide] {
  width: 16px; height: 16px;
  color: var(--gold);
}

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

.about {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

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

.about-bg .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 20%;
}

.about-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.55) 46%, rgba(10, 10, 10, 0.94) 80%);
}

.about-badge {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(245, 243, 239, 0.25);
}

.about-badge img {
  height: 19px;
  width: auto;
  display: block;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 9rem 2rem;
}

.about-copy {
  max-width: 520px;
  margin-left: auto;
}

.about-copy .eyebrow {
  color: var(--gold);
}

.about-copy h2 {
  color: var(--ivory);
  margin-bottom: 1.75rem;
}

.about-copy p {
  color: var(--text-on-dark-dim);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-copy strong {
  color: var(--ivory);
  font-weight: 600;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--ivory);
}

.about-list [data-lucide] {
  width: 15px; height: 15px;
  color: var(--gold);
}

/* ============================================
   SECTION HEADING (shared)
   ============================================ */

.section-heading {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-heading h2 {
  color: var(--text-on-light);
}

.credibility ~ * .section-heading h2 { color: inherit; }

/* ============================================
   AREAS
   ============================================ */

.areas {
  padding: 9rem 0;
  background: var(--ivory);
}

.areas-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(23,20,15,0.1);
  border: 1px solid rgba(23,20,15,0.1);
}

.area-card {
  background: var(--ivory);
  padding: 3rem 2.25rem;
  transition: background 0.5s var(--ease);
  position: relative;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.area-card:hover {
  background: var(--black);
}

.area-card:hover::before {
  width: 100%;
}

.area-card:hover h3,
.area-card:hover p { color: var(--ivory); }

.area-card:hover p { color: var(--text-on-dark-dim); }

.area-card:hover [data-lucide] { color: var(--gold-bright); }

.area-card [data-lucide] {
  width: 26px; height: 26px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: color 0.5s var(--ease);
}

.area-card h3 {
  font-size: 1.15rem;
  color: var(--text-on-light);
  margin-bottom: 0.6rem;
  transition: color 0.5s var(--ease);
}

.area-card p {
  font-size: 0.88rem;
  color: var(--text-on-light-dim);
  transition: color 0.5s var(--ease);
}

.area-tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(23, 20, 15, 0.1);
  transition: border-color 0.5s var(--ease);
}

.area-tags li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: var(--text-on-light-dim);
  transition: color 0.5s var(--ease);
}

.area-tags li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.area-card:hover .area-tags {
  border-top-color: rgba(245, 243, 239, 0.14);
}

.area-card:hover .area-tags li {
  color: var(--text-on-dark-dim);
}

/* ============================================
   DIFFERENTIALS
   ============================================ */

.differentials {
  background: var(--black-soft);
  padding: 9rem 0;
}

.differentials .section-heading h2 { color: var(--ivory); }

.differentials-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.differential-card {
  padding: 2.5rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.differential-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
}

.differential-card [data-lucide] {
  width: 24px; height: 24px;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.differential-card h3 {
  font-size: 1.02rem;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.differential-card p {
  font-size: 0.85rem;
  color: var(--text-on-dark-dim);
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline-section {
  position: relative;
  padding: 9rem 0;
  background: var(--ivory);
  overflow: hidden;
}

.timeline-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.timeline-heading {
  position: relative;
  text-align: center;
  margin-bottom: 5.5rem;
}

.timeline-heading h2 { color: var(--text-on-light); }

.timeline {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
}

.timeline li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.timeline-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  z-index: 1;
}

.timeline-label {
  font-size: 0.85rem;
  color: var(--text-on-light);
  max-width: 130px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  position: relative;
  padding: 9rem 0;
  background: var(--black);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
}

.testimonials .section-heading h2 { color: var(--ivory); }

.testimonial-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial-card {
  min-width: 100%;
  padding: 3.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  text-align: center;
}

.quote-icon {
  width: 22px; height: 22px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-name {
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.author-city {
  color: var(--text-on-dark-dim);
  font-size: 0.78rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.testimonial-controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.testimonial-controls button:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
  position: relative;
  padding: 10rem 2rem;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
}

.cta-bg::after {
  content: '';
}

.cta-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-on-dark-dim);
  font-size: 1.05rem;
  margin-bottom: 2.75rem;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 14%, var(--charcoal) 100%);
  padding: 9rem 2rem;
  text-align: center;
}

.faq-content {
  max-width: 640px;
  margin: 0 auto;
}

.faq-content .eyebrow {
  color: var(--gold);
}

.faq-content h2 {
  color: var(--ivory);
  margin-bottom: 2.5rem;
}

.accordion {
  text-align: left;
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ivory);
}

.accordion-trigger [data-lucide] {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.accordion-item.open .accordion-trigger [data-lucide] {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.accordion-panel p {
  padding-bottom: 1.6rem;
  color: var(--text-on-dark-dim);
  font-size: 0.92rem;
}

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

.site-footer {
  position: relative;
  background: var(--black);
  padding: 7rem 2rem 3rem;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.footer-divider {
  display: block;
  width: 100%;
  max-width: 320px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 50%, transparent);
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 90%;
  margin: 1.4rem auto;
  display: block;
}

.footer-oab {
  color: var(--gold);
  margin-top: 0.4rem;
  letter-spacing: 0.03em;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.75rem 0;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ivory);
  font-size: 0.88rem;
  transition: color 0.3s var(--ease);
}

.footer-contact a:hover { color: var(--gold-bright); }

.footer-contact [data-lucide] {
  width: 17px; height: 17px;
  color: var(--gold);
}

.footer-message {
  color: var(--ivory);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

.footer-copy {
  color: #565049;
  font-size: 0.72rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(198,167,104,0.55);
  transition: transform 0.4s var(--ease);
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float.visible {
  opacity: 1;
  pointer-events: auto;
}

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

.whatsapp-float [data-lucide] { width: 24px; height: 24px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about {
    min-height: 620px;
    align-items: flex-end;
  }

  .about-bg-gradient {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.72) 55%, rgba(10, 10, 10, 0.94) 100%);
  }

  .about-content { padding: 5rem 2rem; }

  .about-copy { max-width: 100%; margin-left: 0; }

  .faq { padding: 6rem 2rem; }

  .differentials-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline { grid-template-columns: repeat(5, 1fr); }
  .timeline-label { font-size: 0.75rem; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--black-soft);
    border-left: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav a { font-size: 1.05rem; color: var(--ivory); }

  .nav-toggle { display: flex; z-index: 101; }

  .nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }
  .hero-media {
    width: 100%;
    opacity: 1;
  }
  .hero-media img { object-position: 76% center; }
  .hero-media-gradient {
    background: linear-gradient(180deg, rgba(10,10,10,0) 38%, rgba(10,10,10,0.85) 62%, var(--black) 82%);
  }
  .hero-content { padding: 0 1.5rem 3.5rem; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.2rem); margin-bottom: 1.25rem; }
  .hero-text { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-indicators { margin-bottom: 0; }
  .hero-actions { flex-direction: column; margin-bottom: 2rem; }
  .hero-actions .btn { width: 100%; }

  .credibility-inner { flex-direction: column; align-items: stretch; }

  .areas-grid { grid-template-columns: 1fr; }
  .differentials-grid { grid-template-columns: 1fr; }

  .timeline { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline::before { display: none; }

  .about-list { grid-template-columns: 1fr; }

  .cta-final { padding: 6rem 1.5rem; }

  .footer-contact { flex-direction: column; gap: 1.2rem; }

  .about { min-height: 640px; }
  .about-bg .about-photo { object-position: 12% 12%; }
  .about-bg-gradient {
    background: linear-gradient(180deg, rgba(10,10,10,0) 32%, rgba(10,10,10,0.88) 58%, var(--black) 80%);
  }
  .about-badge { display: none; }
  .about-content { padding: 2rem 1.5rem 5rem; }
  .about-copy { max-width: 100%; margin-left: 0; }
  .about-copy .eyebrow,
  .about-copy h2,
  .about-copy p { display: none; }
  .about-list { grid-template-columns: 1fr; margin-top: 0; padding-top: 0; border-top: none; gap: 0.9rem; }
}
