/* ===================================
   VASCONCELOS & MARTINS — PREMIUM CSS
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg-deep:       #080C14;
  --bg-main:       #0B0F17;
  --bg-card:       #111827;
  --bg-elevated:   #141C2B;
  --gold:          #C8A45D;
  --gold-light:    #D9BC80;
  --gold-dim:      #A8843D;
  --gold-glow:     rgba(200, 164, 93, 0.15);
  --gold-glow-md:  rgba(200, 164, 93, 0.25);
  --gold-glow-lg:  rgba(200, 164, 93, 0.4);
  --text-primary:  #E5E7EB;
  --text-secondary:#9CA3AF;
  --text-muted:    #6B7280;
  --border:        #1F2937;
  --border-gold:   rgba(200, 164, 93, 0.3);
  --shadow-gold:   0 0 60px rgba(200, 164, 93, 0.15);
  --ff-display:    'Playfair Display', Georgia, serif;
  --ff-serif:      'Cormorant Garamond', Georgia, serif;
  --ff-body:       'Inter', system-ui, sans-serif;
  --transition:    cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 400; line-height: 1.2; }
.serif-italic { font-family: var(--ff-serif); font-style: italic; font-weight: 300; }

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

.section-label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--transition), box-shadow 0.5s var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-deep) !important;
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 0 24px var(--gold-glow-md) !important;
  color: var(--bg-deep) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px clamp(24px, 5vw, 80px) 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200, 164, 93, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200, 164, 93, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0B0F17 0%, #080C14 50%, #0D111A 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 164, 93, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 164, 93, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 164, 93, 0.05);
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeInUp 0.8s var(--transition) both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.1s var(--transition) both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.2s var(--transition) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s var(--transition) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 40px var(--gold-glow-md), 0 0 0 1px var(--gold);
  transform: translateY(-1px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text-secondary);
  transition: background 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { background: var(--gold); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s 0.4s var(--transition) both;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── HERO RIGHT (IMAGE) ── */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s 0.2s var(--transition) both;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.hero-image-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(235, 232, 226, 0.2), transparent 70%);
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 20, 0.5) 0%, transparent 50%);
}

.hero-image-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 16px 20px;
  border-radius: 4px;
  z-index: 3;
  backdrop-filter: blur(10px);
}
.hero-image-tag-line1 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-image-tag-line2 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.hero-image-corner {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 48px;
  height: 48px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.6;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s 0.8s both;
}
.scroll-indicator-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTIONS COMMON ── */
.section-pad {
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 80px);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SOBRE ── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-image-wrap {
  position: relative;
}
.sobre-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.sobre-image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) sepia(0.1);
  transition: filter 0.5s;
}
.sobre-image-frame:hover img { filter: brightness(0.9) sepia(0.05); }

.sobre-image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.5;
}
.sobre-image-quote {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 12px 16px;
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.sobre-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.sobre-text .lead {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.sobre-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.sobre-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 2rem 0;
}

.sobre-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-elevated);
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover {
  border-color: var(--border-gold);
  background: rgba(200, 164, 93, 0.04);
}
.pillar-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.pillar-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.pillar-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── ÁREAS ── */
.areas-section { background: var(--bg-deep); }

.areas-header {
  text-align: center;
  margin-bottom: 60px;
}
.areas-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}
.areas-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.area-card {
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.area-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at 0% 0%, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.area-card:hover { background: var(--bg-elevated); }
.area-card:hover::before { transform: scaleX(1); }
.area-card:hover::after { opacity: 1; }

.area-number {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.area-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--gold);
  background: rgba(200, 164, 93, 0.06);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.area-card:hover .area-icon {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.area-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.area-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.area-tag {
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.area-card:hover .area-tag {
  border-color: rgba(200, 164, 93, 0.25);
  color: var(--gold);
}

/* ── DIFERENCIAIS ── */
.diferenciais-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}
.diferenciais-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.diferenciais-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.9;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.diferencial-card {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.diferencial-card:hover { background: var(--bg-elevated); }

.diferencial-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
}
.diferencial-card:hover .diferencial-glow { transform: scaleX(1); }

.diferencial-num {
  font-size: 2.8rem;
  font-family: var(--ff-display);
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  font-weight: 700;
}

.diferencial-icon {
  color: var(--gold);
  width: 28px;
  height: 28px;
}

.diferencial-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.diferencial-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── DEPOIMENTOS ── */
.depoimentos-section { background: var(--bg-deep); }

.depoimentos-header { text-align: center; margin-bottom: 60px; }
.depoimentos-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.depoimento-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.depoimento-quote {
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 16px;
}

.depoimento-text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}

.depoimento-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.depoimento-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.depoimento-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── AUTORIDADE / NÚMEROS ── */
.autoridade-section {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-main) 100%);
  position: relative;
  overflow: hidden;
}
.autoridade-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.06), transparent 70%);
}

.autoridade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.autoridade-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.number-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.number-big {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.number-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.number-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 4px 0;
}

.autoridade-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}
.autoridade-text .lead {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.autoridade-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.9;
}

/* ── CONTATO ── */
.contato-section { background: var(--bg-deep); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contato-info h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.contato-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contato-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--gold);
  flex-shrink: 0;
}
.contato-item-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}
.contato-item-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ── FORM ── */
.contato-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input, .form-textarea, .form-select {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: var(--bg-card); }

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px var(--gold-glow-md);
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 60px clamp(24px, 5vw, 80px) 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: var(--ff-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.83rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── WHATSAPP BTN ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #128C7E;
  color: #fff;
  border-radius: 50px;
  padding: 14px 24px 14px 16px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  transition: all 0.3s;
  overflow: hidden;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.whatsapp-float:hover {
  background: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(18, 140, 126, 0.4);
}
.whatsapp-float:hover::before { opacity: 1; }
.whatsapp-float svg { flex-shrink: 0; }

.whatsapp-pulse {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 12px;
  height: 12px;
  background: #25D366;
  border-radius: 50%;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 0 0 12px transparent; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* ── SUCCESS MESSAGE ── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.active { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* ── MOBILE NAV ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "text";
    gap: 40px;
  }
  .hero-left { grid-area: text; }
  .hero-right {
    grid-area: image;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .hero-image-wrap { max-width: 100%; }
  .hero-title { font-size: 2.8rem; }
  .sobre-grid { grid-template-columns: 1fr;grid-template-areas: "text" "image"; }
  .sobre-text { grid-area: text; }
  .sobre-image-wrap {grid-area: image;display: block;max-width: 320px;margin: 0 auto;}
  .sobre-image-wrap {display: block;max-width: 320px;margin: 0 auto;}
  .diferenciais-header { grid-template-columns: 1fr; gap: 24px; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .autoridade-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .areas-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .contato-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .autoridade-numbers { grid-template-columns: 1fr 1fr; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }

  /* ── HERO IMAGE PNG MOBILE ── */
.hero {
  padding-left: 0;
  padding-right: 0;
}
.hero-inner {
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.hero-left {
  padding: 0 24px;
}
.hero-right {
  width: 100%;
  padding: 0;
}
.hero-image-wrap {
  width: 100%;
  max-width: 100%;
}
.hero-image-frame {
  overflow: visible;
  background: transparent;
  width: 100%;
}
.hero-image-frame::after {
  display: none;
}
.hero-image-frame img {
  aspect-ratio: unset;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  filter: none;
}
.hero-image-glow {
  display: none;
}
}