/* ─────────────────────────────────────────────
   DÉBORA ORRÚ — DIGITAL SOLUTIONS
   Paleta: Ouro Antigo #B8935A | Navy-Black #0B0D1C
   Glassmorphism + Elegância
───────────────────────────────────────────── */

:root {
  --gold:        #B8935A;
  --gold-light:  #D4AE74;
  --gold-dark:   #8B6E3E;
  --gold-glow:   rgba(184, 147, 90, 0.14);
  --gold-border: rgba(184, 147, 90, 0.28);
  --dark-bg:     #0B0C1A;
  --dark-2:      #10122A;
  --dark-3:      #171935;
  --glass-bg:    rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.09);
  --text-primary: #EDE8DA;
  --text-secondary: #A8A2B8;
  --text-muted:  #6E697E;
  --white:       #F5F0E8;
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── FUNDO ANIMADO ─────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(184,147,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(30,34,80,0.5) 0%, transparent 50%),
    linear-gradient(180deg, #0B0C1A 0%, #0E1028 50%, #0B0C1A 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── TIPOGRAFIA ────────────────────────────── */
h1, h2 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--text-secondary); line-height: 1.75; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* ── UTILITÁRIOS ───────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; position: relative; z-index: 1; }
.section-sm { padding: 60px 0; position: relative; z-index: 1; }

.gold        { color: var(--gold); }
.gold-grad   {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  background: var(--gold-glow);
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

/* ── GLASS CARD ────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.glass:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(184,147,90,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(184,147,90,0.08);
}

/* ── BOTÕES ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0B0C1A;
  box-shadow: 0 4px 24px rgba(184,147,90,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,147,90,0.45);
  color: #0B0C1A;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── NAVIGATION ────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(11, 12, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 110px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── HAMBURGER ─────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-title { margin-bottom: 24px; }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-border);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-main {
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  width: 100%;
  max-width: 420px;
  position: relative;
}
.hero-orbit {
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(184,147,90,0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}
.hero-orbit-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold);
}
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-profile-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
}
.hero-profile {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--gold);
  box-shadow: 0 0 50px rgba(184,147,90,0.3);
}
.hero-pulse {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(184,147,90,0.3);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.hero-tag-item {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
}

/* ── ECOSSISTEMA ───────────────────────────── */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.eco-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}
.eco-card:nth-child(2) { animation-delay: 1s; }
.eco-card:nth-child(3) { animation-delay: 2s; }
.eco-card:nth-child(4) { animation-delay: 0.5s; }
.eco-card:nth-child(5) { animation-delay: 1.5s; }
.eco-card:nth-child(6) { animation-delay: 2.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.eco-card:hover::before { opacity: 1; }
.eco-card:hover { animation-play-state: paused; }

.eco-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s ease;
}
.eco-card:hover .eco-icon { transform: scale(1.2) rotate(-5deg); }
.eco-card h3 { color: var(--text-primary); margin-bottom: 10px; font-size: 1.1rem; }
.eco-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── WHATSAPP FLUTUANTE ─────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  background: #20c45c;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ── SERVIÇOS ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.service-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.service-card-link:hover {
  color: inherit;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(184,147,90,0.12);
  border-color: var(--gold);
}
.service-card-link:hover .service-link-cta {
  color: var(--gold-light);
  gap: 8px;
}
.service-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.service-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.service-card p { font-size: 0.88rem; line-height: 1.7; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 4px;
}
.service-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  color: var(--gold);
}

/* ── SOBRE ─────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-img-wrapper {
  position: relative;
}
.sobre-img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  display: block;
}
.sobre-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.sobre-float-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.sobre-float-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}
.sobre-list { list-style: none; margin: 24px 0; }
.sobre-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.sobre-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── METODOLOGIA ───────────────────────────── */
/* ── INFOGRÁFICO HORIZONTAL — MÉTODO ────────── */
.infographic-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.infographic-flow::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% - 0px);
  right: calc(12.5% - 0px);
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-border) 5%,
    var(--gold) 30%,
    var(--gold) 70%,
    var(--gold-border) 95%,
    transparent 100%);
  z-index: 0;
}

.info-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 12px;
}

.info-step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(184,147,90,0.2), inset 0 0 12px rgba(184,147,90,0.05);
  transition: var(--transition);
}

.info-step-card {
  background: var(--glass-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 20px;
  width: 100%;
  flex: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  cursor: default;
}
.info-step-card:hover,
.info-step-card:focus-within {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: scale(1.06);
  box-shadow: 0 20px 60px rgba(184,147,90,0.25),
              0 0 0 1px rgba(184,147,90,0.4);
  z-index: 2;
  position: relative;
}
.info-step:hover .info-step-badge {
  box-shadow: 0 0 32px rgba(184,147,90,0.5);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.info-step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  text-align: center;
}

.info-step-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  text-align: center;
}

.info-step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
  text-align: left;
}

.info-step-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-step-list li {
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.info-step-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.72rem;
}

.info-arrow {
  flex: 0 0 auto;
  align-self: center;
  margin-top: -40px;
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.5;
  padding: 0 4px;
  display: none; /* hidden on desktop — line handles it */
}

@media (max-width: 900px) {
  .infographic-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .infographic-flow::before { display: none; }
  .info-step { padding: 0; }
  .info-step-badge { margin: 0 auto 16px; }
  .info-arrow { display: none; }
}

/* ── FAQ ───────────────────────────────────── */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #0B0C1A; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── BLOG ──────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  position: relative;
  overflow: hidden;
}
.blog-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--dark-3) 0%, rgba(184,147,90,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p { font-size: 0.85rem; flex: 1; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-border);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-card-meta a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
}

/* ── CTA SECTION ───────────────────────────── */
.cta-section {
  background: linear-gradient(135deg,
    rgba(184,147,90,0.05) 0%,
    rgba(184,147,90,0.02) 50%,
    rgba(184,147,90,0.06) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { margin-bottom: 40px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────── */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img {
  height: 110px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.88rem; max-width: 260px; }
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── BADGE BRASÍLIA ────────────────────────── */
.brasilia-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.brasilia-badge span { color: var(--gold); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .eco-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline, .nav-cta .btn-gold { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .sobre-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .eco-grid, .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { gap: 20px; }
  .sobre-float { position: static; margin-top: 24px; display: inline-block; }
}

/* ── ANIMAÇÕES DE ENTRADA ──────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
