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

:root {
  --black: #0D0D0D;
  --cream: #F5F2EC;
  --amber: oklch(72% 0.16 65deg);
  --gray: #6B6B6B;
  --gray-light: #E8E5DF;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--amber);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.07); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--black);
  text-decoration: none;
  line-height: 1.2;
}
.nav-logo span { display: block; font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 2px; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--amber);
  padding: 10px 22px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--amber);
  z-index: 99;
  padding: 32px clamp(24px, 5vw, 80px);
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 16px;
}
.mobile-menu-cta { text-align: center; }
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  padding: 72px clamp(24px, 5vw, 80px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 10vh, 120px) 60px clamp(60px, 10vh, 120px) 0;
  max-width: none;
  padding-right: clamp(24px, 5vw, 80px);
}

.hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gray);
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--gray);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--amber);
  padding: 16px 36px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--black); border-color: var(--amber); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-right {
  position: relative;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-stat-block {
  padding: 48px;
  position: relative;
  z-index: 2;
}

.hero-big-number {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  opacity: 0.12;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(245,242,236,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,242,236,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-card {
  background: rgba(245,242,236,0.05);
  border: 1px solid rgba(245,242,236,0.1);
  border-left: 2px solid var(--amber);
  padding: 32px;
  position: relative;
  z-index: 2;
}
.hero-card-number {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.hero-card-unit {
  font-size: 0.4em;
  color: var(--amber);
  vertical-align: super;
}
.hero-card-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.5);
  margin-top: 8px;
}
.hero-card-desc {
  font-size: 0.88rem;
  color: rgba(245,242,236,0.7);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left { padding: 100px 0 60px; }
  .hero-right { min-height: 320px; }
  .hero-big-number { font-size: 120px; }
}

/* ── SECTION BASE ── */
section { position: relative; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
}
.section-title em { font-style: italic; color: var(--gray); }

/* ── STRIP ── */
.strip {
  background: var(--black);
  padding: 20px clamp(24px, 5vw, 80px);
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.strip-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.4);
  display: flex;
  align-items: center;
  gap: 20px;
}
.strip-item::after {
  content: '◆';
  font-size: 6px;
  color: var(--amber);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ── */
.stats {
  padding: clamp(80px, 12vh, 140px) 0;
  border-bottom: 1px solid var(--gray-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}

.stat-item {
  padding: 40px;
  border-left: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}
.stat-item:first-child { border-left: none; }

.stat-number {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--black);
}
.stat-suffix {
  font-family: var(--serif);
  font-size: 0.5em;
  color: var(--amber);
  vertical-align: super;
  margin-left: 2px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 16px;
  line-height: 1.5;
}
.stat-bar {
  position: absolute;
  bottom: 0; left: 40px;
  height: 2px;
  background: var(--amber);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-left: none; border-top: 1px solid var(--gray-light); }
}
@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── SERVICES ── */
.services {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--black);
}

.services .section-label { color: var(--amber); }
.services .section-title { color: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,242,236,0.08);
  margin-top: 64px;
}

.service-card {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}
.service-card:hover { background: #161616; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--amber);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::before { height: 100%; }

.service-number {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--amber);
  margin-bottom: 32px;
  opacity: 0.7;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.service-card:hover .service-icon { opacity: 1; }

.service-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.88rem;
  color: rgba(245,242,236,0.55);
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PROCESSO ── */
.processo {
  padding: clamp(80px, 12vh, 140px) 0;
  border-bottom: 1px solid var(--gray-light);
}

.processo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.processo-left { position: sticky; top: 100px; }
.processo-left p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 24px;
  max-width: 400px;
}

.processo-steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-light);
  padding: 40px 0;
  transition: background 0.2s;
  cursor: default;
}
.step:first-child { border-top: 1px solid var(--gray-light); }

.step-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--amber);
  padding-top: 4px;
}

.step-content {}
.step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .processo-layout { grid-template-columns: 1fr; gap: 40px; }
  .processo-left { position: static; }
}

/* ── DEPOIMENTOS ── */
.depoimentos {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--black);
  overflow: hidden;
}
.depoimentos .section-label { color: var(--amber); }
.depoimentos .section-title { color: var(--cream); }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,242,236,0.08);
  margin-top: 64px;
}

.dep-card {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
}

.dep-quote {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.dep-text {
  font-size: 0.95rem;
  color: rgba(245,242,236,0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(245,242,236,0.08);
  padding-top: 24px;
}

.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,242,236,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--amber);
  flex-shrink: 0;
}

.dep-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
}
.dep-role {
  font-size: 0.75rem;
  color: rgba(245,242,236,0.4);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .dep-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq {
  padding: clamp(80px, 12vh, 140px) 0;
  border-bottom: 1px solid var(--gray-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.faq-left { position: sticky; top: 100px; }
.faq-left p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 20px;
}

.faq-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--amber);
  padding: 14px 28px;
  text-decoration: none;
  margin-top: 32px;
  transition: opacity 0.2s;
}
.faq-cta:hover { opacity: 0.85; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-item:first-child { border-top: 1px solid var(--gray-light); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--black);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
}
.faq-icon svg { transition: transform 0.3s; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 28px;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--black);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  font-family: var(--serif);
  font-size: clamp(80px, 15vw, 200px);
  line-height: 0.9;
  color: rgba(245,242,236,0.04);
  position: absolute;
  bottom: -20px;
  left: clamp(24px, 5vw, 80px);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.cta-band .section-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 600px;
}
.cta-band h2 em { font-style: italic; color: rgba(245,242,236,0.45); }

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-band .btn-primary { white-space: nowrap; }

.cta-contact-info {
  font-size: 0.8rem;
  color: rgba(245,242,236,0.4);
  line-height: 1.6;
}
.cta-contact-info a {
  color: rgba(245,242,236,0.7);
  text-decoration: none;
}
.cta-contact-info a:hover { color: var(--amber); }

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid var(--amber);
  padding: 64px clamp(24px, 5vw, 80px) 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}

.footer-brand {}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.3;
}
.footer-logo-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.35);
  margin-top: 4px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.4);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(245,242,236,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }

.footer-contact-item {
  font-size: 0.84rem;
  color: rgba(245,242,236,0.45);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item a {
  color: rgba(245,242,236,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--amber); }
.footer-contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.2);
  display: block;
  margin-bottom: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(245,242,236,0.2);
  line-height: 1.6;
}
.footer-legal strong { color: rgba(245,242,236,0.35); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }


/* ===== CONTATO ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0D0D0D;
  --cream: #F5F2EC;
  --amber: oklch(72% 0.16 65deg);
  --gray: #6B6B6B;
  --gray-light: #E8E5DF;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--black); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 80px); height: 72px; background: var(--cream); border-bottom: 1px solid var(--amber); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.07); }
.nav-logo { font-family: var(--serif); font-size: 1.1rem; letter-spacing: -0.02em; color: var(--black); text-decoration: none; line-height: 1.2; }
.nav-logo span { display: block; font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 2px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); background: var(--amber); padding: 10px 22px; text-decoration: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--black); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--amber); z-index: 99; padding: 32px clamp(24px, 5vw, 80px); flex-direction: column; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--gray-light); padding-bottom: 16px; }
@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .nav-hamburger { display: flex; } }

.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--amber); }

/* PAGE HEADER */
.page-header { padding-top: 72px; background: var(--black); min-height: 380px; display: flex; align-items: flex-end; }
.page-header-inner { max-width: 1280px; margin: 0 auto; padding: clamp(60px, 10vh, 100px) clamp(24px, 5vw, 80px) 64px; position: relative; width: 100%; }
.page-header-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.page-header-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--amber); }
.page-header h1 { font-family: var(--serif); font-size: clamp(44px, 6vw, 84px); line-height: 1.0; letter-spacing: -0.04em; color: var(--cream); }
.page-header h1 em { font-style: italic; color: rgba(245,242,236,0.38); }
.page-header-line { position: absolute; bottom: 0; left: clamp(24px, 5vw, 80px); right: 0; height: 1px; background: var(--amber); }

/* CONTACT LAYOUT */
.contact-section { padding: clamp(80px, 12vh, 120px) 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }

/* LEFT INFO */
.contact-info-block { display: flex; flex-direction: column; gap: 40px; }
.contact-card { border-top: 1px solid var(--gray-light); padding-top: 28px; }
.contact-card-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.contact-card-value { font-family: var(--serif); font-size: 1.2rem; letter-spacing: -0.02em; color: var(--black); line-height: 1.3; }
.contact-address-value { font-family: var(--sans); font-size: 1rem; font-weight: 500; line-height: 1.6; }
.contact-card-value a { color: var(--black); text-decoration: none; transition: color 0.2s; }
.contact-card-value a:hover { color: var(--amber); }
.contact-card-note { font-size: 0.82rem; color: var(--gray); margin-top: 8px; line-height: 1.5; }

.contact-hours { background: var(--black); padding: 32px; margin-top: 8px; }
.contact-hours-spaced { margin-top: 40px; }
.contact-hours-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.contact-hours-row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(245,242,236,0.07); padding: 10px 0; font-size: 0.85rem; }
.contact-hours-day { color: rgba(245,242,236,0.5); }
.contact-hours-time { color: var(--cream); font-weight: 500; }
.contact-hours-row:last-child { border-bottom: none; }

/* FORM */
.contact-form-wrap {}
.form-intro { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 40px; }
.form-intro strong { color: var(--black); }

form { display: flex; flex-direction: column; gap: 0; }
.form-group { position: relative; border-bottom: 1px solid var(--gray-light); }
.form-group:first-of-type { border-top: 1px solid var(--gray-light); }
.form-group label { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); padding: 20px 0 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; background: none; border: none; outline: none; font-family: var(--sans); font-size: 1rem; color: var(--black); padding: 0 0 20px; resize: none; appearance: none; }
.form-group textarea { min-height: 120px; line-height: 1.6; }
.form-group select { cursor: pointer; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-light); }
.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line { width: 100%; }
.form-line { position: absolute; bottom: -1px; left: 0; width: 0; height: 1px; background: var(--amber); transition: width 0.4s cubic-bezier(0.16,1,0.3,1); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; }
.form-row .form-group { border-right: 1px solid var(--gray-light); padding-right: 32px; }
.form-row .form-group:last-child { border-right: none; padding-right: 0; padding-left: 32px; }

.form-submit { margin-top: 40px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-submit { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); background: var(--amber); padding: 16px 40px; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.btn-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.form-note { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.form-note a { color: var(--gray); }

/* SUCCESS */
.form-success { display: none; background: var(--black); padding: 48px; text-align: center; }
.form-success.show { display: block; }
.form-success-icon { font-family: var(--serif); font-size: 3rem; color: var(--amber); margin-bottom: 16px; }
.form-success h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); margin-bottom: 12px; }
.form-success p { font-size: 0.9rem; color: rgba(245,242,236,0.6); }

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 56px; } .form-row { grid-template-columns: 1fr; } .form-row .form-group { border-right: none; padding-right: 0; padding-left: 0; } }

/* FOOTER */
footer { background: #080808; border-top: 1px solid var(--amber); padding: 64px clamp(24px, 5vw, 80px) 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,242,236,0.08); }
.footer-logo { font-family: var(--serif); font-size: 1.2rem; letter-spacing: -0.02em; color: var(--cream); line-height: 1.3; }
.footer-logo-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,242,236,0.35); margin-top: 4px; }
.footer-tagline { font-size: 0.85rem; color: rgba(245,242,236,0.4); line-height: 1.7; margin-top: 20px; max-width: 260px; }
.footer-col-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.84rem; color: rgba(245,242,236,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-contact-item { font-size: 0.84rem; color: rgba(245,242,236,0.45); margin-bottom: 12px; line-height: 1.5; }
.footer-contact-item a { color: rgba(245,242,236,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--amber); }
.footer-contact-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,242,236,0.2); display: block; margin-bottom: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 20px; flex-wrap: wrap; }
.footer-legal { font-size: 0.72rem; color: rgba(245,242,236,0.2); line-height: 1.6; }
.footer-legal strong { color: rgba(245,242,236,0.35); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }


/* ===== SOBRE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0D0D0D;
  --cream: #F5F2EC;
  --amber: oklch(72% 0.16 65deg);
  --gray: #6B6B6B;
  --gray-light: #E8E5DF;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--black); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 80px); height: 72px; background: var(--cream); border-bottom: 1px solid var(--amber); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.07); }
.nav-logo { font-family: var(--serif); font-size: 1.1rem; letter-spacing: -0.02em; color: var(--black); text-decoration: none; line-height: 1.2; }
.nav-logo span { display: block; font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 2px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); background: var(--amber); padding: 10px 22px; text-decoration: none; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.85; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--black); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--amber); z-index: 99; padding: 32px clamp(24px, 5vw, 80px); flex-direction: column; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--gray-light); padding-bottom: 16px; }
@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .nav-hamburger { display: flex; } }

.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--amber); }
.section-title { font-family: var(--serif); font-size: clamp(36px, 4vw, 60px); line-height: 1.08; letter-spacing: -0.03em; color: var(--black); }
.section-title em { font-style: italic; color: var(--gray); }

/* PAGE HEADER */
.page-header { padding-top: 72px; background: var(--black); min-height: 420px; display: flex; align-items: flex-end; }
.page-header-inner { max-width: 1280px; margin: 0 auto; padding: clamp(60px, 10vh, 120px) clamp(24px, 5vw, 80px) 72px; position: relative; }
.page-header-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.page-header-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--amber); }
.page-header h1 { font-family: var(--serif); font-size: clamp(44px, 6vw, 88px); line-height: 1.0; letter-spacing: -0.04em; color: var(--cream); }
.page-header h1 em { font-style: italic; color: rgba(245,242,236,0.4); }
.page-header-line { position: absolute; bottom: 0; left: clamp(24px, 5vw, 80px); right: 0; height: 1px; background: var(--amber); }

/* INTRO */
.intro { padding: clamp(80px, 12vh, 120px) 0; border-bottom: 1px solid var(--gray-light); }
.intro-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.intro-left { position: sticky; top: 100px; }
.intro-quote { font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); line-height: 1.3; letter-spacing: -0.02em; color: var(--black); margin-top: 24px; }
.intro-quote em { font-style: italic; color: var(--gray); }
.intro-right p { font-size: 1.05rem; color: var(--gray); line-height: 1.85; margin-bottom: 24px; }
.intro-right p:last-child { margin-bottom: 0; }
.intro-right strong { color: var(--black); font-weight: 600; }
@media (max-width: 900px) { .intro-layout { grid-template-columns: 1fr; gap: 40px; } .intro-left { position: static; } }

/* TIMELINE */
.timeline { padding: clamp(80px, 12vh, 120px) 0; background: var(--black); }
.timeline .section-label { color: var(--amber); }
.timeline .section-title { color: var(--cream); }
.tl-items { margin-top: 64px; display: flex; flex-direction: column; border-left: 1px solid rgba(245,242,236,0.1); margin-left: 20px; }
.tl-item { display: grid; grid-template-columns: 160px 1fr; gap: 40px; padding: 40px 0 40px 48px; position: relative; border-bottom: 1px solid rgba(245,242,236,0.06); }
.tl-item::before { content: ''; position: absolute; left: -5px; top: 48px; width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }
.tl-year { font-family: var(--serif); font-size: 1.8rem; letter-spacing: -0.03em; color: rgba(245,242,236,0.2); padding-top: 4px; }
.tl-content h3 { font-family: var(--serif); font-size: 1.3rem; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 10px; }
.tl-content p { font-size: 0.9rem; color: rgba(245,242,236,0.5); line-height: 1.75; }
@media (max-width: 600px) { .tl-item { grid-template-columns: 1fr; gap: 8px; } }

/* MVV */
.mvv { padding: clamp(80px, 12vh, 120px) 0; border-bottom: 1px solid var(--gray-light); }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-light); margin-top: 64px; }
.mvv-card { background: var(--cream); padding: 48px 40px; }
.mvv-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.mvv-title { font-family: var(--serif); font-size: 1.6rem; letter-spacing: -0.02em; color: var(--black); margin-bottom: 16px; }
.mvv-text { font-size: 0.9rem; color: var(--gray); line-height: 1.8; }
@media (max-width: 700px) { .mvv-grid { grid-template-columns: 1fr; } }

/* VALUES */
.values { padding: clamp(80px, 12vh, 120px) 0; background: var(--black); }
.values .section-label { color: var(--amber); }
.values .section-title { color: var(--cream); }
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 64px; }
.value-item { border-bottom: 1px solid rgba(245,242,236,0.08); border-right: 1px solid rgba(245,242,236,0.08); padding: 40px; }
.value-item:nth-child(even) { border-right: none; }
.value-num { font-family: var(--serif); font-size: 0.85rem; color: var(--amber); opacity: 0.7; margin-bottom: 16px; }
.value-name { font-family: var(--serif); font-size: 1.3rem; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 10px; }
.value-desc { font-size: 0.88rem; color: rgba(245,242,236,0.5); line-height: 1.75; }
@media (max-width: 600px) { .values-list { grid-template-columns: 1fr; } .value-item { border-right: none; } }

/* DADOS */
.dados { padding: clamp(80px, 12vh, 120px) 0; border-bottom: 1px solid var(--gray-light); }
.dados-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 64px; }
.dados-table { display: flex; flex-direction: column; gap: 0; }
.dados-row { display: grid; grid-template-columns: 160px 1fr; border-bottom: 1px solid var(--gray-light); padding: 16px 0; }
.dados-row:first-child { border-top: 1px solid var(--gray-light); }
.dados-key { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); padding-top: 3px; }
.dados-val { font-size: 0.9rem; color: var(--black); line-height: 1.5; }
.dados-val a { color: var(--black); text-decoration: none; }
.dados-map { background: var(--black); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.dados-map-pin { width: 32px; height: 32px; }
.dados-map-text { font-size: 0.78rem; color: rgba(245,242,236,0.4); text-align: center; line-height: 1.6; }
.dados-map-addr { font-family: var(--serif); font-size: 1rem; color: var(--cream); text-align: center; }
@media (max-width: 900px) { .dados-layout { grid-template-columns: 1fr; } }

/* FOOTER */
footer { background: #080808; border-top: 1px solid var(--amber); padding: 64px clamp(24px, 5vw, 80px) 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,242,236,0.08); }
.footer-logo { font-family: var(--serif); font-size: 1.2rem; letter-spacing: -0.02em; color: var(--cream); line-height: 1.3; }
.footer-logo-sub { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,242,236,0.35); margin-top: 4px; }
.footer-tagline { font-size: 0.85rem; color: rgba(245,242,236,0.4); line-height: 1.7; margin-top: 20px; max-width: 260px; }
.footer-col-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.84rem; color: rgba(245,242,236,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-contact-item { font-size: 0.84rem; color: rgba(245,242,236,0.45); margin-bottom: 12px; line-height: 1.5; }
.footer-contact-item a { color: rgba(245,242,236,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--amber); }
.footer-contact-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,242,236,0.2); display: block; margin-bottom: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 20px; flex-wrap: wrap; }
.footer-legal { font-size: 0.72rem; color: rgba(245,242,236,0.2); line-height: 1.6; }
.footer-legal strong { color: rgba(245,242,236,0.35); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }


/* ===== TERMOS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --black: #0D0D0D; --cream: #F5F2EC; --amber: oklch(72% 0.16 65deg); --gray: #6B6B6B; --gray-light: #E8E5DF; --serif: 'DM Serif Display', Georgia, serif; --sans: 'DM Sans', system-ui, sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--black); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 80px); height: 72px; background: var(--cream); border-bottom: 1px solid var(--amber); }
.nav-logo { font-family: var(--serif); font-size: 1.1rem; letter-spacing: -0.02em; color: var(--black); text-decoration: none; line-height: 1.2; }
.nav-logo span { display: block; font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 2px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); background: var(--amber); padding: 10px 22px; text-decoration: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--black); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--amber); z-index: 99; padding: 32px clamp(24px, 5vw, 80px); flex-direction: column; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--gray-light); padding-bottom: 16px; }
@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .nav-hamburger { display: flex; } }

.page-header { padding-top: 72px; background: var(--black); min-height: 300px; display: flex; align-items: flex-end; }
.page-header-inner { max-width: 1280px; margin: 0 auto; padding: clamp(48px,8vh,80px) clamp(24px,5vw,80px) 56px; position: relative; width: 100%; }
.page-header-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.page-header-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--amber); }
.page-header h1 { font-family: var(--serif); font-size: clamp(36px,5vw,70px); line-height: 1.05; letter-spacing: -0.03em; color: var(--cream); }
.page-header-meta { font-size: 0.8rem; color: rgba(245,242,236,0.35); margin-top: 16px; }
.page-header-line { position: absolute; bottom: 0; left: clamp(24px,5vw,80px); right: 0; height: 1px; background: var(--amber); }

.legal-body { max-width: 860px; margin: 0 auto; padding: clamp(60px,10vh,100px) clamp(24px,5vw,80px); }

.legal-toc { background: var(--black); padding: 32px 40px; margin-bottom: 64px; }
.legal-toc-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.legal-toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-toc li { font-size: 0.88rem; color: rgba(245,242,236,0.55); }
.legal-toc a { color: rgba(245,242,236,0.55); text-decoration: none; transition: color 0.2s; }
.legal-toc a:hover { color: var(--amber); }

.legal-section { margin-bottom: 56px; }
.legal-section h2 { font-family: var(--serif); font-size: clamp(22px,2.5vw,32px); letter-spacing: -0.02em; color: var(--black); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--amber); }
.legal-section p { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol { padding-left: 24px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-section li { font-size: 0.95rem; color: var(--gray); line-height: 1.75; }
.legal-section strong { color: var(--black); font-weight: 600; }
.legal-section a { color: var(--black); }

.legal-highlight { background: var(--black); border-left: 2px solid var(--amber); padding: 24px 32px; margin: 24px 0; }
.legal-highlight p { color: rgba(245,242,236,0.7) !important; font-size: 0.9rem !important; }

footer { background: #080808; border-top: 1px solid var(--amber); padding: 48px clamp(24px,5vw,80px) 28px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-legal { font-size: 0.72rem; color: rgba(245,242,236,0.2); line-height: 1.6; }
.footer-legal strong { color: rgba(245,242,236,0.35); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.78rem; color: rgba(245,242,236,0.35); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--amber); }


/* ===== PRIVACIDADE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --black: #0D0D0D; --cream: #F5F2EC; --amber: oklch(72% 0.16 65deg); --gray: #6B6B6B; --gray-light: #E8E5DF; --serif: 'DM Serif Display', Georgia, serif; --sans: 'DM Sans', system-ui, sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--black); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 80px); height: 72px; background: var(--cream); border-bottom: 1px solid var(--amber); }
.nav-logo { font-family: var(--serif); font-size: 1.1rem; letter-spacing: -0.02em; color: var(--black); text-decoration: none; line-height: 1.2; }
.nav-logo span { display: block; font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 2px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); background: var(--amber); padding: 10px 22px; text-decoration: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--black); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--amber); z-index: 99; padding: 32px clamp(24px,5vw,80px); flex-direction: column; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--gray-light); padding-bottom: 16px; }
@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .nav-hamburger { display: flex; } }

.page-header { padding-top: 72px; background: var(--black); min-height: 300px; display: flex; align-items: flex-end; }
.page-header-inner { max-width: 1280px; margin: 0 auto; padding: clamp(48px,8vh,80px) clamp(24px,5vw,80px) 56px; position: relative; width: 100%; }
.page-header-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.page-header-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--amber); }
.page-header h1 { font-family: var(--serif); font-size: clamp(36px,5vw,70px); line-height: 1.05; letter-spacing: -0.03em; color: var(--cream); }
.page-header-meta { font-size: 0.8rem; color: rgba(245,242,236,0.35); margin-top: 16px; }
.page-header-line { position: absolute; bottom: 0; left: clamp(24px,5vw,80px); right: 0; height: 1px; background: var(--amber); }

.legal-body { max-width: 860px; margin: 0 auto; padding: clamp(60px,10vh,100px) clamp(24px,5vw,80px); }
.legal-toc { background: var(--black); padding: 32px 40px; margin-bottom: 64px; }
.legal-toc-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.legal-toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-toc li { font-size: 0.88rem; color: rgba(245,242,236,0.55); }
.legal-toc a { color: rgba(245,242,236,0.55); text-decoration: none; transition: color 0.2s; }
.legal-toc a:hover { color: var(--amber); }
.legal-section { margin-bottom: 56px; }
.legal-section h2 { font-family: var(--serif); font-size: clamp(22px,2.5vw,32px); letter-spacing: -0.02em; color: var(--black); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--amber); }
.legal-section p { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol { padding-left: 24px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-section li { font-size: 0.95rem; color: var(--gray); line-height: 1.75; }
.legal-section strong { color: var(--black); font-weight: 600; }
.legal-section a { color: var(--black); }
.legal-highlight { background: var(--black); border-left: 2px solid var(--amber); padding: 24px 32px; margin: 24px 0; }
.legal-highlight p { color: rgba(245,242,236,0.7) !important; font-size: 0.9rem !important; }

.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-light); margin: 24px 0; }
.rights-card { background: var(--cream); padding: 24px; }
.rights-card-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.rights-card-text { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }
@media (max-width: 600px) { .rights-grid { grid-template-columns: 1fr; } }

footer { background: #080808; border-top: 1px solid var(--amber); padding: 48px clamp(24px,5vw,80px) 28px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-legal { font-size: 0.72rem; color: rgba(245,242,236,0.2); line-height: 1.6; }
.footer-legal strong { color: rgba(245,242,236,0.35); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.78rem; color: rgba(245,242,236,0.35); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--amber); }


/* ===== REEMBOLSO ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --black: #0D0D0D; --cream: #F5F2EC; --amber: oklch(72% 0.16 65deg); --gray: #6B6B6B; --gray-light: #E8E5DF; --serif: 'DM Serif Display', Georgia, serif; --sans: 'DM Sans', system-ui, sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--black); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 80px); height: 72px; background: var(--cream); border-bottom: 1px solid var(--amber); }
.nav-logo { font-family: var(--serif); font-size: 1.1rem; letter-spacing: -0.02em; color: var(--black); text-decoration: none; line-height: 1.2; }
.nav-logo span { display: block; font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 2px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); background: var(--amber); padding: 10px 22px; text-decoration: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--black); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--amber); z-index: 99; padding: 32px clamp(24px,5vw,80px); flex-direction: column; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--gray-light); padding-bottom: 16px; }
@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .nav-hamburger { display: flex; } }

.page-header { padding-top: 72px; background: var(--black); min-height: 300px; display: flex; align-items: flex-end; }
.page-header-inner { max-width: 1280px; margin: 0 auto; padding: clamp(48px,8vh,80px) clamp(24px,5vw,80px) 56px; position: relative; width: 100%; }
.page-header-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.page-header-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--amber); }
.page-header h1 { font-family: var(--serif); font-size: clamp(36px,5vw,70px); line-height: 1.05; letter-spacing: -0.03em; color: var(--cream); }
.page-header-meta { font-size: 0.8rem; color: rgba(245,242,236,0.35); margin-top: 16px; }
.page-header-line { position: absolute; bottom: 0; left: clamp(24px,5vw,80px); right: 0; height: 1px; background: var(--amber); }

.legal-body { max-width: 860px; margin: 0 auto; padding: clamp(60px,10vh,100px) clamp(24px,5vw,80px); }
.legal-toc { background: var(--black); padding: 32px 40px; margin-bottom: 64px; }
.legal-toc-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.legal-toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-toc li { font-size: 0.88rem; color: rgba(245,242,236,0.55); }
.legal-toc a { color: rgba(245,242,236,0.55); text-decoration: none; transition: color 0.2s; }
.legal-toc a:hover { color: var(--amber); }
.legal-section { margin-bottom: 56px; }
.legal-section h2 { font-family: var(--serif); font-size: clamp(22px,2.5vw,32px); letter-spacing: -0.02em; color: var(--black); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--amber); }
.legal-section p { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol { padding-left: 24px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-section li { font-size: 0.95rem; color: var(--gray); line-height: 1.75; }
.legal-section strong { color: var(--black); font-weight: 600; }
.legal-section a { color: var(--black); }
.legal-highlight { background: var(--black); border-left: 2px solid var(--amber); padding: 24px 32px; margin: 24px 0; }
.legal-highlight p { color: rgba(245,242,236,0.7) !important; font-size: 0.9rem !important; }

/* Prazo table */
.prazo-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.prazo-table th { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); text-align: left; padding: 12px 16px; background: var(--black); }
.prazo-table td { font-size: 0.9rem; color: var(--gray); padding: 14px 16px; border-bottom: 1px solid var(--gray-light); vertical-align: top; line-height: 1.6; }
.prazo-table tr:last-child td { border-bottom: none; }
.prazo-table td strong { color: var(--black); }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.step-item { display: grid; grid-template-columns: 56px 1fr; gap: 0; border-bottom: 1px solid var(--gray-light); padding: 24px 0; }
.step-item:first-child { border-top: 1px solid var(--gray-light); }
.step-n { font-family: var(--serif); font-size: 1.1rem; color: var(--amber); padding-top: 2px; }
.step-body h4 { font-family: var(--serif); font-size: 1.05rem; letter-spacing: -0.01em; color: var(--black); margin-bottom: 6px; }
.step-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin: 0; }

footer { background: #080808; border-top: 1px solid var(--amber); padding: 48px clamp(24px,5vw,80px) 28px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-legal { font-size: 0.72rem; color: rgba(245,242,236,0.2); line-height: 1.6; }
.footer-legal strong { color: rgba(245,242,236,0.35); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.78rem; color: rgba(245,242,236,0.35); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--amber); }
