/* =============================================================
   D&V Advogados — Custom Stylesheet
   Mobile-first | Brand: #0c131d #1c2c44 #ac8249 #e8c887 #4b3c25
   Typography: EB Garamond (serif headings) + Lato (sans body)
   Style: Trust & Authority — UI/UX Pro Max recommendation
   ============================================================= */

/* ─── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 2px solid #ac8249;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Selection ──────────────────────────────────────────────── */
::selection {
  background: rgba(172, 130, 73, 0.3);
  color: #e8c887;
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0c131d; }
::-webkit-scrollbar-thumb {
  background: #ac8249;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
#header {
  background: transparent;
}

#header.scrolled {
  background: rgba(12, 19, 29, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(172, 130, 73, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

/* ─── Header typographic logo ────────────────────────────────── */
.header-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  gap: 0;
  transition: opacity 0.25s;
}
.header-logo-link:hover {
  opacity: 0.85;
}

.header-logo-dv {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
@media (min-width: 768px) {
  .header-logo-dv { font-size: 2rem; }
}

.header-logo-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ac8249 30%, #e8c887 50%, #ac8249 70%, transparent);
  margin: 3px 0;
}

.header-logo-sub {
  font-size: 0.45rem;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
  line-height: 1;
  margin: 0;
}
@media (min-width: 768px) {
  .header-logo-sub { font-size: 0.5rem; }
}

/* ─── Desktop Nav ────────────────────────────────────────────── */
.nav-link {
  position: relative;
  color: rgba(232, 200, 135, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #ac8249, #e8c887);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #e8c887;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ─── Hamburger ──────────────────────────────────────────────── */
.menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8c887;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#menu-btn.open .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#menu-btn.open .menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#menu-btn.open .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
  background: rgba(10, 16, 24, 0.99);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(172, 130, 73, 0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  max-height: 480px;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0.75rem;
  color: rgba(232, 200, 135, 0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-link:hover {
  color: #e8c887;
  background: rgba(172, 130, 73, 0.08);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ac8249 0%, #c9973d 50%, #ac8249 100%);
  background-size: 200% auto;
  color: #0c131d;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-position 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(172, 130, 73, 0.45);
}
.btn-gold:active {
  transform: translateY(0);
}
.btn-gold:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #e8c887;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(232, 200, 135, 0.35);
  border-radius: 0.375rem;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.btn-outline:hover {
  border-color: #e8c887;
  background: rgba(232, 200, 135, 0.07);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   REUSABLE ATOMS
   ═══════════════════════════════════════════════════════════════ */

/* Gold divider line */
.gold-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ac8249 30%, #e8c887 50%, #ac8249 70%, transparent);
  border-radius: 999px;
}

/* Section badge */
.section-badge {
  display: inline-block;
  color: #ac8249;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

/* Section heading */
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

/* Top decorative accent line */
.top-accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(172, 130, 73, 0.8), transparent);
}

/* ─── Reveal on scroll ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  background-color: #0c131d;
  min-height: 100svh;
}

.hero-bg-gradient {
  background: radial-gradient(
    ellipse 80% 70% at 50% 0%,
    rgba(28, 44, 68, 0.85) 0%,
    rgba(12, 19, 29, 1) 65%
  );
}

.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(172, 130, 73, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(172, 130, 73, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-vignette {
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(12, 19, 29, 0.6) 100%
  );
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -120px;
  background: radial-gradient(circle, rgba(172, 130, 73, 0.08) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -60px;
  right: -80px;
  background: radial-gradient(circle, rgba(28, 44, 68, 0.5) 0%, transparent 70%);
}

/* Hero logo */
.hero-logo-wrapper {
  animation: fadeDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-logo {
  filter: drop-shadow(0 0 30px rgba(172, 130, 73, 0.35))
          drop-shadow(0 0 80px rgba(172, 130, 73, 0.12));
  transition: filter 0.4s ease;
}
.hero-logo:hover {
  filter: drop-shadow(0 0 40px rgba(232, 200, 135, 0.55))
          drop-shadow(0 0 100px rgba(172, 130, 73, 0.2));
}

/* Hero typographic logo */
.hero-logotype {
  font-size: clamp(5rem, 18vw, 9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 60px rgba(172, 130, 73, 0.15);
}

/* Hero text animations */
.hero-logo-wrapper { animation: fadeDown 0.9s 0.05s cubic-bezier(0.16,1,0.3,1) both; }
.hero-title        { animation: fadeUp  0.8s 0.3s  cubic-bezier(0.16,1,0.3,1) both; }
.hero-subtitle     { animation: fadeUp  0.8s 0.45s cubic-bezier(0.16,1,0.3,1) both; }
.hero-text         { animation: fadeUp  0.8s 0.58s cubic-bezier(0.16,1,0.3,1) both; }
.hero-ctas         { animation: fadeUp  0.8s 0.72s cubic-bezier(0.16,1,0.3,1) both; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ac8249;
  font-size: 1.125rem;
  animation: bounce 2.2s ease-in-out infinite;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.scroll-cue:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   STAT CARDS
   ═══════════════════════════════════════════════════════════════ */
.stat-card {
  background: rgba(12, 19, 29, 0.55);
  border: 1px solid rgba(172, 130, 73, 0.18);
  border-radius: 0.875rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  border-color: rgba(172, 130, 73, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #ac8249;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(232, 200, 135, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   AREA CARDS
   ═══════════════════════════════════════════════════════════════ */
.area-card {
  background: #1c2c44;
  border: 1px solid rgba(172, 130, 73, 0.12);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.area-card:hover {
  border-color: rgba(172, 130, 73, 0.4);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  transform: translateY(-5px);
}

.area-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.area-icon-wrap {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(172,130,73,0.2), rgba(172,130,73,0.05));
  border: 1px solid rgba(172, 130, 73, 0.25);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ac8249;
  font-size: 1.2rem;
  transition: background 0.3s, border-color 0.3s;
}
.area-card:hover .area-icon-wrap {
  background: linear-gradient(135deg, rgba(172,130,73,0.3), rgba(172,130,73,0.1));
  border-color: rgba(172, 130, 73, 0.5);
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.area-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9ca3af;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.area-list li:last-child { border-bottom: none; }

.area-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(172, 130, 73, 0.12);
  border: 1px solid rgba(172, 130, 73, 0.25);
  color: #ac8249;
  font-size: 0.5625rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.area-cta-btn {
  display: inline-flex;
  align-items: center;
  color: #ac8249;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.625rem 0;
  border-top: 1px solid rgba(172, 130, 73, 0.15);
  margin-top: auto;
  transition: color 0.2s, letter-spacing 0.2s;
}
.area-cta-btn:hover {
  color: #e8c887;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   TEAM CARDS
   ═══════════════════════════════════════════════════════════════ */
.team-card {
  background: #0c131d;
  border: 1px solid rgba(172, 130, 73, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.team-card:hover {
  border-color: rgba(172, 130, 73, 0.4);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
  transform: translateY(-5px);
}

.team-photo-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .team-photo-wrap { height: 460px; }
}
@media (min-width: 1024px) {
  .team-photo-wrap { height: 500px; }
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo {
  transform: scale(1.04);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #0c131d 100%);
}

.team-body {
  padding: 1.5rem;
}

.team-badge {
  display: inline-block;
  background: rgba(172, 130, 73, 0.12);
  border: 1px solid rgba(172, 130, 73, 0.28);
  color: #ac8249;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.team-creds {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cred-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.cred-row i {
  margin-top: 2px;
}

/* ─── Cursor pointer on interactive cards ────────────────────── */
.area-card:hover,
.team-card:hover {
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   DIFERENCIAL CARDS
   ═══════════════════════════════════════════════════════════════ */
.diff-card {
  background: #1c2c44;
  border: 1px solid rgba(172, 130, 73, 0.1);
  border-radius: 1rem;
  padding: 1.875rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.diff-card:hover {
  border-color: rgba(172, 130, 73, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.diff-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(172, 130, 73, 0.09);
  border: 1px solid rgba(172, 130, 73, 0.18);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s, border-color 0.3s;
}
.diff-card:hover .diff-icon-wrap {
  background: rgba(172, 130, 73, 0.18);
  border-color: rgba(172, 130, 73, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Background decorative logo */
.contact-deco-logo {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
}

/* Channel cards */
.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: rgba(12, 19, 29, 0.5);
  border: 1px solid rgba(172, 130, 73, 0.1);
  border-radius: 0.875rem;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.contact-channel-card:hover {
  border-color: rgba(172, 130, 73, 0.38);
  background: rgba(12, 19, 29, 0.8);
  transform: translateX(4px);
}

.contact-channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.instagram-bg {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Contact form box */
.contact-form-box {
  background: rgba(12, 19, 29, 0.65);
  border: 1px solid rgba(172, 130, 73, 0.14);
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 640px) {
  .contact-form-box { padding: 2.5rem; }
}

/* Form elements */
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.02em;
  margin-bottom: 0.375rem;
}

.form-field {
  width: 100%;
  background: rgba(12, 19, 29, 0.8);
  border: 1px solid rgba(172, 130, 73, 0.2);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field::placeholder { color: rgba(255,255,255,0.2); }
.form-field:focus {
  border-color: #ac8249;
  box-shadow: 0 0 0 3px rgba(172, 130, 73, 0.12);
}
.form-field option {
  background: #1c2c44;
  color: #fff;
}

/* Form alert states */
.form-alert-success {
  background: rgba(22, 101, 52, 0.35);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}
.form-alert-error {
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

/* Footer typographic logo */
.footer-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  gap: 0;
  transition: opacity 0.25s;
}
.footer-logo-link:hover { opacity: 0.8; }

.footer-logo-dv {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.footer-logo-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ac8249 30%, #e8c887 50%, #ac8249 70%, transparent);
  margin: 4px 0;
}

.footer-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
  line-height: 1;
  margin: 0;
}

.footer-heading {
  color: rgba(232, 200, 135, 0.85);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.125rem;
}

.footer-link {
  display: inline-block;
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.2rem 0;
}
.footer-link:hover { color: #e8c887; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: #6b7280;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-contact-item:hover { color: #e8c887; }
.footer-contact-item i { margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0c131d;
  color: #e8c887;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(172, 130, 73, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-orb-1, .hero-orb-2 { display: none; }
  .contact-deco-logo { display: none; }
  .whatsapp-tooltip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP — UI/UX Pro Max: Trust & Authority style
   ═══════════════════════════════════════════════════════════════ */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  transition: background 0.25s;
}
.trust-badge:hover {
  background: rgba(172, 130, 73, 0.06);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(172, 130, 73, 0.1);
  border: 1px solid rgba(172, 130, 73, 0.22);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ac8249;
  font-size: 0.9375rem;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.trust-badge:hover .trust-badge-icon {
  background: rgba(172, 130, 73, 0.2);
  border-color: rgba(172, 130, 73, 0.4);
}

.trust-badge-title {
  color: rgba(232, 200, 135, 0.9);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}
.trust-badge-sub {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.3;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(172, 130, 73, 0.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   STAT COUNTER — animated number reveal
   ═══════════════════════════════════════════════════════════════ */
.stat-value.counting {
  color: #e8c887;
  text-shadow: 0 0 20px rgba(232, 200, 135, 0.3);
}

/* EB Garamond serif: larger sizes need tighter tracking */
.font-serif {
  letter-spacing: -0.01em;
}
h1.font-serif {
  letter-spacing: -0.02em;
}

