/* ── RESET & VARS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:      #C0392B;
  --red-dark: #922B21;
  --red-light:#E74C3C;
  --charcoal: #1A1A1A;
  --smoke:    #F5F5F5;
  --white:    #FFFFFF;
  --gray:     #6C757D;
  --border:   #DEE2E6;
  --ff-head:  'Barlow Condensed', sans-serif;
  --ff-body:  'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--charcoal); background: var(--white); line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  background: rgba(26,26,26,0.97); backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--red);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; background: var(--red); border-radius: 6px; display: grid; place-items: center; font-family: var(--ff-head); font-size: 20px; color: white; font-weight: 800; flex-shrink: 0; }
.nav-logo-text { color: white; font-family: var(--ff-head); font-size: 18px; line-height: 1.2; }
.nav-logo-text small { display: block; font-size: 11px; font-family: var(--ff-body); font-weight: 400; color: #aaa; letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--red-light); }
.nav-cta { background: var(--red); color: white; padding: 8px 20px; border-radius: 4px; text-decoration: none; font-size: 13px; font-weight: 600; transition: background .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--red-dark); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: .3s; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 899; background: #111; border-bottom: 2px solid var(--red); padding: 16px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: #ccc; text-decoration: none; padding: 11px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ── PAGE HERO (internal pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 50%, #2C1010 100%);
  padding: 120px 24px 64px;
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(192,57,43,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(192,57,43,0.05) 1px,transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.35); color: var(--red-light); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 3px; margin-bottom: 16px; }
.page-title { font-family: var(--ff-head); font-size: clamp(36px,5vw,60px); font-weight: 800; color: white; line-height: 1.0; }
.page-title em { color: var(--red-light); font-style: normal; }
.page-subtitle { color: #aaa; font-size: 17px; margin-top: 12px; max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 20px; font-size: 13px; color: #666; }
.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb span { color: #555; }

/* ── COMMONS ── */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section-title { font-family: var(--ff-head); font-size: clamp(28px,4vw,44px); font-weight: 800; line-height: 1.1; color: var(--charcoal); }
.section-title em { color: var(--red); font-style: normal; }
.section-body { color: var(--gray); font-size: 16px; line-height: 1.75; margin-top: 14px; }
.divider { width: 48px; height: 3px; background: var(--red); margin: 18px 0; }

/* ── BUTTONS ── */
.btn-primary { background: var(--red); color: white; padding: 13px 28px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 15px; transition: background .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border: 2px solid var(--red); color: var(--red); padding: 11px 28px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 15px; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: var(--red); color: white; }

/* ── CARDS ── */
.card { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 32px 28px; transition: all .25s; position: relative; overflow: hidden; }
.card::before { content:""; position:absolute; top:0;left:0;right:0;height:3px; background:var(--red); transform:scaleX(0);transform-origin:left;transition:transform .3s; }
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-3px); border-color: rgba(192,57,43,0.2); }
.card:hover::before { transform: scaleX(1); }
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card-title { font-family: var(--ff-head); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.card-desc { color: var(--gray); font-size: 14px; line-height: 1.65; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { background: var(--smoke); color: var(--gray); font-size: 11px; font-weight: 600; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 20px; }

/* ── FOOTER ── */
footer { background: var(--charcoal); color: #aaa; border-top: 3px solid var(--red); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--red); border-radius: 6px; display: grid; place-items: center; color: white; font-family: var(--ff-head); font-size: 22px; font-weight: 800; }
.footer-logo-text { color: white; font-family: var(--ff-head); font-size: 16px; font-weight: 700; line-height: 1.2; }
.footer-logo-text small { display: block; font-size: 11px; font-family: var(--ff-body); font-weight: 400; color: #777; }
.footer-about { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-legal { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 12px; line-height: 1.9; color: #666; }
.footer-legal strong { color: #999; }
.footer-col-title { color: white; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #888; font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--red-light); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { font-size: 14px; display: flex; gap: 8px; }
.footer-contact-list .ico { flex-shrink: 0; }
.footer-bottom-wrap { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: #555; }
.footer-pages { display: flex; gap: 20px; }
.footer-pages a { font-size: 13px; color: #555; text-decoration: none; }
.footer-pages a:hover { color: var(--red-light); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: #111; border-top: 2px solid var(--red);
  padding: 20px 24px;
}
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-text { font-size: 14px; color: #ccc; line-height: 1.5; flex: 1; min-width: 260px; }
.cookie-text a { color: var(--red-light); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept { background: var(--red); color: white; border: none; padding: 10px 22px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; }
.cookie-accept:hover { background: var(--red-dark); }
.cookie-reject { background: transparent; color: #888; border: 1px solid #444; padding: 10px 22px; border-radius: 4px; font-size: 14px; cursor: pointer; transition: all .2s; }
.cookie-reject:hover { border-color: #888; color: #ccc; }

/* ── INFO BOX (legal pages) ── */
.info-box { background: var(--smoke); border-left: 4px solid var(--red); border-radius: 4px; padding: 20px 24px; margin: 24px 0; font-size: 14px; line-height: 1.8; color: var(--charcoal); }
.info-box strong { font-weight: 600; }

/* ── LEGAL PAGE ── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 64px 24px 80px; }
.legal-wrap h2 { font-family: var(--ff-head); font-size: 26px; font-weight: 800; color: var(--charcoal); margin: 40px 0 10px; }
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap li { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 6px; }
.legal-date { font-size: 13px; color: #aaa; margin-bottom: 32px; display: block; }

/* ── NORMAS STRIP ── */
.normas-strip { background: var(--charcoal); padding: 36px 24px; }
.normas-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.normas-label { color: #888; font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.normas-list { display: flex; gap: 12px; flex-wrap: wrap; }
.norma-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: white; font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 4px; font-family: var(--ff-head); letter-spacing: 1px; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--red); padding: 56px 24px; text-align: center; }
.cta-strip h2 { font-family: var(--ff-head); font-size: clamp(28px,4vw,42px); color: white; font-weight: 800; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; }
.btn-white { background: white; color: var(--red); padding: 14px 32px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 15px; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { background: var(--smoke); }

/* ── FORM ── */
.form-card { background: var(--smoke); border-radius: 10px; padding: 40px; }
.form-title { font-family: var(--ff-head); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-sub { color: var(--gray); font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border); border-radius: 5px; padding: 11px 14px;
  font-family: var(--ff-body); font-size: 14px; background: white;
  transition: border-color .2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { background: var(--red); color: white; border: none; cursor: pointer; padding: 14px 32px; border-radius: 5px; font-family: var(--ff-body); font-size: 15px; font-weight: 600; width: 100%; transition: background .2s; }
.btn-submit:hover { background: var(--red-dark); }
.form-success { display: none; background: #d4edda; border: 1px solid #c3e6cb; color: #155724; padding: 14px 18px; border-radius: 5px; font-size: 14px; margin-top: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 56px 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
