@import url('colors_and_type.css');

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--cbj-text);
  background: var(--cbj-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; cursor: pointer; }

/* Splash Screen */
.cbj-splash {
  position: fixed; inset: 0; background: #192A39;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  animation: fadeOutSplash 0.8s ease-out forwards;
  animation-delay: 3.5s;
  animation-fill-mode: forwards;
}
.cbj-splash.hidden { display: none; }
.sp-logo-img {
  width: 110px; height: auto;
  opacity: 0;
  animation: spLogoIn 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s forwards;
}
.sp-line {
  height: 1px; background: #9C7B35; width: 0;
  animation: spLineGrow 0.6s ease 0.9s forwards;
}
.sp-name {
  opacity: 0; margin-top: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 700;
  color: #fff; letter-spacing: 4px;
  animation: spFadeUp 0.6s ease 1.1s forwards;
}
.sp-sub {
  opacity: 0; margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; color: rgba(255,255,255,0.45);
  letter-spacing: 3px; text-transform: uppercase;
  animation: spFadeUp 0.6s ease 1.3s forwards;
}
.sp-dots {
  display: flex; gap: 6px; margin-top: 28px;
  opacity: 0;
  animation: spFadeUp 0.4s ease 1.6s forwards;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #9C7B35;
  animation: spDot 1.4s ease 1.7s infinite;
}
.dot:nth-child(2) { animation-delay: 1.9s; }
.dot:nth-child(3) { animation-delay: 2.1s; }
@keyframes spLogoIn { from{opacity:0;transform:scale(0.7)} to{opacity:1;transform:scale(1)} }
@keyframes spLineGrow { from{width:0} to{width:120px} }
@keyframes spFadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
@keyframes spDot { 0%,80%,100%{opacity:0.2;transform:scale(0.8)} 40%{opacity:1;transform:scale(1)} }
@keyframes fadeOutSplash { from{opacity:1} to{opacity:0;pointer-events:none} }

@keyframes fadeOutSplash {
  from { opacity: 1; pointer-events: auto; }
  to   { opacity: 0; pointer-events: none; }
}

/* Page Navigation System */
.cbj-page {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  /* Push below fixed top nav */
  padding-top: 90px;
}

.cbj-page.active {
  display: block;
  animation: fadeInPage 0.5s ease forwards;
}

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Page nav buttons (SINGLE definition — FIX: was duplicated) ── */
.cbj-page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  margin-top: 60px;
  border-top: 1px solid var(--cbj-border);
}

.cbj-nav-btn {
  padding: 12px 28px;
  background: var(--cbj-rust);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.cbj-nav-btn:hover:not(:disabled) {
  background: var(--cbj-rust-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,69,44,0.3);
}

.cbj-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cbj-page-counter {
  font-size: 0.875rem;
  color: var(--cbj-text-muted);
  font-weight: 500;
  letter-spacing: 1px;
}
/* ── end page-nav ── */

.cbj-page-nav-bottom { padding: 0 40px; }
@media (min-width: 769px) { .cbj-page-nav-bottom { padding: 0 80px; } }

/* Side Menu (archived — kept for reference, not active) */
.cbj-menu-toggle {
  display: none;
  position: fixed;
  top: 24px; left: 24px;
  z-index: 1001;
  width: 48px; height: 48px;
  background: var(--cbj-rust);
  border: none; border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 6px; padding: 0;
}
.cbj-menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 1px; transition: all 0.3s ease; }
.cbj-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.cbj-side-menu { position: fixed; left: 0; top: 0; width: 280px; height: 100vh; background: var(--cbj-navy); padding: 32px 0; z-index: 1000; overflow-y: auto; box-shadow: 4px 0 16px rgba(0,0,0,0.15); display: flex; flex-direction: column; }
.cbj-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 0 24px 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cbj-menu-header h2 { font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: 2px; margin: 0; }
.cbj-menu-close { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; display: none; }
.cbj-menu-list { flex: 1; display: flex; flex-direction: column; padding: 0; list-style: none; margin: 0; }
.cbj-menu-item { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: none; border-left: 3px solid transparent; color: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.3s ease; font-family: var(--font-body); text-align: left; }
.cbj-menu-item:hover { background: rgba(255,255,255,0.05); color: #fff; }
.cbj-menu-item.active { background: rgba(255,255,255,0.1); border-left-color: var(--cbj-gold); color: #fff; }
.cbj-menu-icon { font-size: 1.4rem; flex-shrink: 0; }
.cbj-menu-label { display: flex; flex-direction: column; gap: 2px; }
.cbj-menu-num { font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; color: var(--cbj-gold); text-transform: uppercase; }
.cbj-menu-title { font-size: 0.95rem; font-weight: 500; color: currentColor; }
.cbj-menu-footer { padding: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.cbj-menu-footer p { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin: 0; }

/* Chatbot */
.cbj-chatbot-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 100%;
  background: var(--cbj-rust); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; box-shadow: 0 4px 16px rgba(144,69,44,0.3);
  transition: all 0.3s ease; font-size: 1.4rem;
}
.cbj-chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(144,69,44,0.4); }
.cbj-chatbot-label { font-size: 0.7rem; position: absolute; bottom: -20px; white-space: nowrap; }
.cbj-chatbot-window {
  position: fixed; bottom: 90px; right: 24px;
  width: 360px; height: 480px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 999; display: flex; flex-direction: column;
  overflow: hidden; animation: slideUpChat 0.3s ease;
}
@keyframes slideUpChat {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cbj-chatbot-header { padding: 16px 20px; background: var(--cbj-navy); color: #fff; display: flex; justify-content: space-between; align-items: center; }
.cbj-chatbot-header h3 { margin: 0; font-size: 1rem; font-weight: 600; }
.cbj-chatbot-close { background: none; border: none; color: #fff; cursor: pointer; font-size: 1.2rem; }
.cbj-chatbot-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.cbj-chat-msg { display: flex; margin-bottom: 8px; }
.cbj-chat-user { justify-content: flex-end; }
.cbj-chat-bot  { justify-content: flex-start; }
.cbj-chat-bubble { max-width: 80%; padding: 12px 16px; border-radius: 12px; font-size: 0.9rem; line-height: 1.4; }
.cbj-chat-user .cbj-chat-bubble { background: var(--cbj-rust); color: #fff; border-bottom-right-radius: 4px; }
.cbj-chat-bot  .cbj-chat-bubble { background: #f0f0f0; color: var(--cbj-navy); border-bottom-left-radius: 4px; }
.cbj-chatbot-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--cbj-border); background: #fff; }
.cbj-chatbot-input input { flex: 1; padding: 10px 12px; border: 1px solid var(--cbj-border); border-radius: 8px; font-family: var(--font-body); font-size: 0.85rem; outline: none; transition: border-color 0.2s ease; }
.cbj-chatbot-input input:focus { border-color: var(--cbj-rust); }
.cbj-chatbot-input button { width: 36px; height: 36px; padding: 0; background: var(--cbj-rust); color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; transition: all 0.2s ease; }
.cbj-chatbot-input button:hover:not(:disabled) { background: var(--cbj-rust-hover); }
.cbj-chatbot-input button:disabled { opacity: 0.6; }
@media (max-width: 480px) { .cbj-chatbot-window { width: calc(100vw - 32px); height: 70vh; bottom: 80px; right: 16px; } }

/* Top Nav Bar */
.cbj-topnav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--cbj-navy); box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.cbj-topnav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px 40px; gap: 32px; }
.cbj-topnav-brand { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.cbj-topnav-brand img { height: 44px; width: auto !important; aspect-ratio: 1/1; object-fit: contain; }
.cbj-topnav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.cbj-topnav-brand-text strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 2px; color: #fff; }
.cbj-topnav-brand-text small { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.cbj-topnav-items { display: flex; gap: 8px; }
.cbj-topnav-item { background: none; border: none; padding: 10px 20px; border-radius: 100px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.7); cursor: pointer; transition: all 0.25s ease; }
.cbj-topnav-item:hover { color: #fff; background: rgba(255,255,255,0.08); }
.cbj-topnav-item.active { color: var(--cbj-navy); background: var(--cbj-gold); font-weight: 600; }
@media (max-width: 768px) {
  .cbj-topnav-inner { padding: 12px 20px; gap: 16px; flex-wrap: wrap; }
  .cbj-topnav-brand-text small { display: none; }
  .cbj-topnav-items { gap: 4px; flex-wrap: wrap; }
  .cbj-topnav-item { padding: 8px 14px; font-size: 0.8rem; }
  .cbj-page { padding-top: 110px; }
  .cbj-hero-ctas { flex-direction: column; align-items: center; }
}

.cbj-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.cbj-overline { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--cbj-gold); margin-bottom: 16px; }
.cbj-section-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 500; color: var(--cbj-navy); line-height: 1.15; margin-bottom: 40px; }
.cbj-center { text-align: center; }

/* Buttons */
.cbj-btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 36px; font-size: 0.875rem; font-weight: 600; border: none; border-radius: 100px; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.cbj-btn-primary { background: var(--cbj-rust); color: #fff; }
.cbj-btn-primary:hover { background: var(--cbj-rust-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(144,69,44,0.3); }
.cbj-btn-primary.sent { background: var(--cbj-navy); }
.cbj-btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.cbj-btn-outline:hover { background: #fff; color: var(--cbj-navy); border-color: #fff; }
.cbj-btn-full { width: 100%; justify-content: center; }

/* Scrolled Nav (used by Nav.jsx — kept for compatibility) */
.cbj-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 40px; transition: var(--transition); background: transparent; }
.cbj-nav.scrolled { background: rgba(25,42,57,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.cbj-nav-container { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.cbj-nav-logo { display: flex; align-items: center; gap: 14px; }
.cbj-logo-img { display: block; width: auto !important; max-width: none; aspect-ratio: 1/1; flex: 0 0 auto; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25)); transition: var(--transition); }
.cbj-hero-logo, .cbj-footer-logo-img { width: auto !important; max-width: none; aspect-ratio: 1/1; flex: 0 0 auto; }
.cbj-logo-text { display: flex; flex-direction: column; gap: 2px; }
.cbj-logo-mark { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 3px; }
.cbj-logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }
.cbj-nav-menu { display: flex; align-items: center; gap: 36px; }
.cbj-nav-link { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; transition: var(--transition); position: relative; }
.cbj-nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--cbj-gold); transition: var(--transition); }
.cbj-nav-link:hover, .cbj-nav-link.active { color: #fff; }
.cbj-nav-link:hover::after, .cbj-nav-link.active::after { width: 100%; }
.cbj-nav-cta { color: #fff !important; background: var(--cbj-rust); padding: 10px 22px; border-radius: 100px; font-weight: 600; }
.cbj-nav-cta::after { display: none; }
.cbj-nav-cta:hover { background: var(--cbj-rust-hover); }
.cbj-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.cbj-nav-toggle span { width: 24px; height: 2px; background: #fff; transition: var(--transition); }

/* Hero */
.cbj-hero {
  
  position: relative; min-height: 100vh; display: flex; align-items: center;
  /* FIX: path updated to assets/images/ */
  background: url('assets/images/equipo.jpg') center 20% / cover no-repeat;
  overflow: hidden;
}
.cbj-hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 70%; height: 160%; background: radial-gradient(ellipse, rgba(144,69,44,0.12) 0%, transparent 65%); pointer-events: none; }
.cbj-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, rgba(25,42,57,0.4), transparent); pointer-events: none; }
.cbj-hero-overlay { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg, rgba(25,42,57,0.88) 0%, rgba(25,42,57,0.72) 55%, rgba(25,42,57,0.45) 100%); }
.cbj-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 80px 40px 0; }
.cbj-hero-logo { display: block; height: 110px; width: auto; margin-bottom: 28px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35)); opacity: 0; animation: cbjFadeUp 0.8s ease forwards 0.1s; }
.cbj-footer-logo-img { height: 56px; width: auto; display: block; margin-bottom: 14px; opacity: 0.9; }
.cbj-hero-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--cbj-gold); margin-bottom: 24px; opacity: 0; animation: cbjFadeUp 0.8s ease forwards 0.2s; }
.cbj-hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 6.5vw, 5.4rem); font-weight: 500; color: #fff; line-height: 1.05; margin-bottom: 28px; letter-spacing: -0.005em; opacity: 0; animation: cbjFadeUp 0.8s ease forwards 0.4s; }
.cbj-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.8; margin-bottom: 48px; font-weight: 300; opacity: 0; animation: cbjFadeUp 0.8s ease forwards 0.6s; }
.cbj-hero-actions { display: flex; gap: 16px; opacity: 0; animation: cbjFadeUp 0.8s ease forwards 0.8s; }
.cbj-hero-scroll { position: absolute; bottom: 40px; right: 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2; }
.cbj-hero-scroll span { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); writing-mode: vertical-rl; }
.cbj-scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--cbj-gold-light), transparent); animation: cbjScrollPulse 2s ease-in-out infinite; }
@keyframes cbjFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cbjScrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Services strip */
.cbj-services { background: var(--cbj-navy); padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cbj-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.cbj-service-item { padding: 30px 32px; border-right: 1px solid rgba(255,255,255,0.08); transition: background var(--transition), border-color var(--transition); }
.cbj-service-item:last-child { border-right: none; }
.cbj-service-item:hover { background: var(--cbj-gold); }
.cbj-service-num { font-family: var(--font-display); font-size: 0.85rem; color: var(--cbj-gold); margin-bottom: 16px; font-weight: 500; transition: color var(--transition); }
.cbj-service-item:hover .cbj-service-num { color: var(--cbj-navy); }
.cbj-service-title { font-family: var(--font-display); font-size: 1.1rem; color: #fff; font-weight: 500; margin-bottom: 10px; transition: color var(--transition); }
.cbj-service-item:hover .cbj-service-title { color: var(--cbj-navy); }
.cbj-service-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; transition: color var(--transition); }
.cbj-service-item:hover .cbj-service-desc { color: rgba(25,42,57,0.75); }

/* About */
/*.cbj-about {
  padding: 120px 0;
  /* FIX: path updated to assets/images/ 
  background: linear-gradient(135deg, rgba(251,251,251,0.95) 0%, rgba(251,251,251,0.92) 100%), url('assets/images/campo.jpg') center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
}*/

/* About */
.cbj-about {
  padding: 140px 0;
  background:
    linear-gradient(
      135deg,
      rgba(251,251,251,0.65) 0%,
      rgba(251,251,251,0.63) 100%
    ),
    url('assets/images/fullcamp.jpg') center / cover no-repeat;

  background-attachment: fixed;
  position: relative;
  
}

.cbj-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cbj-about-left .cbj-section-title { margin-bottom: 0; position: sticky; top: 120px; text-shadow: 0 1px 3px rgba(255,255,255,0.9); }
.cbj-about-lead { font-family: var(--font-serif); font-style: italic; font-size: 1.7rem; color: var(--cbj-navy); margin-bottom: 28px; line-height: 1.35; font-weight: 500; }
.cbj-about-text { font-size: 1rem; color: var(--cbj-text-muted); margin-bottom: 20px; line-height: 1.8; }
.cbj-about-text:last-child { margin-bottom: 0; }

/* Stats */
.cbj-stats { padding: 80px 0; background: var(--cbj-rust); position: relative; overflow: hidden; }
.cbj-stats::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at right, rgba(208,182,137,0.15), transparent); }
.cbj-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.cbj-stat { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.cbj-stat:last-child { border-right: none; }
.cbj-stat-num { display: block; font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 12px; }
.cbj-stat-num sup { font-size: 2rem; vertical-align: 0; }
.cbj-stat-label { font-size: 0.8rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* Team */
.cbj-team { padding: 120px 0; background: var(--cbj-bg-alt); }
.cbj-team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 60px; }
.cbj-team-card { background: #fff; display: flex; overflow: hidden; border: 1px solid var(--cbj-border); border-radius: 12px; transition: var(--transition); }
.cbj-team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(25,42,57,0.10); border-color: transparent; }
.cbj-team-img { width: 200px; min-height: 260px; flex-shrink: 0; overflow: hidden; background: linear-gradient(160deg, #192A39, #1e3347); display: flex; align-items: center; justify-content: center; }
.cbj-team-img span { font-family: var(--font-display); font-size: 2rem; color: rgba(255,255,255,0.3); font-weight: 500; letter-spacing: 2px; }
.cbj-team-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.cbj-team-group-wrap { margin-top: 64px; text-align: center; }
.cbj-team-group-photo { width: 100%; max-width: 900px; height: 420px; object-fit: cover; object-position: center 20%; border-radius: 4px; display: inline-block; }
.cbj-team-group-caption { margin-top: 14px; font-size: 0.8rem; color: var(--cbj-gold); letter-spacing: 0.08em; text-transform: uppercase; }
.cbj-team-body { padding: 32px; flex: 1; }
.cbj-team-role { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--cbj-rust); margin-bottom: 12px; padding: 5px 14px; background: rgba(144,69,44,0.08); border-radius: 100px; }
.cbj-team-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--cbj-navy); margin-bottom: 14px; line-height: 1.25; }
.cbj-team-bio { font-size: 0.85rem; color: var(--cbj-text-muted); line-height: 1.7; }

/* Cases */
.cbj-cases { padding: 120px 0; background: var(--cbj-bg); }
.cbj-cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 24px; flex-wrap: wrap; }
.cbj-cases-header .cbj-section-title { margin-bottom: 0; }
.cbj-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.cbj-chip { padding: 9px 20px; font-size: 0.75rem; font-weight: 500; background: transparent; border: 1.5px solid var(--cbj-border); border-radius: 100px; color: var(--cbj-text-muted); cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.cbj-chip:hover, .cbj-chip.active { background: var(--cbj-navy); color: #fff; border-color: var(--cbj-navy); }
.cbj-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cbj-case { background: #fff; border: 1px solid var(--cbj-border); overflow: hidden; border-radius: 12px; transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--transition), border-color var(--transition); }
.cbj-case.hidden { display: none; }
.cbj-case:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(25,42,57,0.10); border-color: transparent; }
.cbj-case-img { height: 200px; background: linear-gradient(135deg, #192A39, #1e3347); position: relative; display: flex; align-items: flex-end; padding: 20px; }
.cbj-case-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; background: var(--cbj-rust); padding: 6px 14px; border-radius: 100px; }
.cbj-case-body { padding: 28px; }
.cbj-case-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--cbj-navy); margin-bottom: 14px; line-height: 1.25; }
.cbj-case-excerpt { font-size: 0.875rem; color: var(--cbj-text-muted); line-height: 1.7; margin-bottom: 20px; }
.cbj-case-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--cbj-gold); transition: var(--transition); }
.cbj-case-link:hover { color: var(--cbj-rust); gap: 14px; }

/* Links section */
.cbj-links-section { padding: 120px 0; background: var(--cbj-bg-alt); }
.cbj-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.cbj-link-card { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 36px 32px; background: #fff; border: 1px solid var(--cbj-border); border-radius: 10px; font-size: 0.85rem; font-weight: 500; color: var(--cbj-text); transition: var(--transition); }
.cbj-link-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(25,42,57,0.12); }
.cbj-link-icon { font-size: 1.2rem; color: var(--cbj-gold); transition: var(--transition); flex-shrink: 0; }
.cbj-link-card:hover .cbj-link-icon { transform: translateX(4px); }

/* Mission & Vision */
.cbj-mission-vision { padding: 120px 0; background: linear-gradient(135deg, #192A39 0%, #243d52 100%); position: relative; }
.cbj-mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 60px; }
.cbj-mv-card { background-size: cover; background-position: center; border-radius: 20px; padding: 40px; cursor: pointer; text-align: center; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; border: none; box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.3); }
.cbj-mv-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(25,42,57,0.85) 0%, rgba(36,61,82,0.8) 100%); transition: opacity 0.4s ease; }
.cbj-mv-card:hover .cbj-mv-overlay { opacity: 0.7; }
.cbj-mv-card:hover { box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.4); transform: translateY(-4px); }
.cbj-mv-card.active .cbj-mv-overlay { background: linear-gradient(135deg, rgba(156,123,53,0.3) 0%, rgba(156,123,53,0.2) 100%); }
.cbj-mv-content-wrapper { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.cbj-mv-label { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--cbj-gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.cbj-mv-tagline { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.cbj-mv-excerpt { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.5; margin-bottom: 16px; flex: 1; }
.cbj-mv-arrow { font-size: 1.4rem; color: var(--cbj-gold); opacity: 0.6; transition: all 0.3s ease; }
.cbj-mv-card:hover .cbj-mv-arrow, .cbj-mv-card.active .cbj-mv-arrow { opacity: 1; transform: translateX(4px); }
.cbj-mv-expanded { animation: expandDown 0.5s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
@keyframes expandDown { from { opacity: 0; max-height: 0; overflow: hidden; } to { opacity: 1; max-height: 600px; } }
.cbj-mv-expanded-inner { background: linear-gradient(135deg, rgba(212,180,120,0.15) 0%, rgba(156,123,53,0.08) 100%); border: 2px solid var(--cbj-gold); border-radius: 16px; padding: 48px 52px; text-align: center; }
.cbj-mv-expanded-inner h2 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--cbj-gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.cbj-mv-expanded-inner h3 { font-family: var(--font-serif); font-size: 2.2rem; color: #fff; margin-bottom: 20px; font-weight: 600; }
.cbj-mv-expanded-inner > p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.cbj-mv-expanded-inner ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; text-align: left; }
.cbj-mv-expanded-inner li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.cbj-mv-expanded-inner li::before { content: '✓'; color: var(--cbj-gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Contact */
.cbj-contact {
  padding: 100px 0;
  /* FIX: path updated to assets/images/ */
  background: linear-gradient(135deg, rgba(251,251,251,0.75) 0%, rgba(251,251,251,0.72) 100%), url('assets/images/campoC.jpg') center / cover no-repeat;
  position: relative;
}

.cbj-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.cbj-contact-text { font-size: 1.1rem; color: var(--cbj-text-muted); margin-bottom: 48px; line-height: 1.8; }
.cbj-contact-details { display: flex; flex-direction: column; gap: 28px; }
.cbj-cd { display: flex; flex-direction: column; gap: 6px; }
.cbj-cd-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--cbj-gold); }
.cbj-cd-value { font-size: 1rem; color: var(--cbj-text); line-height: 1.6; }
/*.cbj-form { background: #fff; padding: 48px; border: 1px solid var(--cbj-border); border-radius: 16px; }*/
.cbj-form {
  background: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);

  padding: 48px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.cbj-fg { margin-bottom: 24px; }
.cbj-fg label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--cbj-text); margin-bottom: 8px; }
.cbj-fg input, .cbj-fg textarea { width: 100%; padding: 14px 0; font-family: var(--font-body); font-size: 1rem; color: var(--cbj-text); background: transparent; border: none;border-bottom: 2px solid rgba(57, 36, 3, 0.35) ; outline: none; transition: var(--transition); }
.cbj-fg input:focus, .cbj-fg textarea:focus { border-bottom-color: var(--cbj-gold); }
.cbj-fg textarea { resize: vertical; min-height: 100px; }

/* Footer */
.cbj-footer { background: var(--cbj-navy); padding: 80px 0 40px; }
.cbj-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cbj-footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: 3px; display: block; margin-bottom: 16px; }
.cbj-footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 380px; }
.cbj-footer-grid h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--cbj-gold); margin-bottom: 24px; }
.cbj-footer-grid a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.5); padding: 6px 0; transition: var(--transition); }
.cbj-footer-grid a:hover { color: #fff; padding-left: 8px; }
.cbj-footer-grid p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.cbj-footer-bottom { padding-top: 32px; text-align: center; }
.cbj-footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }

/* Responsive */
@media (max-width: 1024px) {
  .cbj-services-grid, .cbj-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .cbj-links-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .cbj-container { padding: 0 24px; }
  .cbj-nav { padding: 0 24px; }
  .cbj-nav-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--cbj-navy); flex-direction: column; justify-content: center; align-items: center; gap: 32px; transition: var(--transition); }
  .cbj-nav-menu.open { right: 0; }
  .cbj-nav-link { font-size: 1.2rem; }
  .cbj-nav-toggle { display: flex; z-index: 1001; }
  .cbj-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .cbj-nav-toggle.active span:nth-child(2) { opacity: 0; }
  .cbj-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .cbj-hero-actions { flex-direction: column; align-items: flex-start; }
  .cbj-hero-scroll { display: none; }
  .cbj-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .cbj-about-left .cbj-section-title { position: static; }
  .cbj-contact-grid, .cbj-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .cbj-services-grid, .cbj-stats-grid, .cbj-team-grid, .cbj-cases-grid { grid-template-columns: 1fr; }
  .cbj-team-card { flex-direction: column; }
  .cbj-team-img { width: 100%; min-height: 160px; }
  .cbj-links-grid { grid-template-columns: 1fr 1fr; }
  .cbj-form { padding: 32px 24px; }
  .cbj-mv-grid { grid-template-columns: 1fr; gap: 24px; }
  .cbj-mv-expanded-inner ul { grid-template-columns: 1fr; }
  .cbj-mv-expanded-inner { padding: 32px 28px; }
  .cbj-mv-tagline { font-size: 1.4rem; }
}
