/* ============================================================
   VivaColombia — Shared shell + tokens
   Used by all community pages. Keep in sync with index.html.
   ============================================================ */

:root {
  --co-yellow: #FCD116;
  --co-yellow-deep: #F2B705;
  --co-blue: #0033A0;
  --co-blue-deep: #001F66;
  --co-red: #CE1126;
  --ink: #0B1220;
  --ink-2: #1C2541;
  --muted: #5B6476;
  --cloud: #F6F4EE;
  --cream: #FBF7EC;
  --line: #E6E2D6;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.06), 0 4px 12px rgba(11,18,32,.06);
  --shadow-md: 0 4px 12px rgba(11,18,32,.08), 0 18px 40px rgba(11,18,32,.10);
  --shadow-lg: 0 20px 60px rgba(11,18,32,.18);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

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

body.vc {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.vc a { color: inherit; text-decoration: none; }
body.vc img { max-width: 100%; display: block; }
body.vc button { font-family: inherit; cursor: pointer; border: 0; }
body.vc h1, body.vc h2, body.vc h3, body.vc h4, body.vc h5, body.vc h6 { margin: 0; font-weight: 700; letter-spacing: -0.3px; }
body.vc p { margin: 0; }

.vc-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* === LOGO === */
.vc-logo-img { display: inline-block; height: 38px; width: auto; user-select: none; }
.vc-footer-logo-chip { display: inline-block; background: #fff; padding: 10px 14px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.vc-footer-logo-chip .vc-logo-img { height: 32px; display: block; }

/* === TOP BAR === */
.vc-topbar { background: var(--ink); color: #F1E9D2; font-size: 13px; }
.vc-topbar .vc-container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.vc-topbar-left { display: flex; align-items: center; gap: 22px; opacity: .92; }
.vc-topbar-left i { color: var(--co-yellow); margin-right: 6px; }
.vc-topbar-right { display: flex; align-items: center; gap: 14px; }
.vc-topbar-right a { opacity: .85; transition: opacity .2s; color: inherit; }
.vc-topbar-right a:hover { opacity: 1; color: var(--co-yellow); }
.vc-topbar .vc-social-icons a { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.06); margin-left: 4px; }
.vc-topbar .vc-social-icons a:hover { background: var(--co-yellow); color: var(--ink); }
@media (max-width: 720px) { .vc-topbar-left .hide-sm { display: none; } }

/* === HEADER === */
.vc-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(11,18,32,.06);
}
.vc-header .vc-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.vc-nav { display: flex; align-items: center; gap: 4px; }
.vc-nav a {
  padding: 10px 16px; font-weight: 600; font-size: 15px;
  color: var(--ink-2); border-radius: 10px;
  transition: all .18s ease;
}
.vc-nav a:hover { background: var(--cream); color: var(--co-blue); }
.vc-nav a.active { color: var(--co-blue); background: var(--cream); }
.vc-header-actions { display: flex; align-items: center; gap: 10px; }

/* === BUTTONS === */
.vc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; font-weight: 700; font-size: 14.5px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  letter-spacing: .2px;
  cursor: pointer;
}
.vc-btn:hover { transform: translateY(-1px); }
.vc-btn-primary { background: var(--co-blue); color: #fff; box-shadow: 0 6px 18px rgba(0,51,160,.28); }
.vc-btn-primary:hover { background: var(--co-blue-deep); box-shadow: 0 10px 26px rgba(0,51,160,.35); }
.vc-btn-yellow { background: var(--co-yellow); color: var(--ink); box-shadow: 0 6px 18px rgba(242,183,5,.3); }
.vc-btn-yellow:hover { background: var(--co-yellow-deep); }
.vc-btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.vc-btn-ghost:hover { border-color: var(--ink); background: var(--cream); }
.vc-btn-white { background: #fff; color: var(--ink); }
.vc-btn-white:hover { background: var(--cream); }
.vc-btn-lg { padding: 15px 28px; font-size: 15.5px; }
.vc-mobile-btn { display: none; background: transparent; color: var(--ink); font-size: 22px; padding: 8px; border: 0; cursor: pointer; }
@media (max-width: 980px) {
  .vc-nav, .vc-header .vc-btn-ghost, .vc-header .vc-btn-primary:not(.vc-keep-primary) { display: none; }
  .vc-mobile-btn { display: inline-flex; align-items: center; justify-content: center; }
}

/* === MOBILE NAV DRAWER === */
/* Wired by js/mobile-nav.js — that script creates the drawer DOM dynamically on every vc-shell page and wires the .vc-mobile-btn toggle, so no per-page markup is needed. */
.vc-mobile-overlay {
  position: fixed; inset: 0; background: rgba(11,18,32,.55);
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
  z-index: 80;
}
.vc-mobile-overlay.open { opacity: 1; pointer-events: auto; }

.vc-mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  box-shadow: -20px 0 40px rgba(11,18,32,.18);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 90;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.vc-mobile-drawer.open { transform: translateX(0); }

.vc-mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.vc-mobile-drawer-head img { height: 32px; }
.vc-mobile-drawer-close {
  background: transparent; border: 0; padding: 8px; cursor: pointer;
  color: var(--ink); font-size: 22px; line-height: 1;
}

.vc-mobile-drawer nav { display: flex; flex-direction: column; padding: 12px 0; }
.vc-mobile-drawer nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  font-size: 16px; font-weight: 600; color: var(--ink);
  border-left: 3px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.vc-mobile-drawer nav a:hover,
.vc-mobile-drawer nav a.active {
  background: var(--cream); color: var(--co-blue); border-left-color: var(--co-blue);
}

.vc-mobile-drawer-actions {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.vc-mobile-drawer-actions .vc-btn { width: 100%; justify-content: center; }

.vc-mobile-drawer-contact {
  padding: 16px 22px;
  font-size: 13px; color: var(--muted); line-height: 1.6;
  border-top: 1px dashed var(--line);
}
.vc-mobile-drawer-contact i { color: var(--co-blue); margin-right: 8px; }

/* Prevent body scroll when drawer is open */
body.vc-mobile-open { overflow: hidden; }

/* === EYEBROW + SECTION TITLES === */
.vc-eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px;
  color: var(--co-blue);
  margin-bottom: 14px;
  position: relative; padding-left: 32px;
}
.vc-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 22px; height: 2px; background: var(--co-red);
  transform: translateY(-50%);
}
.vc-section-title {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.04; letter-spacing: -1px;
  color: var(--ink);
}
.vc-section-sub {
  color: var(--muted);
  font-size: 17px; max-width: 640px; margin-top: 14px;
}

/* === GENERIC BLOCKS === */
section.vc-block { padding: 96px 0; }
section.vc-block-sm { padding: 64px 0; }
.vc-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.vc-section-head .right a { font-weight: 700; color: var(--co-blue); }

/* === PAGE HERO (for interior pages) === */
.vc-page-hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(252,209,22,.22), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(206,17,38,.16), transparent 45%),
    linear-gradient(180deg, #FFFDF5 0%, #FFF 100%);
  padding: 64px 0 48px;
  position: relative; overflow: hidden;
}
.vc-page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(40px, 5vw, 62px); line-height: 1.04;
  letter-spacing: -1.5px; color: var(--ink);
}
.vc-page-hero h1 em { font-style: italic; color: var(--co-blue); font-weight: 600; }
.vc-page-hero .lead { color: var(--muted); font-size: 19px; margin-top: 16px; max-width: 700px; }
.vc-page-hero .vc-breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 20px; font-weight: 500; }
.vc-page-hero .vc-breadcrumb a { color: var(--muted); }
.vc-page-hero .vc-breadcrumb a:hover { color: var(--co-blue); }

/* === FILTER BAR === */
.vc-filter-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 16px 0; border-bottom: 1px solid var(--line); margin-bottom: 32px;
}
.vc-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 13px; font-weight: 600;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  color: var(--ink-2); cursor: pointer; transition: all .15s;
}
.vc-chip:hover { border-color: var(--co-blue); color: var(--co-blue); }
.vc-chip.active { background: var(--co-blue); border-color: var(--co-blue); color: #fff; }
.vc-chip i { font-size: 11px; }

.vc-search-input {
  flex: 1; min-width: 240px;
  padding: 12px 18px; font-size: 14.5px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink); outline: none;
  transition: border-color .15s;
}
.vc-search-input:focus { border-color: var(--co-blue); background: #fff; }

/* === CARD GRID === */
.vc-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .vc-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .vc-card-grid { grid-template-columns: 1fr; } }

.vc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.vc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.vc-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.vc-card-media img { width: 100%; height: 100%; object-fit: cover; }
.vc-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 6px 12px; background: #fff; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
  color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.vc-card-badge.featured { background: var(--co-yellow); }
.vc-card-badge.verified { background: var(--co-blue); color: #fff; }
.vc-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vc-card-body h3 { font-size: 17px; font-weight: 800; }
.vc-card-body .cat { font-size: 13px; color: var(--co-blue); font-weight: 600; }
.vc-card-body .meta { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.vc-card-body .meta i { color: var(--co-blue); font-size: 11px; }
.vc-card-body .stars { color: var(--co-yellow-deep); font-size: 13px; letter-spacing: 1px; }

/* === FOOTER === */
footer.vc-footer { background: #080D18; color: #A9B0C1; padding: 64px 0 0; font-size: 14.5px; }
.vc-footer a { color: #A9B0C1; }
.vc-footer a:hover { color: #fff; }
.vc-foot-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.vc-foot-col h6 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1.3px; margin-bottom: 18px; font-weight: 700; }
.vc-foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vc-foot-col p { color: #A9B0C1; margin-top: 16px; line-height: 1.6; }
.vc-foot-social { display: flex; gap: 10px; margin-top: 16px; }
.vc-foot-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.vc-foot-social a:hover { background: var(--co-yellow); color: var(--ink); }
.vc-foot-bottom { padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #7A8093; font-size: 13px; }
.vc-foot-bottom a { color: #7A8093; }
@media (max-width: 900px) { .vc-foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vc-foot-grid { grid-template-columns: 1fr; } }

/* === STATS STRIP === */
.vc-stats-strip { background: var(--ink); color: #fff; padding: 28px 0; position: relative; }
.vc-stats-strip::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--co-yellow) 0%, var(--co-yellow) 33.3%, var(--co-blue) 33.3%, var(--co-blue) 66.6%, var(--co-red) 66.6%, var(--co-red) 100%);
}
.vc-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.vc-stat .num { font-family: 'Fraunces', serif; font-weight: 800; font-size: 40px; color: var(--co-yellow); letter-spacing: -1px; line-height: 1; }
.vc-stat .lbl { font-size: 13px; color: #C9CDD8; margin-top: 6px; font-weight: 500; letter-spacing: .3px; text-transform: uppercase; }
@media (max-width: 720px) { .vc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } .vc-stat .num { font-size: 32px; } }
