* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0095D3;
  --primary-light: #0AB0E0;
  --secondary: #6DB33F;
  --accent-violet: #6E62C6;
  --accent-violet-soft: #8C7AE6;
  --success: #6DB33F;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #071822;
  --light: #0f2634;
  --gray-200: #1f3f53;
  --gray-300: #2d5a73;
  --gray-600: #a5bfce;
  --gray-700: #c7dbe7;
  --gray-900: #edf6fc;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', 'Inter', sans-serif;
  background:
    radial-gradient(900px 520px at 12% -12%, rgba(10, 176, 224, 0.42), transparent 62%),
    radial-gradient(960px 540px at 88% -18%, rgba(140, 122, 230, 0.4), transparent 60%),
    linear-gradient(160deg, #050f18 0%, #102a3b 52%, #1f2952 100%);
  color: var(--gray-700);
  line-height: 1.6;
}

/* Header — Broadcom red/black on the left, fading into VMware blues/violets on the right */
.header {
  background: linear-gradient(118deg, #000000 0%, #080203 22%, #1a0408 34%, #3d0612 40%, #0a0204 46%, #0a2230 52%, var(--primary) 64%, var(--accent-violet) 84%, var(--secondary) 100%);
  color: white;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  position: relative;
}

.header-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100vw;
  background-image: url('recursos/profilepic.png');
  background-size: 12000px 122px;
  background-position: left center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.header-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -11px;
  width: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 40%, black 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  flex-shrink: 0;
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 122px;
  width: 260px;
  background-image: url('recursos/profilepic.png');
  background-size: 12000px 122px;
  background-position: right center;
  background-repeat: no-repeat;
  filter: blur(2px);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.logo::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 114px;
  width: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 40%, black 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}


.profile-pic {
  width: 122px;
  height: 122px;
  border-radius: 0;
  object-fit: cover;
  border: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-height: 122px;
  position: relative;
  z-index: 1;
}

.logo h1 {
  font-family: 'Arial', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.subtitle {
  font-size: 0.85rem;
  line-height: 1.35;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.role-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.role-bullet {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
  display: inline-block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.9;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.nav a:hover {
  opacity: 1;
  background: white;
  color: #0a3244;
  border-color: white;
}

.header-bc-vmw {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 1;
  min-width: 0;
  object-fit: contain;
  margin-left: 1.75rem;
}

.cta-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cta-stack .btn-primary,
.cta-stack .btn-secondary {
  padding: 0.25rem 0.9rem;
}

.nav-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-stack a {
  padding: 0.25rem 0.9rem;
}

.btn-primary, .btn-secondary {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.9;
  cursor: pointer;
  font-size: inherit;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.btn-primary:hover, .btn-secondary:hover {
  opacity: 1;
  background: white;
  color: #0a3244;
  border-color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(130deg, #061722 0%, #0a3244 35%, var(--primary) 62%, var(--accent-violet-soft) 88%, var(--secondary) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content h2,
.hero-title {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-title {
  max-width: 1400px;
  margin: -2rem auto 2rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero-about {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.hero-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.hero-main h2 {
  margin: 0;
}

.knight-vertical-icon {
  height: clamp(42px, 5.2vw, 64px);
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  flex: 0 0 auto;
}

.vcf9-larger {
  height: clamp(60px, 7.5vw, 92px);
}



.hero-aside {
  flex: 0 0 auto;
  width: 448px;
}

.hero-photo {
  width: 448px;
  height: 448px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  display: block;
}

.hero-subtitle {
  margin: 0 !important;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.hero-main .badge-info {
  margin-top: 0.25rem;
}

.badge-marquee {
  margin-top: 0.25rem;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.badge-marquee-track {
  display: flex;
  width: max-content;
  animation: badge-marquee-scroll 22s linear infinite;
}

.badge-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
  flex-shrink: 0;
}

.badge-marquee:hover .badge-marquee-track {
  animation-play-state: paused;
}

@keyframes badge-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .badge-marquee-track {
    animation: none;
  }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.hero-cta-btn:hover {
  background: white;
  color: #0a3244;
  border-color: white;
}

.hero-email a {
  color: inherit;
  text-decoration: underline;
}

.hero-bio {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  text-justify: inter-word;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .hero-aside {
    width: 304px;
  }

  .hero-photo {
    width: 304px;
    height: 304px;
  }

  .hero-bio {
    font-size: 1rem;
  }
}

@media (max-width: 720px) {
  .hero-about {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-photo {
    width: 208px;
    height: 208px;
  }

  .hero-bio {
    text-align: left;
  }

  .hero-aside {
    width: auto;
    max-width: 100%;
    order: -1;
  }
}

.badge-info {
  display: flex;
  gap: clamp(0.4rem, 1.2vw, 1rem);
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.badge-info--row {
  flex-wrap: wrap;
}

.badge-knight, .badge-expert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-knight {
  background: #9b2c2c;
  color: white;
  border: 2px solid #9b2c2c;
}

.badge-expert {
  background: var(--secondary);
  color: white;
  border: 2px solid var(--secondary);
}

.badge-info--row .badge-expert {
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid white;
}

/* Filter Section */
.filter-section {
  background: rgba(11, 36, 50, 0.72);
  padding: 2rem;
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(4px);
}

.filter-container {
  max-width: 1400px;
  margin: 0 auto;
}

.filter-container h3 {
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.filter-btn,
.filter-search {
  min-height: 48px;
  box-sizing: border-box;
}

.filter-search {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  border: 2px solid var(--gray-300);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  color: var(--gray-700);
  transition: var(--transition);
  min-width: 160px;
  flex: 1 1 180px;
  margin-left: auto;
}

.filter-search:focus-within {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.filter-search svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.filter-search input {
  background: transparent;
  border: 0;
  outline: none;
  color: inherit;
  font: inherit;
  padding: 0.55rem 0;
  width: 100%;
}

.filter-search input::placeholder {
  color: var(--gray-600);
  opacity: 0.85;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--gray-300);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  color: var(--gray-700);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.filter-btn[data-filter="vcap-vcf"],
.filter-btn[data-filter="vcp-vcf"],
.filter-btn[data-filter="vcp-vvf"] {
  color: #ffffff;
  background: rgba(10, 176, 224, 0.12);
  border-color: rgba(10, 176, 224, 0.75);
  box-shadow: 0 0 12px rgba(10, 176, 224, 0.35), inset 0 0 8px rgba(10, 176, 224, 0.18);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
}

.filter-btn[data-filter="vcap-vcf"]:hover,
.filter-btn[data-filter="vcp-vcf"]:hover,
.filter-btn[data-filter="vcp-vvf"]:hover {
  background: rgba(10, 176, 224, 0.22);
  border-color: #0ab0e0;
  box-shadow: 0 0 18px rgba(10, 176, 224, 0.6), inset 0 0 10px rgba(10, 176, 224, 0.28);
}

/* Certifications Section */
.certifications-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2rem, 3.2vw, 3rem) clamp(1rem, 3.2vw, 3rem);
  background:
    radial-gradient(820px 320px at 12% 0%, rgba(10, 176, 224, 0.14), transparent 68%),
    radial-gradient(880px 340px at 88% 8%, rgba(110, 98, 198, 0.16), transparent 70%),
    linear-gradient(145deg, rgba(9, 34, 49, 0.7) 0%, rgba(19, 48, 74, 0.66) 52%, rgba(52, 45, 96, 0.64) 100%);
  border: 1px solid rgba(140, 122, 230, 0.16);
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-description {
  color: var(--gray-600);
  font-size: 1.1rem;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.4vw, 1.35rem);
}

.cert-card {
  background: rgba(9, 40, 58, 0.86);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: clamp(1rem, 1.6vw, 1.2rem);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cert-card-head {
  display: block;
  margin-top: 0.35rem;
  margin-bottom: 0.6rem;
}

.cert-badge {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: none;
  border-radius: 18px;
  object-fit: contain;
  background: #eef4f9;
  border: 1px solid rgba(0, 149, 211, 0.18);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.11);
  padding: 0.45rem;
}

.cert-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.55rem;
  margin-bottom: 0.25rem;
  align-items: center;
  text-align: center;
}

.cert-knight {
  font-size: 0.68rem;
  color: #7fd0ef;
  margin-bottom: 0.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.cert-meta-divider {
  border-top: 2px solid var(--gray-300);
  padding-top: 0.7rem;
  margin-bottom: 0.5rem;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg,
    var(--primary),
    var(--accent-violet),
    var(--secondary),
    var(--accent-violet),
    var(--primary));
  background-size: 200% 100%;
  animation: cert-stripe-shift 6s linear infinite;
}

@keyframes cert-stripe-shift {
  from { background-position: 0% 0%; }
  to { background-position: 200% 0%; }
}

@media (prefers-reduced-motion: reduce) {
  .cert-card::before {
    animation: none;
  }
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-color: var(--primary);
  filter: invert(1) hue-rotate(180deg);
}

.cert-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-detail-status {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin-left: 0;
  transform: none;
}

.cert-detail-status .cert-status {
  margin-bottom: 0;
}

.status-active {
  background: rgba(109, 179, 63, 0.18);
  color: var(--success);
}

.status-expired {
  background: rgba(160, 174, 192, 0.18);
  color: var(--gray-600);
}

.status-pending {
  background: rgba(245, 158, 11, 0.18);
  color: var(--warning);
}

.cert-title {
  font-size: clamp(0.96rem, 0.35vw + 0.82rem, 1.08rem);
  font-weight: 700;
  color: var(--gray-900);
  min-height: 3.45rem;
  margin-bottom: 0;
  line-height: 1.15;
  text-align: center;
}

.cert-alias {
  font-size: clamp(0.76rem, 0.2vw + 0.68rem, 0.84rem);
  color: var(--gray-600);
  margin: 0 0 0.65rem;
  padding: 0;
  text-align: center;
}

.cert-alias-main {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.35;
  min-height: 2.7em;
  text-align: center;
}

.cert-alias-paren {
  display: block;
  line-height: 1.35;
  min-height: 1.35em;
  text-align: center;
}

.cert-details {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: clamp(0.78rem, 0.18vw + 0.68rem, 0.86rem);
}

.cert-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem;
  align-items: center;
  justify-content: stretch;
}

.cert-detail-stack {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.cert-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}

.cert-detail-layout .cert-detail-item {
  min-width: 0;
}

.detail-label {
  font-weight: 600;
  color: var(--gray-700);
  min-width: 50px;
}

@media (max-width: 480px) {
  .cert-detail-layout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cert-detail-status {
    justify-content: center;
  }
}

.detail-value {
  color: var(--gray-600);
}

.cert-dates {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  background: linear-gradient(180deg, rgba(8, 30, 45, 0.98) 0%, rgba(10, 42, 61, 0.98) 100%);
  border: 1px solid rgba(10, 176, 224, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.cert-dates > div {
  flex: 1;
}

.cert-dates strong {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
}

.cert-date-value {
  display: block;
  line-height: 1.25;
  min-height: 2.5em;
}

.cert-date-year {
  display: block;
}

.cert-date-single {
  display: block;
}

.cert-links {
  display: flex;
  gap: 0.5rem;
}

@property --cert-link-angle {
  syntax: '<angle>';
  initial-value: 135deg;
  inherits: false;
}

.cert-link {
  flex: 1;
  padding: 0.5rem;
  text-align: center;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.85), 0 0 14px rgba(10, 176, 224, 0.7), 0 1px 2px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  background: conic-gradient(from var(--cert-link-angle) at 50% 50%,
    var(--primary) 0deg,
    #15325a 20deg,
    #002b5c 30deg,
    #15325a 40deg,
    #1f4d24 45deg,
    #15325a 50deg,
    #1e6fd9 60deg,
    #15325a 75deg,
    var(--accent-violet) 90deg,
    #15325a 105deg,
    var(--primary) 120deg,
    #15325a 140deg,
    #002b5c 150deg,
    #15325a 160deg,
    #1f4d24 165deg,
    #15325a 170deg,
    #1e6fd9 180deg,
    #15325a 195deg,
    var(--accent-violet) 210deg,
    #15325a 225deg,
    var(--primary) 240deg,
    #15325a 260deg,
    #002b5c 270deg,
    #15325a 280deg,
    #1f4d24 285deg,
    #15325a 290deg,
    #1e6fd9 300deg,
    #15325a 315deg,
    var(--accent-violet) 330deg,
    #15325a 345deg,
    var(--primary) 360deg);
  animation: cert-link-pulse 50s linear infinite;
}

@keyframes cert-link-pulse {
  from { --cert-link-angle: 135deg; }
  to   { --cert-link-angle: 495deg; }
}

.cert-link:hover {
  filter: brightness(1.12);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(118deg, #082437 0%, var(--primary) 45%, var(--accent-violet) 80%, var(--secondary) 100%);
  color: white;
  padding: 3rem 2rem;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-section h2 {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-icon {
  display: block;
  width: 128px;
  height: 128px;
  margin: 0.5rem auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Arial', sans-serif;
  line-height: 1;
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 18px rgba(127, 208, 239, 0.55),
    0 0 28px rgba(140, 122, 230, 0.45);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.stat-detail {
  font-size: 0.9rem;
  color: #ffd700;
  font-weight: 700;
  text-shadow:
    0 0 6px rgba(255, 215, 0, 0.7),
    0 0 14px rgba(255, 193, 7, 0.55),
    0 0 22px rgba(255, 152, 0, 0.4);
}

.stat-banner {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.stat-banner-title {
  padding: 1.5rem 2rem;
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .stat-banner-title {
    font-size: 1.6rem;
    padding: 1rem 1.25rem;
  }
}

/* Profile Section */
.profile-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.profile-container h2 {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.profile-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  background: rgba(10, 37, 51, 0.9);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
}

.profile-text p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.profile-text strong {
  color: var(--gray-900);
  font-weight: 600;
}

.profile-text ul {
  list-style: none;
  margin-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.profile-text li {
  padding: 0.3rem 0 0.3rem 1.75rem;
  position: relative;
  color: var(--gray-700);
  background: url('recursos/bclogo.png') no-repeat left 0.55rem / 1em 1em;
}

.profile-text li::after {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  margin-left: 0.4rem;
}

.profile-text li.has-verify::after {
  content: none;
}

.li-inline-check {
  color: var(--success);
  font-weight: 700;
  margin-left: 0.4rem;
}

.li-verify-btn {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.15rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}

.li-verify-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--gray-900);
}

.profile-links h3 {
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.profile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-violet-soft) 72%, var(--secondary) 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.profile-link:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 149, 211, 0.3);
}

.link-icon {
  font-size: 1.3rem;
}

.vexpert-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-items: stretch;
  align-items: center;
}

.vexpert-badge {
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}

.vexpert-badge:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

.footer-content p {
  margin: 0.5rem 0;
  font-weight: 500;
}

.footer-update {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-copyright {
  text-align: right;
  opacity: 0.7;
  font-size: 0.85rem;
  margin: 1.25rem 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 1rem;
  }

  .header-bc-vmw {
    height: 40px;
    align-self: center;
  }

  .cta-buttons {
    width: 100%;
    order: 3;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .certs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-content {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cert-card-head {
    margin-bottom: 0.65rem;
  }

  .cert-card-copy {
    padding-top: 0.45rem;
  }

  .cert-title {
    min-height: 3rem;
  }

  .cert-badge {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .certs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.4rem;
  }

  .badge-info {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
  }

  .knight-vertical-icon {
    height: 40px;
  }

  .vcf9-larger {
    height: 56px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .cert-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cert-badge {
    max-width: none;
  }

  .cert-title {
    font-size: 1.1rem;
    min-height: 2.6rem;
  }

  .cert-card-copy {
    padding-top: 0.35rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cert-card {
  animation: fadeIn 0.4s ease;
}
