@font-face {
  font-family: 'Luciole';
  src: url('./fonts/Luciole-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Luciole';
  src: url('./fonts/Luciole-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

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

:root {
  --navy: #0d182a;
  --navy-mid: #152034;
  --navy-light: #1e2f47;
  --cream: #ede1ce;
  --cream-light: #f5ede0;
  --cream-muted: #c9bda8;
  --white: #ffffff;
  --text-muted: rgba(237, 225, 206, 0.55);
  --success: #3a5a3a;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 24, 42, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--navy-light);
  border: 2px solid var(--cream-muted);
  border-radius: 12px;
  padding: 3rem 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.4s ease;
}

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

.modal-icon {
  width: 60px;
  height: 60px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

.modal-content h2 {
  font-family: 'Luciole', sans-serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 700;
}

.modal-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-close-btn {
  background: var(--success);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-family: 'Luciole', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.modal-close-btn:hover {
  background: #2d4a2d;
  transform: scale(1.05);
}

.modal-close-btn:active {
  transform: scale(0.98);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Luciole', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 6vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(13, 24, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(237, 225, 206, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex: 1;
}

.nav-links a {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-platform {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Luciole', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-platform::after {
  content: '↗';
  font-size: 0.7rem;
  opacity: 0.6;
}

.nav-platform:hover {
  color: var(--cream);
}

.nav-cta {
  border: 0.5px solid var(--cream-muted);
  color: var(--cream);
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Luciole', sans-serif;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(30, 47, 71, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(237, 225, 206, 0.04) 0%, transparent 60%);
}

.hero-line {
  position: absolute;
  top: 0;
  right: 28vw;
  width: 0.5px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(237, 225, 206, 0.15) 30%, rgba(237, 225, 206, 0.15) 70%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--cream-muted);
}

.hero h1 {
  font-family: 'Questrial', sans-serif;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  color: var(--cream-light);
}

.hero h1 em {
  color: var(--cream-muted);
  font-style: normal;
  opacity: 0.75;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--cream);
  color: var(--navy);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--cream-light);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--cream);
}

.btn-ghost::after {
  content: '↓';
}

/* HERO BRAND LOGO */
.hero-brand {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand-frame {
  position: relative;
  width: clamp(80%, 30vw, 440px);
  max-width: 600px;
  margin-top: 32px;
}

.hero-brand-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(237, 225, 206, 0.18) 0%, rgba(237, 225, 206, 0.04) 50%, rgba(237, 225, 206, 0.12) 100%);
  z-index: 0;
}

.hero-brand-frame::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 8px;
  background: radial-gradient(ellipse at center, rgba(30, 47, 71, 0.6) 0%, transparent 70%);
  z-index: -1;
}

.hero-brand-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  background: rgba(13, 24, 42, 0.5);
  border: 0.5px solid rgba(237, 225, 206, 0.15);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-brand-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

.hero-brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(237, 225, 206, 0.35);
  text-align: center;
  font-family: 'Luciole', sans-serif;
  border-top: 0.5px solid rgba(237, 225, 206, 0.08);
  padding-top: 1rem;
  width: 100%;
}

/* Corner accents */
.hero-brand-corner {
  position: absolute;
  width: 16px;
  height: 16px;
}

.hero-brand-corner-tl {
  top: -1px;
  left: -1px;
  border-top: 1px solid rgba(237, 225, 206, 0.5);
  border-left: 1px solid rgba(237, 225, 206, 0.5);
}

.hero-brand-corner-tr {
  top: -1px;
  right: -1px;
  border-top: 1px solid rgba(237, 225, 206, 0.5);
  border-right: 1px solid rgba(237, 225, 206, 0.5);
}

.hero-brand-corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 1px solid rgba(237, 225, 206, 0.5);
  border-left: 1px solid rgba(237, 225, 206, 0.5);
}

.hero-brand-corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid rgba(237, 225, 206, 0.5);
  border-right: 1px solid rgba(237, 225, 206, 0.5);
}

@media (max-width: 1360px) {
  .hero {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 96px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-brand {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-badge {
  position: absolute;
  right: 8vw;
  bottom: 10vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.5;
}

.hero-badge-text {
  font-family: 'Questrial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--cream-muted);
}

.hero-badge-line {
  width: 0.5px;
  height: 60px;
  background: var(--cream-muted);
}

/* SECTION BASE */
section {
  padding: 8rem 6vw;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 0.5px;
  background: var(--cream-muted);
}

h2 {
  font-family: 'Questrial', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream-light);
  margin-bottom: 1.5rem;
}

h2 em {
  color: var(--cream-muted);
  font-style: normal;
  opacity: 0.75;
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 0.5px;
  background: rgba(237, 225, 206, 0.1);
  margin: 0 6vw;
  width: calc(100% - 12vw);
}

/* SOBRE */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  border-left: 0.5px solid rgba(237, 225, 206, 0.2);
  padding-left: 1.5rem;
}

.value-item h4 {
  font-family: 'Questrial', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* SERVIÇOS */
.services {
  background: var(--navy-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}

.service-card {
  background: var(--navy-light);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card:hover {
  background: #243754;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-family: 'Questrial', sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(237, 225, 206, 0.08);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  border: 0.5px solid rgba(237, 225, 206, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cream-muted);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: 'Questrial', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

.service-detail {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(237, 225, 206, 0.1);
}

.service-detail ul {
  list-style: none;
}

.service-detail li {
  font-size: 0.82rem;
  color: var(--cream-muted);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 300;
}

.service-detail li::before {
  content: '—';
  color: rgba(237, 225, 206, 0.3);
}

/* DIFERENCIAIS */
.differentials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 5rem;
}

.differentials-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  align-self: end;
  padding-bottom: 0.4rem;
}

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

.diff-card {
  background: var(--navy-light);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.25s;
}

.diff-card:hover {
  background: #1a2b43;
}

.diff-num {
  font-family: 'Questrial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--cream-muted);
  margin-bottom: 2rem;
}

.diff-card h4 {
  font-family: 'Questrial', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream-light);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.diff-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}

/* CLIENTES PLACEHOLDER */
.clients {
  background: var(--navy-mid);
}

.clients-placeholder {
  margin-top: 4rem;
  border: 0.5px dashed rgba(237, 225, 206, 0.15);
  border-radius: 2px;
  padding: 4rem;
  text-align: center;
}

.clients-placeholder p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-family: 'Questrial', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.clients-logo-grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.logo-slot {
  width: 120px;
  height: 40px;
  border: 0.5px dashed rgba(237, 225, 206, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slot span {
  font-size: 0.65rem;
  color: rgba(237, 225, 206, 0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* STATS */
.stats-row {
  display: flex;
  gap: 0;
  margin-top: 5rem;
  border-top: 0.5px solid rgba(237, 225, 206, 0.1);
  border-bottom: 0.5px solid rgba(237, 225, 206, 0.1);
}

.stat-item {
  flex: 1;
  padding: 2.5rem 3rem;
  border-right: 0.5px solid rgba(237, 225, 206, 0.1);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Questrial', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-placeholder {
  font-size: 0.72rem;
  color: rgba(237, 225, 206, 0.2);
  font-family: 'Questrial', sans-serif;
  margin-top: 0.3rem;
}

.responsavel-section {
  padding: 8rem 6vw;
}

.responsavel-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.responsavel-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.responsavel-image img {
  width: 100%;
  height: auto;
  display: block;
}

.responsavel-info h2 {
  font-family: 'Questrial', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream-light);
  margin-bottom: 0.5rem;
}

.responsavel-role {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 2rem;
}

.responsavel-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.responsavel-curriculum h4 {
  font-family: 'Luciole', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.responsavel-curriculum ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsavel-curriculum li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}

.responsavel-curriculum li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cream-muted);
  font-weight: bold;
}

@media (max-width: 768px) {
  .responsavel-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* CONTATO */
.contact {
  background: var(--navy-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin-top: 4rem;
}

.contact-info h3 {
  font-family: 'Questrial', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.5px solid rgba(237, 225, 206, 0.08);
}

.contact-line:last-child {
  border-bottom: none;
}

.contact-line-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  min-width: 80px;
}

.contact-line-value {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 300;
}

.contact-line-value a {
  color: var(--white);
  text-decoration: none;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(237, 225, 206, 0.04);
  border: 0.5px solid rgba(237, 225, 206, 0.15);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: 'Luciole', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(237, 225, 206, 0.4);
  background: rgba(237, 225, 206, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--cream);
  color: var(--navy);
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Luciole', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--cream-light);
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  padding: 3rem 6vw;
  border-top: 0.5px solid rgba(237, 225, 206, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer .logo img {
  height: 28px;
}

.footer-text {
  font-size: 0.75rem;
  color: rgba(237, 225, 206, 0.3);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.72rem;
  color: rgba(237, 225, 206, 0.3);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream-muted);
}

/* CONFORMIDADES */
.conformidades-section {
  background: var(--navy);
}

.conformidades-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.conformidades-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.conformidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(237, 225, 206, 0.08);
  border: 0.5px solid rgba(237, 225, 206, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.conformidade-card {
  background: var(--navy);
  padding: 2rem 1.8rem;
  transition: background 0.25s;
}

.conformidade-card:hover {
  background: var(--navy-light);
}

.conformidade-tag {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.9rem;
  border-left: 2px solid var(--cream-muted);
  padding-left: 0.7rem;
}

.conformidade-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.conformidades-note {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.8;
  font-weight: 300;
  border-left: 0.5px solid rgba(237, 225, 206, 0.2);
  padding-left: 1.5rem;
  max-width: 820px;
}

/* NRs */
.nrs-section {
  background: var(--navy-mid);
}

.nrs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.nrs-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.nrs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.nr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.8rem 1rem;
  border: 0.5px solid rgba(237, 225, 206, 0.12);
  border-radius: 4px;
  text-align: center;
  background: rgba(237, 225, 206, 0.025);
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}

.nr-item:hover {
  border-color: rgba(237, 225, 206, 0.3);
  background: rgba(237, 225, 206, 0.05);
}

.nr-code {
  font-family: 'Questrial', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream-light);
  letter-spacing: 0.02em;
}

.nr-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .conformidades-header,
  .nrs-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .conformidades-grid {
    grid-template-columns: 1fr;
  }

  .nrs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  width: 65%;
  margin-left: auto;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 19, 34, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(237, 225, 206, 0.1);
  flex-direction: column;
  padding: 0.5rem 6vw 2rem;
  z-index: 98;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-drawer .drawer-link {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(237, 225, 206, 0.07);
  display: block;
  transition: color 0.2s;
}

.mobile-drawer .drawer-link:hover {
  color: var(--cream);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.drawer-btn-outline {
  display: block;
  text-align: center;
  color: var(--cream-muted);
  border: 0.5px solid rgba(237, 225, 206, 0.2);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Luciole', sans-serif;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.drawer-btn-outline:hover {
  color: var(--cream);
  border-color: rgba(237, 225, 206, 0.4);
}

.drawer-btn-filled {
  display: block;
  text-align: center;
  background: var(--cream);
  color: var(--navy);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Luciole', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.drawer-btn-filled:hover {
  opacity: 0.88;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 0 5vw;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-drawer {
    display: flex;
  }

  section {
    padding: 5rem 5vw;
  }

  .about-grid,
  .services-grid,
  .differentials-header,
  .diff-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 0.5px solid rgba(237, 225, 206, 0.1);
  }

  .hero-badge {
    display: none;
  }
}