/* ============================================================
   BRAYAN GONZALEZ · brayangzz.com
   Custom CSS · Dark Theme · Bootstrap 5.3 override
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg-base:       #060c18;
  --bg-surface:    #0d1a2e;
  --bg-card:       #101e36;
  --bg-card-hover: #152440;
  --border:        rgba(26, 115, 232, 0.14);
  --border-hover:  rgba(26, 115, 232, 0.35);
  --accent:        #1a73e8;
  --accent-lt:     #4d94ff;
  --accent-glow:   rgba(26, 115, 232, 0.18);
  --text:          #e2e8f0;
  --text-muted:    #8fa7c4;
  --text-dim:      #526481;
  --gradient:      linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  --gradient-hero: linear-gradient(135deg, #1564c0 0%, #7c3aed 100%);
  --shadow-card:   0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-hover:  0 8px 48px rgba(26, 115, 232, 0.22);
  --r-card:        16px;
  --r-lg:          24px;
  --transition:    .25s ease;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font);
  background-color: var(--bg-base);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

::selection { background: var(--accent); color: #fff; }

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

/* ── Bootstrap Overrides ───────────────────────────────── */
[data-bs-theme="dark"] {
  --bs-body-bg: var(--bg-base);
  --bs-body-color: var(--text);
  --bs-link-color: var(--accent-lt);
}

.btn-primary {
  background: var(--gradient);
  border: none;
  font-weight: 600;
  transition: opacity var(--transition), box-shadow var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gradient);
  opacity: .88;
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-outline-primary {
  border-color: var(--accent);
  color: var(--accent-lt);
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  transition: opacity var(--transition), box-shadow var(--transition);
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
  color: #fff;
  opacity: .88;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.35);
}

/* Accordion */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--r-card) !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--bg-card-hover);
  color: var(--accent-lt);
  box-shadow: none !important;
}
.accordion-button::after {
  filter: invert(1) brightness(1.5);
}
.accordion-body {
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.75;
}

/* ── Layout Helpers ────────────────────────────────────── */
.section-pad { padding: 96px 0; }

.section-head { margin-bottom: 3rem; }

.section-tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent-lt);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  border: 1px solid rgba(26, 115, 232, 0.28);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: .75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navbar ────────────────────────────────────────────── */
#mainNav {
  background: rgba(6, 12, 24, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition), box-shadow var(--transition), transform 0.3s ease;
  padding: 8px 0;
  max-width: 100%;
}

#mainNav.scrolled {
  background: rgba(6, 12, 24, 0.88);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

#mainNav.nav-hidden {
  transform: translateY(-100%);
}

.navbar-brand img { transition: opacity var(--transition); }
.navbar-brand:hover img { opacity: .85; }

.nav-link {
  color: rgba(226, 232, 240, 0.8) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem .8rem !important;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(26, 115, 232, 0.12);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── Hero Section ──────────────────────────────────────── */
.hero-section {
  position: relative;
  background: var(--bg-base);
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 115, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.08); }
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-lt);
  background: rgba(26, 115, 232, 0.12);
  border: 1px solid rgba(26, 115, 232, 0.25);
  padding: .35rem .85rem;
  border-radius: 100px;
  letter-spacing: .04em;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: .5rem;
}

.hero-role {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
}

.role-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  padding: .25rem .65rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: .82rem;
}

.role-sep { color: var(--text-dim); font-size: .7rem; }

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.hero-desc strong { color: #fff; }

.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.stack-chip {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: .3rem .75rem;
  border-radius: 6px;
  letter-spacing: .04em;
  transition: border-color var(--transition), color var(--transition);
}
.stack-chip:hover {
  border-color: var(--accent);
  color: var(--accent-lt);
}

/* Hero Photo */
.hero-photo-wrap {
  position: relative;
  display: inline-block;
}

.hero-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--gradient-hero);
  animation: rotateSlow 8s linear infinite;
  opacity: .65;
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

.hero-photo {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 5px solid var(--bg-base);
  display: block;
  z-index: 1;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(13, 26, 46, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  z-index: 2;
  animation: floatY 3.5s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.fb-top-left  { top: 10%;  left: -30px; animation-delay: 0s; }
.fb-top-right { top: 15%;  right: -30px; animation-delay: .8s; }
.fb-bottom    { bottom: -4%; left: 50%; transform: translateX(-50%); animation-delay: 1.6s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.fb-bottom { animation-name: floatYCenter; }
@keyframes floatYCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

.hero-scroll-cta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-size: 1.4rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 5;
  transition: color var(--transition);
}
.hero-scroll-cta:hover { color: var(--accent-lt); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Section ─────────────────────────────────────── */
.stats-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 2rem;
}

.stat-value {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent-lt);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.counter { font-size: 2.6rem; font-weight: 900; }

.stat-suffix {
  font-size: 1.6rem;
  font-weight: 900;
  padding-top: .1rem;
}

.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  margin-top: .4rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .stat-divider { display: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── About Section ─────────────────────────────────────── */
.about-section { background: var(--bg-base); }

.about-photo-wrap {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(26, 115, 232, 0.12), var(--shadow-card);
  width: 280px;
  height: 280px;
  margin: 0 auto 1.5rem;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.about-meta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.25rem 1.5rem;
}

.about-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}
.about-meta-row:last-child { border-bottom: none; }

.about-meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(26, 115, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lt);
  flex-shrink: 0;
  font-size: .9rem;
}

.about-meta-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

.about-meta-sub {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-lead strong { color: var(--accent-lt); }

.about-body {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .75rem;
}

.about-body strong { color: var(--text); }

.check-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .4rem .75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition), color var(--transition);
}
.check-item:hover { border-color: var(--accent); color: var(--text); }

.check-item i {
  color: var(--accent);
  font-size: .9rem;
  flex-shrink: 0;
}

/* ── Services Section ──────────────────────────────────── */
.services-section {
  background: var(--bg-surface);
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-featured {
  border-color: rgba(26, 115, 232, 0.3);
  background: linear-gradient(145deg, #0d1e38 0%, var(--bg-card) 60%);
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.svc-i1 { background: rgba(26,115,232,0.15); color: #4d94ff; }
.svc-i2 { background: rgba(124,58,237,0.15); color: #a78bfa; }
.svc-i3 { background: rgba(16,185,129,0.15); color: #34d399; }
.svc-i4 { background: rgba(245,158,11,0.15); color: #fbbf24; }
.svc-i5 { background: rgba(239,68,68,0.15);  color: #f87171; }
.svc-i6 { background: rgba(6,182,212,0.15);  color: #22d3ee; }
.svc-i7 { background: rgba(236,72,153,0.15); color: #f472b6; }
.svc-i8 { background: rgba(99,102,241,0.15); color: #818cf8; }

.svc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}

.svc-desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: .9rem;
  margin-top: auto;
}

.svc-tags span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-lt);
  background: rgba(26, 115, 232, 0.1);
  padding: .2rem .55rem;
  border-radius: 5px;
  letter-spacing: .03em;
}

/* ── Solutions Section ─────────────────────────────────── */
.solutions-section { background: var(--bg-base); }

.sol-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.4rem 1.5rem;
  height: 100%;
  transition: border-color var(--transition);
}
.sol-card:hover { border-color: var(--border-hover); }

.sol-problem {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: .9rem;
}
.sol-problem i { color: #fbbf24; margin-right: .35rem; }

.sol-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 1.1rem;
  padding: .4rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin: .5rem 0;
}

.sol-answer {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
  padding-top: .9rem;
}
.sol-answer i { color: #34d399; margin-right: .35rem; }

/* ── Experience / Timeline ─────────────────────────────── */
.experience-section { background: var(--bg-surface); }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
}

.tl-item {
  position: relative;
  padding-left: 68px;
  margin-bottom: 2.5rem;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
  position: absolute;
  left: 12px;
  top: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tl-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 30px rgba(26, 115, 232, 0.12);
}

.tl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: .9rem;
}

.tl-company {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .2rem;
}

.tl-role {
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent-lt);
  margin-bottom: .2rem;
}

.tl-location {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.tl-period-wrap { text-align: right; }

.tl-period {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.tl-current-badge {
  display: inline-block;
  margin-top: .35rem;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .55rem;
  border-radius: 100px;
}

.tl-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .9rem;
}

.tl-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 .9rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.tl-bullets li {
  font-size: .84rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.tl-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.tl-tags span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-lt);
  background: rgba(26, 115, 232, 0.1);
  padding: .18rem .55rem;
  border-radius: 5px;
}

/* ── Skills Section ────────────────────────────────────── */
.skills-section { background: var(--bg-base); }

.skill-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.5rem;
  height: 100%;
  transition: border-color var(--transition);
}
.skill-cat-card:hover { border-color: var(--border-hover); }

.skill-cat-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.skill-cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(26, 115, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lt);
  font-size: 1rem;
  flex-shrink: 0;
}

.skill-cat-header h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.sp {
  font-size: .73rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: .25rem .6rem;
  border-radius: 6px;
  transition: all var(--transition);
  cursor: default;
}
.sp:hover { border-color: var(--accent); color: var(--accent-lt); }

.sp-primary {
  font-size: .73rem;
  font-weight: 700;
  color: var(--accent-lt);
  background: rgba(26, 115, 232, 0.12);
  border: 1px solid rgba(26, 115, 232, 0.25);
  padding: .25rem .6rem;
  border-radius: 6px;
  cursor: default;
}

/* ── Ventures Section ──────────────────────────────────── */
.ventures-section { background: var(--bg-surface); }

.venture-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.venture-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

.venture-since {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-lt);
  background: var(--accent-glow);
  border: 1px solid rgba(26, 115, 232, 0.22);
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.venture-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.venture-initial {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.vi-blue   { background: var(--gradient); }
.vi-purple { background: linear-gradient(135deg, #7c3aed, #4f46e5); }

.venture-logo-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.venture-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.venture-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.venture-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.venture-list-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .75rem;
}

.venture-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.venture-list li {
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}

.venture-list li i { color: var(--accent); flex-shrink: 0; margin-top: .15rem; }

.venture-tech {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.venture-tech span {
  font-size: .73rem;
  font-weight: 600;
  color: var(--accent-lt);
  background: rgba(26, 115, 232, 0.1);
  border: 1px solid rgba(26, 115, 232, 0.2);
  padding: .2rem .55rem;
  border-radius: 5px;
}

/* ── Achievements Section ──────────────────────────────── */
.achievements-section { background: var(--bg-base); }

.ach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.ach-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

.ach-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(26, 115, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-lt);
  margin: 0 auto .9rem;
}

.ach-metric {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-lt);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.ach-desc {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ Section ───────────────────────────────────────── */
.faq-section { background: var(--bg-surface); }

.faq-accordion .accordion-item:last-child { margin-bottom: 0; }

/* ── Contact Section ───────────────────────────────────── */
.contact-section { background: var(--bg-base); }

.contact-wrap {
  background: linear-gradient(135deg, #0d1a2e 0%, #111e36 100%);
  border: 1px solid rgba(26, 115, 232, 0.25);
  border-radius: var(--r-lg);
  padding: 3.5rem;
  box-shadow: 0 8px 64px rgba(26, 115, 232, 0.12);
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-benefits li i { color: var(--accent); }

.contact-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--transition);
  cursor: pointer;
}

.contact-opt:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.copt-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.copt-whatsapp .copt-icon { background: rgba(37,211,102,0.15); color: #25d366; }
.copt-phone    .copt-icon { background: rgba(26,115,232,0.15); color: var(--accent-lt); }
.copt-email    .copt-icon { background: rgba(251,191,36,0.15); color: #fbbf24; }
.copt-linkedin .copt-icon { background: rgba(10,102,194,0.15); color: #0a66c2; }

.copt-whatsapp:hover { border-color: rgba(37,211,102,0.4); }
.copt-phone:hover    { border-color: rgba(26,115,232,0.4);  }
.copt-email:hover    { border-color: rgba(251,191,36,0.4);  }
.copt-linkedin:hover { border-color: rgba(10,102,194,0.4); }

.copt-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}

.copt-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}

.copt-arrow { color: var(--text-dim); font-size: 1.1rem; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-tagline {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: .75rem;
}

.fsoc-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.fsoc-link:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-lt);
  transform: translateY(-2px);
}

.footer-col-h {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: .9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--accent-lt); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--text-dim);
  margin: 0;
}

.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent-lt); }

/* ── Floating Buttons ──────────────────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  z-index: 999;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.fab:hover {
  transform: scale(1.12);
  color: #fff;
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.fab-whatsapp:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

.fab-phone {
  background: var(--gradient);
  box-shadow: 0 4px 20px rgba(26,115,232,0.35);
}
.fab-phone:hover { box-shadow: 0 6px 28px rgba(26,115,232,0.5); }

/* ── Back to Top ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 998;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-photo { width: 290px; height: 290px; }
}

@media (max-width: 991px) {
  .hero-photo-wrap { margin-bottom: 1rem; }
  .hero-photo { width: 260px; height: 260px; }
  .fb-top-left  { left: -10px; }
  .fb-top-right { right: -10px; }
  .contact-wrap { padding: 2rem 1.5rem; }
  .stats-bar { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .section-pad { padding: 72px 0; }
}

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .hero-title { font-size: 2.8rem; }
  .hero-photo { width: 220px; height: 220px; }
  .tl-header { flex-direction: column; gap: .4rem; }
  .tl-period-wrap { text-align: left; }
  .timeline::before { left: 14px; }
  .tl-item { padding-left: 48px; }
  .tl-dot { left: 4px; }
  .contact-wrap { padding: 1.75rem 1.25rem; }
}

@media (max-width: 575px) {
  .float-badge { display: none; }
  .hero-photo { width: 200px; height: 200px; }
  .stat-item { padding: 1rem; }
}

/* ── Animate.css duración global ──────────────────────── */
:root {
  --animate-duration: 700ms;
}

/* ── Accessibility: reduce motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
