/* ============================================================
   EMBALLERGE 2026 — CSS PREMIUM
   Tipografia: Cormorant Garamond (títulos) + Inter (corpo)
   Paleta: Azul-marinho #0d1235 | Dourado #c9a84c → #f0d98a
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;600;700;800&display=swap');

/* ── Variáveis ───────────────────────────────────────────── */
:root {
  --navy:        #0d1235;
  --navy-light:  #141942;
  --navy-mid:    #1a2060;
  --gold-dark:   #a07830;
  --gold-mid:    #c9a84c;
  --gold-light:  #e8c96a;
  --gold-bright: #f0d98a;
  --white:       #ffffff;
  --off-white:   #f5f3ee;
  --muted:       rgba(255,255,255,0.55);
  --border-gold: rgba(201,168,76,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Montserrat', sans-serif;

  --radius:  6px;
  --radius-lg: 12px;
  --shadow:  0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Tipografia ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); line-height: 1.0; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-family: var(--font-accent); letter-spacing: 0.08em; }
p  { font-size: 1.05rem; line-height: 1.8; color: var(--muted); }

.text-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-bright) 50%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 600px; margin: 20px auto 0; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
section { padding: 120px 0; }

/* ── Botões ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright), var(--gold-mid));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold-mid);
  border: 1px solid var(--gold-mid);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

/* ── Linha decorativa ────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  margin: 20px 0;
}
.gold-line.center { margin: 20px auto; }

/* ══════════════════════════════════════════════════════════
   HEADER — Semi-transparente
   ══════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#header.scrolled {
  background: rgba(13,18,53,0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
nav ul {
  display: flex;
  gap: 40px;
}
nav ul li a {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color var(--transition);
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-mid);
  transition: width var(--transition);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--gold-light);
}
nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* ══════════════════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-video-wrapper,
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video,
.hero-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,18,53,0.85) 0%, rgba(13,18,53,0.5) 60%, rgba(13,18,53,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.hero-content h1 { margin-bottom: 20px; line-height: 1.0; }
.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 48px;
  max-width: 560px;
  color: rgba(255,255,255,0.75);
}
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--gold-mid);
  width: 28px;
  border-radius: 4px;
}
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold-mid);
}
.slider-arrow-prev { left: 32px; }
.slider-arrow-next { right: 32px; }

/* ══════════════════════════════════════════════════════════
   ESTATÍSTICAS
   ══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  background: var(--navy-light);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px;
  border-right: 1px solid var(--border-gold);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   SOBRE — GRID
   ══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-wrapper:hover .about-image { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════
   SERVIÇOS — CARDS
   ══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: rgba(20,25,66,0.6);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,18,53,0.9) 0%, transparent 60%);
}
.service-content {
  padding: 28px 32px 36px;
}
.service-content h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.service-content p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.link-explore {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.link-explore:hover { gap: 14px; }

/* ══════════════════════════════════════════════════════════
   DIFERENCIAIS — LINHA HORIZONTAL COMPLETA
   ══════════════════════════════════════════════════════════ */
.features-section {
  background-image: url('../images/fundo-geral.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,13,38,0.88);
}
.features-section .container { position: relative; z-index: 1; }

.features-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-item {
  padding: 48px 28px;
  border-right: 1px solid var(--border-gold);
  text-align: center;
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(201,168,76,0.06); }
.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}
.feature-item h3 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.feature-item p { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════
   CARROSSEL DE CLIENTES
   ══════════════════════════════════════════════════════════ */
.clients-section {
  padding: 100px 0;
  background: var(--navy-light);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.clients-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.clients-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.client-slide {
  flex: 0 0 calc(20% - 23px);
  min-width: 0;
}
.client-card {
  background: rgba(255,255,255,1.00);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: var(--transition);
}
.client-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.client-card img {
  max-height: 50px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.1);
  transition: filter var(--transition);
}
.client-card:hover img { filter: none; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold-mid);
}
.carousel-dots-list {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold-mid);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   PAGE HEADER (páginas internas)
   ══════════════════════════════════════════════════════════ */
.page-header {
  padding: 180px 0 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/fundo001.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,18,53,0.7);
}
.page-header-content {
  position: relative;
  z-index: 1;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   MISSÃO / VISÃO
   ══════════════════════════════════════════════════════════ */
.mv-section {
  background-image: url('../images/fundo-geral.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.mv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,13,38,0.92);
}
.mv-section .container { position: relative; z-index: 1; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
}
.mv-card {
  padding: 70px 60px;
  background: rgba(20,25,66,0.5);
  border-right: 1px solid var(--border-gold);
}
.mv-card:last-child { border-right: none; }
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
.mv-card p { font-size: 1.05rem; line-height: 1.85; }
.mv-card strong { color: var(--white); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   VALORES
   ══════════════════════════════════════════════════════════ */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.valor-card {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(20,25,66,0.5);
  transition: var(--transition);
}
.valor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow);
}
.valor-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.valor-card:hover .valor-img { transform: scale(1.05); }
.valor-text {
  padding: 28px 24px;
}
.valor-text h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 10px;
}
.valor-text p { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════
   PROPÓSITO
   ══════════════════════════════════════════════════════════ */
.proposito-section {
  background-image: url('../images/fundo-geral.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.proposito-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,13,38,0.9);
}
.proposito-section .container { position: relative; z-index: 1; }
.proposito-content { max-width: 800px; }
.proposito-content h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.proposito-content p { font-size: 1.1rem; margin-bottom: 24px; }
.proposito-content strong { color: var(--gold-light); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   SERVIÇOS — PÁGINA LISTAGEM FULL (servicos.html)
   ══════════════════════════════════════════════════════════ */
.services-grid-full { display: flex; flex-direction: column; gap: 100px; }
.service-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-card-full.reverse { direction: rtl; }
.service-card-full.reverse > * { direction: ltr; }
.scf-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}
.scf-img img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.6s ease; }
.scf-img:hover img { transform: scale(1.04); }
.scf-body h2 { margin-bottom: 8px; }
.scf-body p { margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════
   SERVIÇOS — PÁGINA LISTAGEM (alternado)
   ══════════════════════════════════════════════════════════ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-gold);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-img-col { order: 2; }
.service-row.reverse .service-text-col { order: 1; }
.service-img-col .img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}
.service-img-col .img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-img-col .img-frame:hover img { transform: scale(1.05); }
.service-text-col h2 {
  color: var(--gold-light);
  margin-bottom: 24px;
}
.service-text-col p { margin-bottom: 28px; }
.feature-list { margin-bottom: 36px; }
.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--gold-mid);
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.cta-section {
  background-image: url('../images/fundo-geral.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,13,38,0.85);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 24px; }
.cta-section p { margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: #080c1f;
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-certifications {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-certifications img {
  height: 120px;
  width: auto;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.footer-certifications img:hover { opacity: 1; }
footer h4 {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 24px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-contact strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .features-row { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(4),
  .feature-item:nth-child(5) { border-top: 1px solid var(--border-gold); }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid,
  .mv-grid,
  .service-row { grid-template-columns: 1fr; gap: 40px; }
  .service-card-full { grid-template-columns: 1fr; gap: 40px; }
  .service-card-full.reverse { direction: ltr; }
  .scf-img img { height: 300px; }
  .service-row.reverse .service-img-col,
  .service-row.reverse .service-text-col { order: initial; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .stat-item:last-child { border-bottom: none; }
  .client-slide { flex: 0 0 calc(33.33% - 19px); }
}

@media (max-width: 640px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .service-card-full { gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4),
  .feature-item:nth-child(5) { border-top: 1px solid var(--border-gold); }
  .valores-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .client-slide { flex: 0 0 calc(50% - 14px); }
  nav ul { gap: 20px; }
  nav ul li a { font-size: 0.7rem; }
  .slider-arrow { display: none; }
  .hero-btns { flex-direction: column; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { border-right: none; border-bottom: 1px solid var(--border-gold); }
}
