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

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

:root {
  --navy: #0C1B2E;
  --navy-mid: #152035;
  --navy-light: #1E2D44;
  --gold: #B8933E;
  --gold-light: #D4B06A;
  --gold-pale: #E8D5A8;
  --off-white: #F4EFE6;
  --cream: #FAF7F2;
  --text-muted: #8A98A8;
  --border-gold: rgba(184, 147, 62, 0.3);
  --border-light: rgba(244, 239, 230, 0.12);
}

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

body {
  background: var(--navy);
  color: var(--off-white);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--navy)
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5vw;
  background: rgba(12, 27, 46, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

nav.scrolled {
  background: rgba(12, 27, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--off-white);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--gold-light)
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  transition: all 0.3s
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(12, 27, 46, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 24px 5vw;
  z-index: 999;
}

.mobile-menu.open {
  display: block
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu a:hover {
  color: var(--gold-light)
}

/* SECTION SYSTEM */
section {
  position: relative;
  padding: 120px 5vw
}

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

.section-label {
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--off-white);
}

h2.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 48px;
}

h3.sub-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

p {
  color: rgba(244, 239, 230, 0.78);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

/* HERO */
#hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background:
    linear-gradient(160deg, rgba(12, 27, 46, 0.0) 0%, rgba(12, 27, 46, 0.6) 60%, var(--navy) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 60L60 0M-5 5L5-5M55 65L65 55' stroke='rgba(184,147,62,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover, 60px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 20vw, 280px);
  color: rgba(184, 147, 62, 0.03);
  white-space: nowrap;
  letter-spacing: 20px;
  pointer-events: none;
  user-select: none;
  font-weight: 600;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 32px;
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(244, 239, 230, 0.65);
  max-width: 680px;
  margin-top: 28px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-top: 52px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light)
}

.btn-outline {
  border: 1px solid rgba(244, 239, 230, 0.3);
  color: var(--off-white);
  padding: 15px 36px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s;
  display: inline-block;
}

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

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-top: 64px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1)
  }

  50% {
    opacity: 1;
    transform: scaleY(0.7)
  }
}

.hero-stats {
  position: absolute;
  right: 5vw;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
}

.hero-stat {
  text-align: right
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* DIFERENCIAIS STRIP */
#diferenciais {
  padding: 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  background: var(--navy-mid);
}

.diferenciais-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.diferencial-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border-gold);
}

.diferencial-item:last-child {
  border-right: none
}

.diferencial-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.diferencial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--off-white);
  margin-bottom: 12px;
}

.diferencial-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* A CÂMARA */
#camara {
  background: var(--navy-mid)
}

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

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  margin-top: 40px;
}

.mvv-item {
  background: var(--navy-mid);
  padding: 36px;
}

.mvv-item.full {
  grid-column: 1/-1
}

.mvv-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.mvv-content {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(244, 239, 230, 0.88);
  line-height: 1.6;
}

.valores-list {
  list-style: none;
  margin-top: 32px;
}

.valores-list li {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.valores-list li:last-child {
  border-bottom: none
}

.valor-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  margin-top: 4px;
}

.valor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 6px;
}

.valor-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0
}

/* ARBITRAGEM */
#arbitragem {
  background: var(--navy)
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

/* Hidden on desktop, shown via media query on mobile */
.comparison-cards,
.mobile-bottom-cta {
  display: none;
}

.comparison-table thead tr {
  border-bottom: 1px solid var(--gold)
}

.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 400;
}

.comparison-table td {
  padding: 20px 24px;
  font-size: 14px;
  color: rgba(244, 239, 230, 0.75);
  vertical-align: top;
  line-height: 1.7;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table tr:last-child td {
  border-bottom: none
}

.comparison-table td:first-child {
  color: var(--off-white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  margin-top: 48px;
}

.tipo-card {
  background: var(--navy);
  padding: 36px;
}

.tipo-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--border-gold);
  font-weight: 300;
  margin-bottom: 4px;
}

.tipo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.tipo-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0
}

/* PROCEDIMENTO */
#procedimento {
  background: var(--navy-mid)
}

.fases-timeline {
  position: relative;
  margin-top: 64px
}

.fases-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(184, 147, 62, 0.1));
}

.fase {
  display: flex;
  gap: 48px;
  margin-bottom: 56px;
  position: relative;
}

.fase-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  position: relative;
  z-index: 2;
}

.fase-body {
  flex: 1;
  padding-top: 6px
}

.fase-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 12px;
}

.fase-text {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.72);
  line-height: 1.8;
  margin-bottom: 16px
}

.fase-detail {
  background: rgba(184, 147, 62, 0.06);
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.diretriz {
  border: 1px solid var(--border-gold);
  padding: 28px;
}

.diretriz-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px;
}

.diretriz-title {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--off-white);
  margin-bottom: 8px;
  font-weight: 700
}

.diretriz-text {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0
}

/* REGULAMENTOS */
#regulamentos {
  background: var(--navy)
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
}

.reg-item {
  background: var(--navy);
  padding: 48px;
}

.reg-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: rgba(184, 147, 62, 0.15);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}

.reg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.reg-text {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.8;
  margin-bottom: 20px
}

.reg-points {
  list-style: none;
  margin-top: 16px
}

.reg-points li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

.reg-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ÁRBITROS */
#arbitros {
  background: var(--navy-mid)
}

.criterios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.criterio {
  border-top: 2px solid var(--gold);
  padding-top: 24px;
}

.criterio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 12px;
}

.criterio-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0
}

.declaracao-box {
  background: rgba(184, 147, 62, 0.07);
  border: 1px solid var(--border-gold);
  padding: 48px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.declaracao-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.declaracao-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.3;
}

.declaracao-text {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.72);
  line-height: 1.8;
  margin: 0
}

/* TRANSPARÊNCIA */
#transparencia {
  background: var(--navy)
}

.transp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  margin-top: 48px;
}

.transp-item {
  background: var(--navy);
  padding: 40px;
}

.transp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
}

.transp-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0
}

.equilibrio-box {
  margin-top: 64px;
  padding: 64px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--border-gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.equilibrio-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.5;
  font-style: italic;
}

.equilibrio-quote em {
  font-style: normal;
  color: var(--gold);
}

.equilibrio-text {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.72);
  line-height: 1.8;
  margin: 0
}

/* CONTATO */
#contato {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-gold);
}

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

.contato-form-section {
  border: 1px solid var(--border-gold);
  padding: 48px;
}

.contato-field {
  margin-bottom: 24px
}

.contato-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 10px;
}

.contato-field input,
.contato-field textarea,
.contato-field select {
  width: 100%;
  background: rgba(244, 239, 230, 0.05);
  border: 1px solid rgba(184, 147, 62, 0.25);
  color: var(--off-white);
  padding: 14px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.contato-field input:focus,
.contato-field textarea:focus,
.contato-field select:focus {
  border-color: var(--gold);
}

.contato-field select option {
  background: var(--navy);
  color: var(--off-white)
}

.contato-field textarea {
  min-height: 120px;
  resize: vertical
}

.protocolo-steps {
  margin-top: 32px
}

.proto-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.proto-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.proto-title {
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 4px;
  font-weight: 400
}

.proto-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0
}

.info-box {
  background: rgba(184, 147, 62, 0.08);
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  padding: 60px 5vw 40px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--off-white);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-light)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* FADE-IN ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0)
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0)
}

@media(max-width:1099px) {

  .two-col,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .diferenciais-grid {
    grid-template-columns: 1fr 1fr
  }

  .diferencial-item {
    border-right: none;
    border-bottom: 1px solid var(--border-gold)
  }

  .tipos-grid,
  .reg-grid,
  .equilibrio-box {
    grid-template-columns: 1fr
  }

  .transp-grid,
  .criterios-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-stats {
    display: none
  }

  .hero-badge {
    display: none !important;
  }

  .declaracao-box {
    grid-template-columns: 1fr
  }

  .diretrizes-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 48px;
    border: 1px solid var(--border-gold);
  }

  .diretriz {
    border: none;
    border-bottom: 1px solid var(--border-gold);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .diretriz:last-child {
    border-bottom: none;
  }

  .diretriz .diretriz-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    margin-bottom: 0;
  }

  .mvv-grid {
    grid-template-columns: 1fr
  }

  .mvv-item.full {
    grid-column: 1
  }

  /* MOBILE NAV: show hamburger, hide desktop links */
  nav .hamburger {
    display: flex !important;
  }

  nav .nav-links,
  nav .nav-cta {
    display: none !important;
  }

  /* OVERFLOW: grid children must allow shrinking below content size */
  .section-inner {
    max-width: 100%;
    overflow: hidden;
  }

  .two-col > * {
    min-width: 0;
  }

  /* ARBITRAGEM: hide table, show cards on mobile */
  .comparison-table {
    display: none !important;
  }

  .comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .comp-card {
    border: 1px solid var(--border-gold);
    padding: 24px;
  }

  .comp-card-dimension {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--off-white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gold);
  }

  .comp-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .comp-card-col p {
    font-size: 13px;
    color: rgba(244, 239, 230, 0.72);
    line-height: 1.65;
    margin: 0;
  }

  .comp-card-tag {
    font-size: 9px;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 4px 10px;
    display: inline-block;
  }

  .comp-card-tag.privada {
    color: var(--text-muted);
    border: 1px solid var(--border-light);
  }

  .comp-card-tag.publica {
    color: var(--gold);
    border: 1px solid var(--border-gold);
  }

  #arbitragem p,
  #arbitragem h3 {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* BUTTONS: equal width when stacked */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* FONT VISIBILITY: slightly larger for mobile readability */
  .mvv-label {
    font-size: 10px;
    letter-spacing: 3.5px;
    font-weight: 600;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .tipo-title {
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  /* FIXED BOTTOM CTA BAR */
  .mobile-bottom-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 5vw;
    background: rgba(12, 27, 46, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-gold);
  }

  .mobile-bottom-cta-link {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    transition: background 0.25s;
  }

  .mobile-bottom-cta-link:hover {
    background: var(--gold-light);
  }

  body {
    padding-bottom: 64px;
  }
}