/* ═══════════════════════════════════════════════════════════════
   America Multiservices Equipment LLC — styles.css v1.0
   ─────────────────────────────────────────────────────────────
   Paleta: preto + CAT gold + vermelho/azul/branco bandeira
   Tipografia: Oswald (headings) + Inter (body)
   Mobile-first, dark theme, prep pro Elementor depois.
   ═══════════════════════════════════════════════════════════════ */

/* ─────────── RESET & TOKENS ─────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --surface: #171717;
  --surface-2: #1f1f1f;
  --border: #2a2a2a;
  --text: #f5f5f5;
  --text-dim: #a3a3a3;
  --text-muted: #737373;
  --gold: #FFC72C;
  --gold-dark: #E5B01C;
  --red: #B22234;
  --blue: #0A3161;
  --white: #ffffff;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --header-h: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* Skip link — acessibilidade */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--gold); color: #000;
  padding: 10px 16px; font-weight: 700;
  z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─────────── HEADER ─────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.header.scrolled,
.header.is-internal { background: rgba(10, 10, 10, 0.92); border-bottom-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; max-width: 1440px; margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 48px; width: 48px; border-radius: 50%; }
.nav-brand-text { font-family: 'Oswald'; font-weight: 700; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; line-height: 1.1; }
.nav-brand-text span { color: var(--gold); display: block; font-size: 10px; letter-spacing: 0.2em; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text-dim); transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.08em; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #000; padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255, 199, 44, 0.3); color: #000; }

/* Mobile hamburger */
.nav-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  padding: 8px; color: var(--white);
}
.nav-toggle svg { width: 28px; height: 28px; }
.nav-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 90vw);
  background: var(--bg-2); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform 0.3s ease;
  z-index: 150; padding: 96px 32px 32px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.nav-drawer.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,0.6); }
.nav-drawer a {
  display: block; padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.nav-drawer a.cta {
  background: var(--gold); color: #000; border: none;
  margin-top: 24px; border-radius: var(--radius-sm);
  text-align: center; padding: 16px;
}
.nav-drawer-close {
  position: absolute; top: 20px; right: 20px;
  background: transparent; border: none; color: var(--white);
  font-size: 24px; cursor: pointer; padding: 8px;
}
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 140;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

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

/* ─────────── HERO (home) ─────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero-216b-action.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.55) contrast(1.1);
  transform: scale(1.05);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.1) 40%, rgba(10,10,10,0.9) 100%);
}
.hero-flag-strip {
  position: absolute; top: 100px; right: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 6px; padding-right: 32px;
}
.hero-flag-strip div { height: 6px; width: 80px; }
.hero-flag-strip .r { background: var(--red); }
.hero-flag-strip .w { background: var(--white); }
.hero-flag-strip .b { background: var(--blue); }
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 160px 32px 120px; max-width: 1100px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 199, 44, 0.12); border: 1px solid rgba(255, 199, 44, 0.4);
  padding: 8px 16px; border-radius: 999px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 12px var(--gold); }
.hero h1 {
  font-size: clamp(40px, 8vw, 96px);
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 24px; color: var(--white);
}
.hero h1 .accent { color: var(--gold); position: relative; }
.hero p.lede {
  font-size: clamp(16px, 2vw, 20px); color: var(--text-dim);
  max-width: 720px; margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(255,199,44,0.35); color: #000; }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: #000; }
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: floatY 2.2s ease-in-out infinite;
}
.hero-scroll-hint .line { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--gold)); }
@keyframes floatY { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ─────────── PAGE HERO (internal pages) ─────────── */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: -10%; width: 60%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,199,44,0.08), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(32px, 6vw, 72px); text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero p.lede { font-size: clamp(15px, 1.8vw, 19px); color: var(--text-dim); max-width: 720px; }
.breadcrumb { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─────────── TRUST STRIP ─────────── */
.trust {
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.trust-item .icon {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,199,44,0.12);
  display: grid; place-items: center; color: var(--gold); font-size: 18px; flex-shrink: 0;
}
.trust-item .text { font-size: 13px; color: var(--text-dim); }
.trust-item .text strong { color: var(--white); display: block; font-size: 14px; font-weight: 600; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

/* ─────────── SECTIONS ─────────── */
.section { padding: 140px 0; }
.section-sm { padding: 100px 0; }
.section-alt { background: var(--bg-2); }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; position: relative; padding-left: 40px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 28px; height: 1px;
  background: var(--gold); transform: translateY(-50%);
}
.section-title {
  font-size: clamp(36px, 5vw, 64px); text-transform: uppercase;
  margin-bottom: 24px; max-width: 900px;
}
.section-title .accent { color: var(--gold); }
.section-lede { font-size: 18px; color: var(--text-dim); max-width: 720px; margin-bottom: 0; }

/* ─────────── SERVICES GRID ─────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 72px;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border); padding: 40px 32px 36px;
  border-radius: var(--radius); position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,199,44,0.35); background: var(--surface-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-family: 'Oswald'; font-size: 14px; color: var(--text-muted);
  letter-spacing: 0.2em; margin-bottom: 20px;
}
.service-card h3 {
  font-size: 28px; text-transform: uppercase; margin-bottom: 16px; color: var(--white);
}
.service-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 24px; }
.service-card .learn-more {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 14px; }
.service-card.featured { background: linear-gradient(145deg, #1a1a1a, #0f0f0f); }
.service-card .icon-box {
  width: 56px; height: 56px; background: rgba(255,199,44,0.1); border: 1px solid rgba(255,199,44,0.25);
  border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 28px;
  color: var(--gold); font-size: 24px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ─────────── FEATURE SECTIONS ─────────── */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.feature.reverse { grid-template-columns: 1fr 1fr; }
.feature.reverse .feature-img { order: 2; }
.feature-img {
  position: relative; height: 560px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4));
  pointer-events: none;
}
.feature-img .tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: rgba(10,10,10,0.8); border: 1px solid var(--gold);
  padding: 10px 16px; border-radius: 999px;
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.feature-content h2 { font-size: clamp(32px, 4.5vw, 56px); text-transform: uppercase; margin-bottom: 24px; }
.feature-content h2 .accent { color: var(--gold); }
.feature-content p { color: var(--text-dim); font-size: 17px; margin-bottom: 20px; }
.feature-bullets { list-style: none; margin: 32px 0 40px; }
.feature-bullets li {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px; color: var(--text);
  font-size: 15px;
}
.feature-bullets li::before {
  content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,199,44,0.6); flex-shrink: 0;
}
@media (max-width: 900px) {
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-img { order: 0; }
  .feature-img { height: 420px; }
}

/* ─────────── EQUIPMENT SHOWCASE ─────────── */
.equipment-section { background: var(--bg-2); }
.equipment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 72px;
}
.equipment-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s; cursor: pointer;
  display: flex; flex-direction: column;
}
.equipment-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.equipment-img {
  aspect-ratio: 4/3; background: linear-gradient(145deg, #1f1f1f, #0f0f0f);
  display: grid; place-items: center; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.equipment-img .ghost {
  font-family: 'Oswald'; font-size: 80px; color: rgba(255,199,44,0.08);
  font-weight: 700; letter-spacing: -0.02em;
}
.equipment-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.9));
  pointer-events: none;
}
.equipment-card.has-photo .ghost { display: none; }
.equipment-body { padding: 24px 28px 28px; position: relative; flex: 1; display: flex; flex-direction: column; }
.equipment-category {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.equipment-model { font-family: 'Oswald'; font-size: 24px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.equipment-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 18px; flex: 1; }
.equipment-cta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--border); gap: 12px;
}
.equipment-cta span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.equipment-cta a { color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
@media (max-width: 980px) { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .equipment-grid { grid-template-columns: 1fr; } }

/* ─────────── BRANDS STRIP ─────────── */
.brands {
  padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.brands-label {
  text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 32px;
}
.brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 40px; align-items: center;
}
.brand {
  font-family: 'Oswald'; font-weight: 700; font-size: 22px; text-align: center;
  color: var(--text-dim); letter-spacing: 0.05em; text-transform: uppercase;
  opacity: 0.7; transition: opacity 0.2s, color 0.2s;
}
.brand:hover { opacity: 1; color: var(--gold); }
@media (max-width: 900px) { .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } .brand { font-size: 18px; } }

/* ─────────── SERVICE AREA ─────────── */
.service-area {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.service-area-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.service-area h2 { font-size: clamp(32px, 4.5vw, 52px); text-transform: uppercase; margin-bottom: 20px; }
.service-area p { color: var(--text-dim); font-size: 17px; margin-bottom: 28px; }
.cities { display: flex; flex-wrap: wrap; gap: 10px; }
.cities span {
  background: rgba(255,199,44,0.08); border: 1px solid rgba(255,199,44,0.2);
  padding: 8px 16px; border-radius: 999px; font-size: 13px; color: var(--text);
  font-weight: 500;
}
.service-area-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: radial-gradient(circle at 30% 30%, rgba(255,199,44,0.1), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(178,34,52,0.08), transparent 60%),
              linear-gradient(135deg, #0f0f0f, #1a1a1a);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.service-area-visual .pin {
  position: absolute; background: var(--gold); border-radius: 50%;
  width: 14px; height: 14px; box-shadow: 0 0 0 6px rgba(255,199,44,0.2), 0 0 40px var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
.service-area-visual .pin::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold); animation: ping 2.5s ease-in-out infinite;
}
.service-area-visual .pin.p1 { top: 45%; left: 35%; }
.service-area-visual .pin.p2 { top: 35%; left: 55%; width: 10px; height: 10px; animation-delay: 0.7s; }
.service-area-visual .pin.p3 { top: 55%; left: 25%; width: 10px; height: 10px; animation-delay: 1.4s; }
.service-area-visual .label {
  font-family: 'Oswald'; font-size: 42px; color: rgba(255,199,44,0.15);
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; text-align: center;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 6px rgba(255,199,44,0.2), 0 0 40px var(--gold); } 50% { box-shadow: 0 0 0 12px rgba(255,199,44,0.1), 0 0 60px var(--gold); } }
@keyframes ping { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(3); opacity: 0; } }
@media (max-width: 900px) { .service-area-grid { grid-template-columns: 1fr; } }

/* ─────────── CTA / QUOTE ─────────── */
.cta-section {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1008 0%, #0a0a0a 50%, #08101a 100%);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,199,44,0.1), transparent 50%);
  pointer-events: none;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.cta-text h2 { font-size: clamp(36px, 5vw, 64px); text-transform: uppercase; margin-bottom: 20px; line-height: 1; }
.cta-text h2 .accent { color: var(--gold); }
.cta-text p { font-size: 17px; color: var(--text-dim); margin-bottom: 32px; }
.cta-phone {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 20px; transition: border-color 0.2s, transform 0.2s;
}
.cta-phone:hover { border-color: var(--gold); transform: translateY(-2px); }
.cta-phone .icon { color: var(--gold); font-size: 24px; }
.cta-phone .label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.2em; text-transform: uppercase; }
.cta-phone .number { font-family: 'Oswald'; font-size: 28px; font-weight: 700; color: var(--white); }
.cta-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px;
}
.cta-form h3 { font-size: 24px; text-transform: uppercase; margin-bottom: 8px; }
.cta-form .sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { display: block; margin-bottom: 12px; }
.form-field label { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text);
  padding: 12px 14px; border-radius: var(--radius-sm); font-family: inherit; font-size: 14px;
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) { border-color: var(--red); }
.form-field .hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.form-submit {
  width: 100%; background: var(--gold); color: #000; padding: 16px;
  border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,199,44,0.3); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message {
  padding: 12px 16px; border-radius: var(--radius-sm); margin-top: 12px; font-size: 14px;
  display: none;
}
.form-message.ok { display: block; background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.4); color: #4ade80; }
.form-message.err { display: block; background: rgba(178, 34, 52, 0.12); border: 1px solid rgba(178, 34, 52, 0.4); color: #f87171; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ─────────── FAQ accordion ─────────── */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 8px; max-width: 860px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(255,199,44,0.3); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 15px; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--gold); font-size: 24px; font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--text-dim); font-size: 14px; }

/* ─────────── PROCESS STEPS ─────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
}
.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; position: relative;
}
.step-num {
  position: absolute; top: -20px; left: 20px;
  font-family: 'Oswald'; font-size: 64px; color: rgba(255,199,44,0.15);
  font-weight: 700; line-height: 1;
}
.step-card h4 { font-size: 18px; text-transform: uppercase; margin: 24px 0 10px; color: var(--white); }
.step-card p { font-size: 13px; color: var(--text-dim); }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ─────────── FOOTER ─────────── */
.footer {
  background: #050505; padding: 80px 0 30px; border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; max-width: 340px; }
.footer-brand img { height: 64px; width: 64px; border-radius: 50%; }
.footer-brand p { color: var(--text-dim); font-size: 14px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-dim); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--text-dim); }
.footer-contact-item span.icon { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-flag { display: flex; gap: 2px; }
.footer-flag div { height: 4px; width: 40px; }
.footer-flag .r { background: var(--red); }
.footer-flag .w { background: var(--white); }
.footer-flag .b { background: var(--blue); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─────────── SPANISH BADGE (floating) ─────────── */
.spanish-badge {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  background: var(--red); color: white; padding: 12px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 700; box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: transform 0.2s;
}
.spanish-badge:hover { transform: translateY(-3px); color: white; }
.spanish-badge .flag-emoji { font-size: 16px; }
@media (max-width: 640px) { .spanish-badge { bottom: 12px; right: 12px; padding: 10px 16px; font-size: 12px; } }

/* ─────────── REVEAL ANIMATION ─────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ─────────── 404 ─────────── */
.notfound {
  min-height: 100vh; display: grid; place-items: center; padding: var(--header-h) 20px 20px;
}
.notfound-content { text-align: center; max-width: 520px; }
.notfound-content .code {
  font-family: 'Oswald'; font-size: clamp(100px, 25vw, 200px); line-height: 1; color: var(--gold);
  text-shadow: 0 0 80px rgba(255,199,44,0.3); margin-bottom: 16px;
}
.notfound-content h1 { font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; margin-bottom: 12px; }
.notfound-content p { color: var(--text-dim); margin-bottom: 32px; }

/* ─────────── PRINT ─────────── */
@media print {
  .header, .nav-drawer, .nav-backdrop, .spanish-badge, .cta-section { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
