/* ========================================
   CIC TRAVEL — Brand tokens
   Source: Manual de Identidad Corporativa 2024
   ======================================== */

:root {
  /* Brand core */
  --cic-red: #E52420;
  --cic-red-deep: #812420;
  --cic-blue: #005E8D;
  --cic-blue-bright: #208FCE;
  --cic-gray: #949494;
  --cic-gray-light: #E6E5E5;

  /* Working palette derived from brand */
  --ink: #1a1d24;
  --ink-soft: #3d4250;
  --muted: #6a7180;
  --line: #e4e6eb;
  --line-soft: #f1f2f5;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-cream: #fbf9f5;

  /* Accents — mundialista, derived to harmonize w/ brand red+blue */
  --pitch-green: #0f7b3a;
  --pitch-green-deep: #0a5e2c;
  --gold: #f3b81e;
  --gold-deep: #c98a0c;

  /* Typography stacks — Helvetica Neue Bold + ITC Avant Garde */
  --font-display: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  --font-body: "ITC Avant Garde Gothic Std", "Century Gothic", "Avant Garde", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Radii + shadow scale */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
  --sh-2: 0 4px 14px rgba(15,23,42,.07), 0 1px 3px rgba(15,23,42,.05);
  --sh-3: 0 18px 40px -12px rgba(15,23,42,.14), 0 4px 12px rgba(15,23,42,.06);
  --sh-red: 0 14px 32px -10px rgba(229,36,32,.45);
  --sh-blue: 0 14px 32px -10px rgba(0,94,141,.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.btn-descart {
    color: #fff;
    border: 1px solid #fff;
}
/* ====== Reusable atoms ====== */

.cic-pin {
  /* Small location-pin echo from the logo's dot-over-i */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1.25em;
  background: var(--cic-red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.cic-pin::after {
  content: "";
  width: 0.35em;
  height: 0.35em;
  border-radius: 50%;
  background: #fff;
  transform: rotate(45deg);
}

/* Button system */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.land-nav-links a.btn-red { background: var(--cic-red); color: #fff; box-shadow: var(--sh-red); border: 1px solid transparent; }
.btn-red { background: var(--cic-red); color: #fff; box-shadow: var(--sh-red); border: 1px solid transparent; }
.btn-red:hover { background: transparent; color: var(--cic-red); border-color: var(--cic-red); }
.btn-blue  { background: var(--cic-blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-blue:hover { background: #004d75; }
.btn-ink   { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-white { background: #fff; color: var(--cic-blue); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.chip-red { background: rgba(229,36,32,.08); color: var(--cic-red); border-color: rgba(229,36,32,.2); }
.chip-blue { background: rgba(0,94,141,.08); color: var(--cic-blue); border-color: rgba(0,94,141,.2); }
.chip-green { background: rgba(15,123,58,.1); color: var(--pitch-green-deep); border-color: rgba(15,123,58,.25); }
.chip-gold { background: rgba(243,184,30,.16); color: var(--gold-deep); border-color: rgba(243,184,30,.4); }

/* Field system */
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.field input, .field select {
  height: 48px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--cic-blue);
  box-shadow: 0 0 0 4px rgba(0,94,141,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Logo lockup — used when we need text logo without raster artifacts */
.cic-logo-mark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.cic-logo-mark .l-c1 { color: var(--cic-red); }
.cic-logo-mark .l-i  { color: var(--cic-gray); position: relative; padding: 0 2px; }
.cic-logo-mark .l-i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.85em;
  transform: translateX(-50%);
  width: 0.55em;
  height: 0.7em;
  background: var(--cic-red);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
}
.cic-logo-mark .l-c2 { color: var(--cic-blue); }
.cic-logo-mark .l-travel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.42em;
  color: var(--ink);
  margin-left: 0.18em;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.cic-logo-mark .l-travel::first-letter { text-transform: uppercase; }
