/* ========================================
   CV EDUARDO MACÍN - CSS PRINCIPAL OPTIMIZADO
   Sistema de diseño integrado y consistente
   Responsive Design sin scroll vertical
======================================== */

/* ========================================
   1. RESET Y CONFIGURACIÓN BASE
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Screen Reader Only - SEO Hidden Content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   1.1 PRELOADER - GTA V STYLE
======================================== */
.preloader-gta {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.preloader-gta.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Background */
.gta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gtaZoom 20s ease-in-out infinite alternate;
}

@keyframes gtaZoom {
  0% { transform: scale(1) translateX(0); }
  100% { transform: scale(1.1) translateX(-2%); }
}

.gta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.gta-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 150px 60px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Content */
.gta-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 10;
}

/* En móvil: centrar el contenido */
@media (max-width: 767px) {
  .gta-content {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 1.5rem;
  }
  
  .gta-logo {
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .gta-content {
    padding: 3rem 4rem;
  }
  
  .gta-logo {
    position: absolute;
    top: 3rem;
    right: 4rem;
    text-align: right;
    margin-bottom: 0;
  }
}

/* Logo */
.gta-logo {
  animation: gtaFadeIn 1s ease-out;
}

.gta-name {
  display: block;
  font-family: 'Segoe UI', 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .gta-name {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .gta-name {
    font-size: 3rem;
  }
}

.gta-subtitle {
  display: block;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #04bc84;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .gta-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.6em;
  }
}

/* Loading Bar Container */
.gta-loader-container {
  max-width: 500px;
  animation: gtaSlideUp 0.8s ease-out 0.3s both;
}

@media (min-width: 768px) {
  .gta-loader-container {
    max-width: 600px;
  }
}

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

@keyframes gtaFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gta-loading-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.gta-loading-text span:first-child {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .gta-loading-text span:first-child {
    font-size: 0.85rem;
  }
}

.gta-dots {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  animation: gtaDots 1.5s steps(4, end) infinite;
  width: 1.5em;
  display: inline-block;
  text-align: left;
}

@keyframes gtaDots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
  100% { content: ''; }
}

/* Progress Bar */
.gta-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.gta-progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gta-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #04bc84 0%, #06d99a 50%, #7bd3e9 100%);
  transition: width 0.1s linear;
  position: relative;
  box-shadow: 0 0 10px rgba(4, 188, 132, 0.5);
}

.gta-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
  animation: gtaShine 1s linear infinite;
}

@keyframes gtaShine {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* Progress Info */
.gta-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}

#progress-percent {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  #progress-percent {
    font-size: 0.8rem;
  }
}

.gta-tip {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  animation: gtaPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .gta-tip {
    font-size: 0.75rem;
  }
}

@keyframes gtaPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Corner Decorations */
.gta-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: rgba(255, 255, 255, 0.2);
  border-style: solid;
  border-width: 0;
  z-index: 5;
}

@media (min-width: 768px) {
  .gta-corner {
    width: 50px;
    height: 50px;
  }
}

.gta-corner-tl {
  top: 1.5rem;
  left: 1.5rem;
  border-top-width: 2px;
  border-left-width: 2px;
}

.gta-corner-tr {
  top: 1.5rem;
  right: 1.5rem;
  border-top-width: 2px;
  border-right-width: 2px;
}

.gta-corner-bl {
  bottom: 1.5rem;
  left: 1.5rem;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.gta-corner-br {
  bottom: 1.5rem;
  right: 1.5rem;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

@media (min-width: 768px) {
  .gta-corner-tl,
  .gta-corner-tr,
  .gta-corner-bl,
  .gta-corner-br {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  
  .gta-corner-tl { top: 2rem; left: 2rem; }
  .gta-corner-tr { top: 2rem; right: 2rem; }
  .gta-corner-bl { bottom: 2rem; left: 2rem; }
  .gta-corner-br { bottom: 2rem; right: 2rem; }
}

/* Old preloader styles - keep for backward compatibility */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #255565 0%, #345c58 50%, #255565 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.loader-bracket {
  color: #04bc84;
  animation: bracketPulse 1.5s ease-in-out infinite;
}

.loader-bracket:last-child {
  animation-delay: 0.2s;
}

.loader-text {
  color: white;
  animation: textGlow 1.5s ease-in-out infinite;
}

@keyframes bracketPulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(-5px); opacity: 0.7; }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(4, 188, 132, 0.5); }
  50% { text-shadow: 0 0 30px rgba(4, 188, 132, 0.8), 0 0 60px rgba(4, 188, 132, 0.4); }
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.loader-progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #04bc84, #7bd3e9);
  border-radius: 2px;
  animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.loader-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}



/* ========================================
   2. VARIABLES CSS - SISTEMA DE DISEÑO
   Tema Claro (Default) y Tema Oscuro
======================================== */
:root {
  /* ===== TEMA CLARO - Colores estandarizados ===== */
  /* Colores principales - Paleta unificada */
  --accent: #04bc84;
  --accent-hover: #039970;
  --accent-light: #06d99a;
  --primary-dark: #1e4d5c;
  --secondary-blue: #2a7a9c;
  --light-gray: #f0f4f7;
  --dark-teal: #2d5a5a;
  
  /* Colores de fondo - Tonos neutros uniformes */
  --bg-primary: #f0f4f7;
  --bg-secondary: #f7f9fb;
  --bg-card: #ffffff;
  --bg-card-alt: #f7f9fb;
  --bg-card-dark: linear-gradient(135deg, #1e4d5c 0%, #2d5a5a 100%);
  --bg-card-accent: linear-gradient(135deg, #04bc84 0%, #1e4d5c 100%);
  
  /* Colores de texto - Más contraste */
  --text-primary: #1e4d5c;
  --text-secondary: #2d5a5a;
  --text-muted: #5a8a9a;
  --text-on-dark: #ffffff;
  --text-on-accent: #ffffff;
  
  /* Bordes - Uniformes y sutiles */
  --border-light: rgba(30, 77, 92, 0.1);
  --border-accent: rgba(4, 188, 132, 0.2);
  --border-card: rgba(30, 77, 92, 0.08);
  
  /* Sombras - Consistentes */
  --shadow-sm: 0 1px 3px rgba(30, 77, 92, 0.06);
  --shadow-md: 0 4px 12px rgba(30, 77, 92, 0.08);
  --shadow-lg: 0 8px 24px rgba(30, 77, 92, 0.1);
  --shadow-accent: 0 4px 15px rgba(4, 188, 132, 0.2);
  
  /* Cards - Fondo blanco limpio */
  --card-bg: #ffffff;
  --card-border: rgba(30, 77, 92, 0.08);
  --card-shadow: 0 2px 8px rgba(30, 77, 92, 0.06);
  --card-hover-shadow: 0 8px 24px rgba(30, 77, 92, 0.1);
  
  /* Sidebar - Fondo claro uniforme */
  --sidebar-bg: #f7f9fb;
  --sidebar-text: #1e4d5c;
  --sidebar-border: rgba(30, 77, 92, 0.08);
  
  /* Espaciado y layout */
  --sidebar-width: 280px;
  --container-padding: 1rem;
  --card-radius: 12px;
  --card-radius-lg: 16px;
  
  /* Transiciones */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
  
  /* Responsive breakpoints */
  --mobile: 480px;
  --tablet: 768px;
  --desktop: 1024px;
  --desktop-lg: 1280px;
}

/* ===== TEMA OSCURO ===== */
[data-theme="dark"],
body[data-theme="dark"],
html[data-theme="dark"] {
  /* Colores de fondo */
  --bg-primary: #1a2830;
  --bg-secondary: #243640;
  --bg-card: #243640;
  --bg-card-dark: linear-gradient(135deg, #1a2830 0%, #243640 100%);
  --bg-card-accent: linear-gradient(135deg, #04bc84 0%, #1a2830 100%);
  
  /* Colores de texto */
  --text-primary: #e8f1f5;
  --text-secondary: #bed3dc;
  --text-muted: #7bd3e9;
  --text-on-dark: #ffffff;
  
  /* Bordes */
  --border-light: rgba(123, 211, 233, 0.15);
  --border-accent: rgba(4, 188, 132, 0.4);
  --border-card: rgba(123, 211, 233, 0.1);
  
  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-accent: 0 4px 15px rgba(4, 188, 132, 0.4);
  
  /* Cards */
  --card-bg: #243640;
  --card-border: rgba(123, 211, 233, 0.1);
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  --card-hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  
  /* Sidebar */
  --sidebar-bg: rgba(26, 40, 48, 0.98);
  --sidebar-text: #e8f1f5;
  --sidebar-border: rgba(123, 211, 233, 0.1);
  
  /* Ajustes específicos tema oscuro */
  --light-gray: #2d4450;
  --primary-dark: #e8f1f5;
  
  /* Colores principales para tema oscuro */
  --accent: #04bc84;
  --accent-hover: #05d998;
  --accent-light: #7bd3e9;
}

/* ========================================
   3. SIDEBAR NAVIGATION
======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--sidebar-bg);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--sidebar-border);
  display: none;
  flex-direction: column;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 50;
}

@media (min-width: 768px) {
  header {
    display: flex;
  }
}

/* Brand Section */
.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: shimmer 2s infinite;
}

/* Profile image animation */
.navbar-brand img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInScale 0.6s ease forwards;
}

.navbar-brand img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 40px rgba(4, 188, 132, 0.35);
  border-color: var(--accent);
}

.logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 32px rgba(4, 188, 132, 0.25);
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(4, 188, 132, 0.35);
}

.navbar-brand h1 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  text-align: center;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.navbar-brand p {
  font-size: 0.875rem;
  color: var(--accent);
  margin: 0.25rem 0 0 0;
  text-align: center;
  font-weight: 500;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

/* Navigation Links */
.navbar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.nav-link-lateral {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  color: var(--text-gray);
  text-decoration: none;
  border-radius: var(--card-radius);
  transition: var(--transition);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-link-lateral::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary-dark));
  transition: var(--transition);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

.nav-link-lateral:hover {
  background: rgba(4, 188, 132, 0.08);
  color: var(--accent);
  transform: translateX(6px);
}

.nav-link-lateral:hover::before {
  width: 4px;
}

.nav-link-lateral.active {
  background: rgba(4, 188, 132, 0.15);
  color: var(--accent);
  font-weight: 600;
}

.nav-link-lateral.active::before {
  width: 4px;
}

.nav-link-lateral i {
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

/* Status Section */
.navbar-status {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ========================================
   4. CAROUSEL SYSTEM
======================================== */
.carousel-container {
  margin-left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  overflow: hidden;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .carousel-container {
    margin-left: var(--sidebar-width);
    width: calc(100vw - var(--sidebar-width));
    height: 100vh;
    overflow: hidden;
  }
}

.carousel-wrapper {
  width: 300%; /* 3 secciones */
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-section {
  width: 33.333%; /* 100% / 3 secciones */
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: var(--container-padding);
  padding-top: 1rem;
  padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  background-color: var(--bg-primary);
  transition: background-color 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

/* En tablets y desktop */
@media (min-width: 768px) {
  .carousel-section {
    overflow-y: auto;
    padding: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }
  
  .carousel-section > .container-responsive {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .carousel-section {
    padding: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .carousel-section {
    padding: 1.5rem;
  }
}

/* Scroll personalizado */
.carousel-section::-webkit-scrollbar {
  width: 6px;
}

.carousel-section::-webkit-scrollbar-track {
  background: transparent;
}

.carousel-section::-webkit-scrollbar-thumb {
  background: rgba(4, 188, 132, 0.3);
  border-radius: 3px;
}

.carousel-section::-webkit-scrollbar-thumb:hover {
  background: rgba(4, 188, 132, 0.6);
}

/* ========================================
   5. LAYOUT CONTAINERS
======================================== */
.container-responsive {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .container-responsive {
    height: 100%;
  }
}

.section-responsive {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

/* En tablets+: gaps más pequeños para que quepa todo */
@media (min-width: 768px) {
  .section-responsive {
    gap: 0.4rem;
    flex: 1;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .section-responsive {
    gap: 0.5rem;
  }
}

@media (min-width: 1280px) {
  .section-responsive {
    gap: 0.6rem;
  }
}

@media (min-width: 1440px) {
  .section-responsive {
    gap: 0.75rem;
  }
}

/* ========================================
   6. CARD SYSTEM
======================================== */
.dashboard-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 0.875rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease forwards;
}

.dashboard-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .dashboard-card {
    padding: 0.75rem;
    border-radius: 10px;
  }
}

@media (min-width: 1024px) {
  .dashboard-card {
    padding: 1rem;
    border-radius: var(--card-radius);
  }
}

@media (min-width: 1280px) {
  .dashboard-card {
    padding: 1.25rem;
  }
}

/* ========================================
   7. GRID SYSTEMS - OPTIMIZADO PARA SIN SCROLL
======================================== */

/* Stats Grid */
.stats-grid-mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .stats-grid-mobile {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .stats-grid-mobile {
    gap: 0.75rem;
  }
}

@media (min-width: 1280px) {
  .stats-grid-mobile {
    gap: 1rem;
  }
}

/* About Grid */
.about-grid-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .about-grid-mobile {
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
  }
}

/* Skills Grid */
.skills-grid-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .skills-grid-mobile {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .skills-grid-mobile {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

/* Projects Grid */
.projects-grid-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .projects-grid-mobile {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Contact Grid - Mejorado */
.contact-grid-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
  flex: 1;
}

.contact-grid-mobile > * {
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-grid-mobile {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid-mobile {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (min-width: 1280px) {
  .contact-grid-mobile {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* ========================================
   8. COMPONENTES ESPECÍFICOS - COMPACTOS
======================================== */

/* Stats Card */
.stats-card-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .stats-card-mobile {
    gap: 0.5rem;
  }
}

/* Profile Grid */
.profile-grid-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .profile-grid-mobile {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Mobile Button Group */
.mobile-button-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .mobile-button-group {
    flex-direction: row;
    gap: 0.75rem;
  }
}

/* Skills Header - Compacto */
.skills-header-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .skills-header-mobile {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
}

/* Stats List */
.stats-list-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ========================================
   9. SKILL TAGS
======================================== */
.skill-tag-mobile {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  background: var(--light-gray);
  color: var(--text-dark);
  border: 1px solid var(--border-accent);
}

.skill-tag-mobile:hover {
  background: rgba(4, 188, 132, 0.1);
  border-color: var(--accent);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .skill-tag-mobile {
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   10. TIPOGRAFÍA RESPONSIVA - COMPACTA
======================================== */
.heading-responsive {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .heading-responsive {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .heading-responsive {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .heading-responsive {
    font-size: 1.5rem;
  }
}

.text-responsive {
  font-size: 0.8125rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .text-responsive {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .text-responsive {
    font-size: 0.8125rem;
  }
}

@media (min-width: 1280px) {
  .text-responsive {
    font-size: 0.875rem;
  }
}

.icon-responsive {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .icon-responsive {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .icon-responsive {
    font-size: 0.875rem;
  }
}

/* ========================================
   11. SISTEMA DE BOTONES
======================================== */
.btn-responsive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}

@media (min-width: 640px) {
  .btn-responsive {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }
}

.btn-responsive:hover {
  transform: translateY(-1px);
}

.btn-responsive:active {
  transform: translateY(0);
}

/* ========================================
   12. SISTEMA DE FORMULARIOS - Compacto
======================================== */
.form-responsive {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .form-responsive {
    gap: 0.5rem;
  }
}

@media (min-width: 1280px) {
  .form-responsive {
    gap: 0.75rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

@media (min-width: 768px) {
  .form-group {
    gap: 0.25rem;
  }
}

.form-input-mobile {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--card-bg);
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .form-input-mobile {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
  }
}

@media (min-width: 1280px) {
  .form-input-mobile {
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }
}

.form-input-mobile:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(4, 188, 132, 0.1);
}

.keyboard-only-focus:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========================================
   12.1 CONTACT BADGES Y NESTED CARDS
======================================== */
/* Badge de contacto uniforme */
.contact-badge {
  background: rgba(4, 188, 132, 0.08);
  color: var(--accent);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 500;
  border: 1px solid rgba(4, 188, 132, 0.15);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .contact-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
  }
}

.contact-badge.primary {
  background: rgba(4, 188, 132, 0.15);
}

/* Nested card para sub-items */
.dashboard-card.nested-card {
  padding: 0.625rem;
  box-shadow: none;
  border: 1px solid var(--card-border);
}

@media (min-width: 768px) {
  .dashboard-card.nested-card {
    padding: 0.5rem 0.625rem;
  }
}

[data-theme="dark"] .contact-badge {
  background: rgba(4, 188, 132, 0.12);
  border-color: rgba(4, 188, 132, 0.25);
}

[data-theme="dark"] .contact-badge.primary {
  background: rgba(4, 188, 132, 0.2);
}

[data-theme="dark"] .dashboard-card.nested-card {
  background: var(--bg-secondary);
  border-color: var(--border-light);
}

/* Projects Notice */
.dashboard-card.projects-notice {
  background: var(--bg-secondary);
}

.notice-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  background: var(--card-bg);
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--card-border);
}

@media (min-width: 768px) {
  .notice-tag {
    font-size: 0.7rem;
  }
}

[data-theme="dark"] .dashboard-card.projects-notice {
  background: var(--bg-secondary);
}

[data-theme="dark"] .notice-tag {
  background: var(--bg-card);
  border-color: var(--border-light);
  color: var(--text-secondary);
}

/* ========================================
   13. PROGRESS BARS
======================================== */
.progress-bar-bg {
  background: var(--light-gray);
}

.progress-bar-fill {
  background: linear-gradient(90deg, var(--accent), var(--secondary-blue));
}

/* ========================================
   14. STATUS BADGES
======================================== */
.status-badge {
  background-color: var(--light-gray);
  color: var(--primary-dark);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border-accent);
}

.card-status-active,
.card-status-available {
  background: rgba(4, 188, 132, 0.1);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

/* ========================================
   15. FORM INFO BOX
======================================== */
.form-info-box {
  background-color: rgba(190, 211, 220, 0.5);
  border-radius: 0.5rem;
  border: 1px solid var(--border-accent);
}
.no-overflow {
  overflow-x: hidden;
}

.text-break {
  word-break: break-word;
  overflow-wrap: break-word;
}

.gap-responsive {
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gap-responsive {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gap-responsive {
    gap: 1.5rem;
  }
}

.card-spacing-mobile {
  padding: 1rem;
}

@media (min-width: 640px) {
  .card-spacing-mobile {
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card-spacing-mobile {
    padding: 1.5rem;
  }
}

.touch-feedback {
  -webkit-tap-highlight-color: rgba(0, 255, 136, 0.3);
}

.touch-feedback:active {
  transform: scale(0.98);
}

/* ========================================
   16. CONTROLES DE NAVEGACIÓN
======================================== */
.section-indicators {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(189, 211, 220, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0.75rem;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 20px rgba(52, 92, 88, 0.1);
  animation: fadeInRight 0.6s ease 0.5s forwards;
  opacity: 0;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(74, 132, 172, 0.3);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(4, 188, 132, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(4, 188, 132, 0.4);
  animation: glow 2s ease-in-out infinite;
}

.indicator.active::before {
  width: 200%;
  height: 200%;
}

.indicator:hover {
  background: rgba(4, 188, 132, 0.7);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(4, 188, 132, 0.3);
}

.carousel-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 0.75rem;
  background: rgba(189, 211, 220, 0.95);
  backdrop-filter: blur(15px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(52, 92, 88, 0.1);
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--primary-dark));
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(4, 188, 132, 0.4);
}

.nav-btn:active {
  transform: scale(0.95);
}

.nav-btn:disabled {
  background: linear-gradient(135deg, var(--light-gray), var(--secondary-blue));
  cursor: not-allowed;
  transform: scale(1);
  box-shadow: none;
}

.no-overflow {
  overflow-x: hidden;
}

.text-break {
  word-break: break-word;
  overflow-wrap: break-word;
}

.gap-responsive {
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gap-responsive {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gap-responsive {
    gap: 1.5rem;
  }
}

.card-spacing-mobile {
  padding: 1rem;
}

@media (min-width: 640px) {
  .card-spacing-mobile {
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card-spacing-mobile {
    padding: 1.5rem;
  }
}

.touch-feedback {
  -webkit-tap-highlight-color: rgba(0, 255, 136, 0.3);
}

.touch-feedback:active {
  transform: scale(0.98);
}

/* ========================================
   18. ANIMACIONES
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(4, 188, 132, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(4, 188, 132, 0.6), 0 0 40px rgba(4, 188, 132, 0.3);
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(4, 188, 132, 0.3);
  }
  50% {
    border-color: rgba(4, 188, 132, 0.8);
  }
}

@keyframes textGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Pulse slow para iconos */
.animate-pulse-slow {
  animation: pulse 3s infinite;
}

/* Float animation */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Glow effect */
.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Shimmer effect para loading */
.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Bounce animation */
.animate-bounce-subtle {
  animation: bounce 2s infinite;
}

/* ========================================
   18.1 CLASES DE ANIMACIÓN DINÁMICAS
======================================== */

/* Animaciones en scroll - estados iniciales */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-fade-up {
  transform: translateY(40px);
}

.animate-on-scroll.animate-fade-left {
  transform: translateX(-40px);
}

.animate-on-scroll.animate-fade-right {
  transform: translateX(40px);
}

.animate-on-scroll.animate-fade-scale {
  transform: scale(0.9);
}

/* Estado visible */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Hover effects mejorados para cards */
.dashboard-card {
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 188, 132, 0.05), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.dashboard-card:hover::before {
  left: 100%;
}

/* Skill tags con hover dinámico */
.skill-tag-mobile {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.skill-tag-mobile::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(4, 188, 132, 0.2) 0%, transparent 70%);
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.skill-tag-mobile:hover::before {
  width: 200%;
  height: 200%;
}

/* Botones con efecto ripple */
.btn-responsive {
  position: relative;
  overflow: hidden;
}

.btn-responsive::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-responsive:active::after {
  width: 300px;
  height: 300px;
}

/* Progress bar animada */
.progress-bar-fill {
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

/* Iconos con hover rotate */
.icon-hover-rotate {
  transition: transform 0.3s ease;
}

.icon-hover-rotate:hover {
  transform: rotate(15deg) scale(1.1);
}

/* Text gradient animado */
.text-gradient-animated {
  background: linear-gradient(90deg, var(--accent), var(--secondary-blue), var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradient 3s linear infinite;
}

/* Staggered animations para grids */
.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

/* Typing effect cursor */
.typing-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Card tilt effect on hover */
.card-tilt {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.card-tilt:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
}

/* Glassmorphism effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Neon glow text */
.neon-glow {
  text-shadow: 0 0 5px rgba(4, 188, 132, 0.5),
               0 0 10px rgba(4, 188, 132, 0.3),
               0 0 20px rgba(4, 188, 132, 0.2);
}

/* Underline animation */
.underline-animation {
  position: relative;
}

.underline-animation::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary-blue));
  transition: width 0.3s ease;
}

.underline-animation:hover::after {
  width: 100%;
}

/* ========================================
   19. ACCESIBILIDAD
======================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible para navegación por teclado */
.nav-link-lateral:focus-visible,
.indicator:focus-visible,
.nav-btn:focus-visible,
.btn-responsive:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========================================
   20. RESPONSIVE MOBILE FIRST
======================================== */
@media (max-width: 767px) {
  :root {
    --container-padding: 0.75rem;
  }
  
  .carousel-container {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height para móvil */
  }
  
  .carousel-wrapper {
    height: 100%;
  }
  
  .carousel-section {
    height: 100%;
    padding: var(--container-padding);
    padding-top: 0.75rem;
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .section-responsive {
    gap: 0.75rem;
    height: auto;
    min-height: min-content;
    padding-bottom: 1rem;
  }
  
  .dashboard-card {
    padding: 0.875rem;
  }
  
  /* Contenedores con altura automática */
  .container-responsive {
    height: auto;
    min-height: auto;
  }
}

/* ========================================
   21. DARK MODE SUPPORT (PREPARADO)
======================================== */
@media (prefers-color-scheme: dark) {
  /* Variables pueden ser sobrescritas aquí para modo oscuro */
  /* Actualmente no implementado, pero estructura preparada */
}

/* ========================================
   22. MOBILE NAVIGATION
======================================== */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(135deg, rgba(189, 211, 220, 0.98), rgba(189, 211, 220, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(52, 92, 88, 0.1);
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  border-radius: var(--card-radius);
  color: var(--text-gray);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 64px;
  position: relative;
  overflow: hidden;
}

.mobile-nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary-blue));
  border-radius: 0 0 4px 4px;
  transition: width 0.3s ease;
}

.mobile-nav-btn.active::before {
  width: 70%;
}

.mobile-nav-btn i {
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-btn:hover,
.mobile-nav-btn.active {
  color: var(--accent);
  background: rgba(4, 188, 132, 0.1);
}

.mobile-nav-btn.active i {
  transform: scale(1.15) translateY(-2px);
  text-shadow: 0 0 10px rgba(4, 188, 132, 0.5);
}

.mobile-nav-btn:active {
  transform: scale(0.95);
}

/* Ripple effect for mobile nav */
.mobile-nav-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(4, 188, 132, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.mobile-nav-btn:active::after {
  width: 150px;
  height: 150px;
}

/* Tema oscuro para navegación móvil */
[data-theme="dark"] .mobile-nav {
  background: linear-gradient(135deg, rgba(26, 40, 48, 0.98), rgba(36, 54, 64, 0.95));
  border-top-color: rgba(123, 211, 233, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .mobile-nav-btn {
  color: var(--text-secondary);
}

[data-theme="dark"] .mobile-nav-btn:hover,
[data-theme="dark"] .mobile-nav-btn.active {
  color: var(--accent);
  background: rgba(4, 188, 132, 0.15);
}

/* ========================================
   23. PRINT STYLES
======================================== */
@media print {
  .carousel-container {
    margin-left: 0 !important;
    width: 100% !important;
  }
  
  .carousel-wrapper {
    width: 100% !important;
    transform: none !important;
  }
  
  .carousel-section {
    width: 100% !important;
    page-break-after: always;
  }
  
  header,
  .section-indicators,
  .carousel-nav,
  .mobile-nav {
    display: none !important;
  }
}

/* ========================================
   24. SOCIAL LINKS IN SIDEBAR
======================================== */
.navbar-brand a {
  text-decoration: none;
}

.navbar-brand a:hover i {
  color: white !important;
}

/* ========================================
   25. HERO SECTION STYLES - COMPACTO
======================================== */
.hero-section {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .hero-section {
    margin-bottom: 0.5rem;
  }
}

.hero-card {
  padding: 1.5rem !important;
  border-radius: 20px !important;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

/* TEMA CLARO - Hero Card */
.hero-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 253, 250, 0.9) 50%,
    rgba(226, 250, 243, 0.95) 100%) !important;
  border: 1px solid rgba(4, 188, 132, 0.2) !important;
  box-shadow: 
    0 10px 40px rgba(4, 188, 132, 0.15),
    0 0 0 1px rgba(4, 188, 132, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* TEMA OSCURO - Hero Card */
[data-theme="dark"] .hero-card {
  background: linear-gradient(135deg, 
    rgba(36, 54, 64, 0.95) 0%, 
    rgba(30, 77, 92, 0.9) 50%,
    rgba(37, 85, 101, 0.95) 100%) !important;
  border: 1px solid rgba(4, 188, 132, 0.3) !important;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(4, 188, 132, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

@media (min-width: 768px) {
  .hero-card {
    padding: 1.25rem !important;
    border-radius: 18px !important;
  }
}

@media (min-width: 1024px) {
  .hero-card {
    padding: 1.5rem !important;
    border-radius: 20px !important;
  }
}

@media (min-width: 1280px) {
  .hero-card {
    padding: 2rem !important;
    border-radius: 24px !important;
  }
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(4, 188, 132, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(123, 211, 233, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(4, 188, 132, 0.05) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2304bc84' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.8;
}

[data-theme="dark"] .hero-pattern {
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(4, 188, 132, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(123, 211, 233, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(4, 188, 132, 0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2304bc84' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.hero-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(4, 188, 132, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

[data-theme="dark"] .hero-glow {
  background: radial-gradient(circle, rgba(4, 188, 132, 0.25) 0%, transparent 70%);
}

/* Second glow for enhanced effect */
.hero-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 211, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 5s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

[data-theme="dark"] .hero-card::after {
  background: radial-gradient(circle, rgba(123, 211, 233, 0.15) 0%, transparent 70%);
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-30px, 30px) scale(1.2); opacity: 0.8; }
}

/* Hero title - TEMA CLARO */
.hero-title {
  background: linear-gradient(135deg, #1e4d5c 0%, #04bc84 50%, #255565 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleShine 4s ease-in-out infinite;
  text-shadow: none;
}

/* Hero title - TEMA OSCURO */
[data-theme="dark"] .hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #7bd3e9 50%, #04bc84 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes heroTitleShine {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Hero description enhanced */
.hero-description {
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Hero title text override for theme compatibility */
.hero-title-text {
  color: transparent !important;
}

/* Profile Image Container - Compacto */
.profile-image-container {
  position: relative;
  flex-shrink: 0;
}

.profile-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, #04bc84, #7bd3e9, #04bc84) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ringRotate 4s linear infinite;
  box-shadow: 0 0 20px rgba(4, 188, 132, 0.3);
}

[data-theme="dark"] .profile-ring {
  box-shadow: 0 0 30px rgba(4, 188, 132, 0.4);
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.profile-image-hero {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(4, 188, 132, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .profile-image-hero {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.profile-image-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(4, 188, 132, 0.25);
}

@media (min-width: 768px) {
  .profile-image-hero {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }
}

@media (min-width: 1024px) {
  .profile-image-hero {
    width: 90px;
    height: 90px;
  }
}

@media (min-width: 1280px) {
  .profile-image-hero {
    width: 110px;
    height: 110px;
    border-width: 3px;
  }
}

.profile-image-hero:hover {
  transform: scale(1.05);
  border-color: #04bc84;
}

.profile-status-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #04bc84 0%, #03a876 100%);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(4, 188, 132, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
  .profile-status-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
  }
}

@media (min-width: 1280px) {
  .profile-status-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.85rem;
  }
}

.status-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Typing Effect - Compacto */
.typing-container {
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .typing-container {
    justify-content: flex-start;
  }
}

.typing-cursor {
  color: #04bc84;
  animation: cursorBlink 1s step-end infinite;
  font-weight: 300;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* CTA Buttons - Compacto */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.7rem;
  }
}

@media (min-width: 1024px) {
  .cta-button {
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-size: 0.75rem;
  }
}

@media (min-width: 1280px) {
  .cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.85rem;
  }
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, #04bc84 0%, #03a876 50%, #7bd3e9 100%);
  background-size: 200% auto;
  color: white;
  box-shadow: 0 4px 20px rgba(4, 188, 132, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(4, 188, 132, 0.5);
  background-position: right center;
}

/* Secondary button - TEMA CLARO */
.cta-button.secondary {
  background: rgba(4, 188, 132, 0.1);
  color: var(--text-primary);
  border: 2px solid rgba(4, 188, 132, 0.3);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(4, 188, 132, 0.2);
  border-color: #04bc84;
  transform: translateY(-3px);
  color: #04bc84;
}

/* Secondary button - TEMA OSCURO */
[data-theme="dark"] .cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #04bc84;
  color: white;
}

/* ========================================
   26. BENTO GRID LAYOUT - Compacto
======================================== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
  }
  
  .bento-contact {
    grid-column: span 1;
  }
  
  .bento-backend {
    grid-column: span 1;
  }
  
  .bento-frontend {
    grid-column: span 1;
  }
  
  .bento-tools {
    grid-column: span 1;
  }
}

@media (min-width: 1280px) {
  .bento-grid {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

.bento-item {
  animation: bentoFadeIn 0.6s ease forwards;
  opacity: 0;
}

.bento-item:nth-child(1) { animation-delay: 0.1s; }
.bento-item:nth-child(2) { animation-delay: 0.2s; }
.bento-item:nth-child(3) { animation-delay: 0.3s; }
.bento-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes bentoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Bento Link Items - Compacto */
.bento-link-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(4, 188, 132, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

[data-theme="dark"] .bento-link-item {
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .bento-link-item {
    gap: 0.4rem;
    padding: 0.4rem;
    border-radius: 8px;
  }
}

@media (min-width: 1280px) {
  .bento-link-item {
    gap: 0.6rem;
    padding: 0.6rem;
    border-radius: 10px;
  }
}

.bento-link-item:hover {
  background: rgba(4, 188, 132, 0.15);
  transform: translateX(5px);
}

[data-theme="dark"] .bento-link-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.bento-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 1280px) {
  .bento-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
}

.bento-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(4, 188, 132, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

[data-theme="dark"] .bento-social-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (min-width: 1280px) {
  .bento-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
}

.bento-social-btn:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-3px);
}

[data-theme="dark"] .bento-social-btn:hover {
  background: #000;
}

.bento-social-btn.instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
}

/* ========================================
   27. SKILL CARDS MODERN STYLE - Compacto
======================================== */
.skill-card {
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(4, 188, 132, 0.1) 0%, transparent 70%);
  animation: skillCardGlow 6s linear infinite;
  pointer-events: none;
}

@keyframes skillCardGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.skill-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media (min-width: 1280px) {
  .skill-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
}

.skill-card:hover .skill-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.skill-level {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  background: rgba(4, 188, 132, 0.2);
  color: #04bc84;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 1280px) {
  .skill-level {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
  }
}

.skill-level.dark {
  background: rgba(37, 85, 101, 0.1);
  color: #255565;
}

.skill-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

@media (min-width: 1280px) {
  .skill-tags-grid {
    gap: 0.4rem;
  }
}

.skill-tag-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
}

@media (min-width: 1280px) {
  .skill-tag-modern {
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
  }
}

.skill-tag-modern:hover {
  background: rgba(4, 188, 132, 0.2);
  border-color: #04bc84;
  transform: translateY(-2px);
}

.skill-tag-modern.dark {
  background: rgba(37, 85, 101, 0.1);
  border-color: rgba(37, 85, 101, 0.2);
  color: #255565;
}

.skill-tag-modern.dark:hover {
  background: rgba(4, 188, 132, 0.15);
  border-color: #04bc84;
  color: #04bc84;
}

/* ========================================
   28. PROJECT CARDS MODERN - Compacto
======================================== */
.projects-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .projects-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 1280px) {
  .projects-grid-modern {
    gap: 1rem;
  }
}

.project-card-modern {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(30, 77, 92, 0.1);
}

/* Project card - TEMA CLARO */
body:not([data-theme="dark"]) .project-card-modern {
  background: linear-gradient(135deg, rgba(4, 188, 132, 0.05) 0%, #ffffff 100%);
  border: 1px solid rgba(4, 188, 132, 0.1);
}

/* Project card - TEMA OSCURO */
[data-theme="dark"] .project-card-modern {
  background: var(--bg-card);
  border-color: var(--border-card);
}

@media (min-width: 1280px) {
  .project-card-modern {
    border-radius: 16px;
  }
}

.project-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #04bc84, #7bd3e9, #4a84ac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.project-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(30, 77, 92, 0.1);
}

[data-theme="dark"] .project-card-modern:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.project-card-modern.featured {
  background: linear-gradient(135deg, #1e4d5c 0%, #2d5a5a 50%, #1e4d5c 100%);
  color: white;
  border-color: transparent;
}

.project-card-modern.featured::before {
  background: linear-gradient(90deg, #04bc84, #7bd3e9);
  transform: scaleX(1);
}

.project-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(4, 188, 132, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-card-modern:hover .project-card-glow {
  opacity: 1;
}

.project-card-content {
  position: relative;
  padding: 1rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .project-card-content {
    padding: 0.85rem;
  }
}

@media (min-width: 1280px) {
  .project-card-content {
    padding: 1.25rem;
  }
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .project-header {
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1280px) {
  .project-header {
    margin-bottom: 0.75rem;
  }
}

.project-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #04bc84, #7bd3e9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 4px 12px rgba(4, 188, 132, 0.25);
  transition: all 0.3s ease;
}

@media (min-width: 1280px) {
  .project-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.25rem;
    box-shadow: 0 6px 16px rgba(4, 188, 132, 0.3);
  }
}

.project-card-modern:hover .project-icon {
  transform: scale(1.1) rotate(5deg);
}

.project-icon.education {
  background: linear-gradient(135deg, #4a84ac, #7bd3e9);
  box-shadow: 0 4px 12px rgba(74, 132, 172, 0.25);
}

@media (min-width: 1280px) {
  .project-icon.education {
    box-shadow: 0 6px 16px rgba(74, 132, 172, 0.3);
  }
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 1280px) {
  .project-badge {
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
  }
}

.project-badge.live {
  background: rgba(4, 188, 132, 0.15);
  color: #04bc84;
}

.project-badge.live i {
  font-size: 0.45rem;
  animation: pulse 2s infinite;
}

.project-badge.type {
  background: rgba(74, 132, 172, 0.15);
  color: #4a84ac;
}

.project-card-modern.featured .project-badge.live {
  background: rgba(4, 188, 132, 0.3);
}

.project-card-modern.featured .project-badge.type {
  background: rgba(123, 211, 233, 0.2);
  color: #7bd3e9;
}

.project-title {
  font-size: 1rem;
  font-weight: 700;
  color: #255565;
  margin-bottom: 0.15rem;
  transition: color 0.3s ease;
}

@media (min-width: 1280px) {
  .project-title {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
}

.project-card-modern.featured .project-title {
  color: white;
}

.project-subtitle {
  font-size: 0.75rem;
  color: #4a84ac;
  margin-bottom: 0.6rem;
}

@media (min-width: 1280px) {
  .project-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
}

.project-card-modern.featured .project-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.project-description {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #345c58;
  margin-bottom: 0.6rem;
}

@media (min-width: 1280px) {
  .project-description {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
  }
}

.project-card-modern.featured .project-description {
  color: rgba(255, 255, 255, 0.8);
}

.project-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}

@media (min-width: 1280px) {
  .project-tech-stack {
    gap: 0.4rem;
    margin-bottom: 0.85rem;
  }
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: rgba(4, 188, 132, 0.06);
  border: 1px solid rgba(4, 188, 132, 0.12);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #1e4d5c;
  transition: all 0.3s ease;
}

[data-theme="dark"] .tech-pill {
  background: rgba(4, 188, 132, 0.1);
  border-color: rgba(4, 188, 132, 0.2);
  color: var(--text-secondary);
}

@media (min-width: 1280px) {
  .tech-pill {
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 7px;
    font-size: 0.7rem;
  }
}

.tech-pill:hover {
  background: rgba(4, 188, 132, 0.1);
  border-color: #04bc84;
  color: #04bc84;
  transform: translateY(-2px);
}

.project-card-modern.featured .tech-pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.project-card-modern.featured .tech-pill:hover {
  background: rgba(4, 188, 132, 0.3);
  border-color: #04bc84;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(189, 211, 220, 0.3);
}

@media (min-width: 1280px) {
  .project-footer {
    padding-top: 0.85rem;
  }
}

.project-card-modern.featured .project-footer {
  border-color: rgba(255, 255, 255, 0.1);
}

.project-stats {
  display: flex;
  gap: 0.6rem;
  font-size: 0.7rem;
  color: #4a84ac;
}

@media (min-width: 1280px) {
  .project-stats {
    gap: 0.8rem;
    font-size: 0.75rem;
  }
}

.project-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.project-card-modern.featured .project-stats {
  color: rgba(255, 255, 255, 0.7);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #04bc84, #7bd3e9);
  color: white;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(4, 188, 132, 0.3);
}

.project-link:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(4, 188, 132, 0.4);
}

.project-link i {
  transition: transform 0.3s ease;
}

.project-link:hover i {
  transform: translateX(3px);
}
/* ========================================
   29. TEMA TOGGLE BUTTON - SIDEBAR
======================================== */
.theme-toggle-container {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
}

.theme-toggle-sidebar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: var(--sidebar-text);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
}

.theme-toggle-sidebar:hover {
  background: rgba(4, 188, 132, 0.1);
  color: var(--accent);
}

.theme-toggle-sidebar i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  transition: var(--transition);
}

.theme-toggle-sidebar .fa-sun {
  display: none;
  color: #fbbf24;
}

.theme-toggle-sidebar .fa-moon {
  display: block;
}

[data-theme="dark"] .theme-toggle-sidebar .fa-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle-sidebar .fa-moon {
  display: none;
}

/* Versión móvil del botón */
.theme-toggle-mobile {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.theme-toggle-mobile:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.theme-toggle-mobile i {
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.theme-toggle-mobile .fa-sun {
  display: none;
  color: #fbbf24;
}

.theme-toggle-mobile .fa-moon {
  display: block;
}

[data-theme="dark"] .theme-toggle-mobile .fa-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle-mobile .fa-moon {
  display: none;
}

@media (min-width: 768px) {
  .theme-toggle-mobile {
    display: none;
  }
  
  .theme-toggle-container {
    display: block;
  }
}

@media (max-width: 767px) {
  .theme-toggle-container {
    display: none;
  }
  
  /* Ocultar botón flotante en móvil */
  .theme-toggle-mobile {
    display: none;
  }
}

/* Botón de tema en la barra de navegación móvil */
.mobile-nav-btn.theme-btn-mobile .fa-sun {
  display: none;
  color: #fbbf24;
}

.mobile-nav-btn.theme-btn-mobile .fa-moon {
  display: block;
}

[data-theme="dark"] .mobile-nav-btn.theme-btn-mobile .fa-sun {
  display: block;
}

[data-theme="dark"] .mobile-nav-btn.theme-btn-mobile .fa-moon {
  display: none;
}

/* ========================================
   30. ESTILOS TEMA CLARO - ESTANDARIZACIÓN
======================================== */
/* Fondo principal tema claro */
body:not([data-theme="dark"]) {
  background-color: #f0f4f7;
}

body:not([data-theme="dark"]) .carousel-section {
  background-color: #f0f4f7 !important;
}

/* Cards tema claro - fondo uniforme con gradiente suave */
body:not([data-theme="dark"]) .dashboard-card {
  background: linear-gradient(135deg, rgba(4, 188, 132, 0.05) 0%, #ffffff 100%);
  border: 1px solid rgba(4, 188, 132, 0.1);
  box-shadow: 0 2px 8px rgba(30, 77, 92, 0.06);
}

/* Cards con gradientes oscuros - mantener igual en ambos temas */
body:not([data-theme="dark"]) .dashboard-card.bg-gradient-to-br.from-primaryDark,
body:not([data-theme="dark"]) .dashboard-card.bg-gradient-to-br.from-secondary,
body:not([data-theme="dark"]) .dashboard-card.bg-gradient-to-br.from-darkTeal,
body:not([data-theme="dark"]) .dashboard-card.bg-gradient-to-br.from-accent {
  background: var(--bg-card-dark);
  border-color: transparent;
}

/* Textos unificados tema claro */
body:not([data-theme="dark"]) .text-primaryDark {
  color: #1e4d5c !important;
}

body:not([data-theme="dark"]) .text-darkTeal {
  color: #2d5a5a !important;
}

/* Sidebar tema claro */
body:not([data-theme="dark"]) header {
  background: linear-gradient(180deg, #f8fafb 0%, rgba(4, 188, 132, 0.03) 100%);
  border-color: rgba(4, 188, 132, 0.1);
}

/* Inputs tema claro */
body:not([data-theme="dark"]) .form-input-mobile {
  background: linear-gradient(135deg, rgba(4, 188, 132, 0.02) 0%, #f8fafb 100%);
  border: 2px solid rgba(4, 188, 132, 0.1);
  color: #1e4d5c;
}

body:not([data-theme="dark"]) .form-input-mobile:focus {
  border-color: #04bc84 !important;
  box-shadow: 0 0 0 3px rgba(4, 188, 132, 0.1);
}

/* Notice de proyectos tema claro */
body:not([data-theme="dark"]) .dashboard-card.projects-notice {
  background: linear-gradient(135deg, rgba(4, 188, 132, 0.03) 0%, #f8fafb 100%);
  border: 1px solid rgba(4, 188, 132, 0.08);
}

/* Nested cards tema claro */
body:not([data-theme="dark"]) .dashboard-card.nested-card {
  background: linear-gradient(135deg, rgba(4, 188, 132, 0.03) 0%, #f8fafb 100%);
  border: 1px solid rgba(4, 188, 132, 0.08);
  box-shadow: none;
}

/* Cards de métricas tema claro */
body:not([data-theme="dark"]) .metric-card {
  background: linear-gradient(135deg, rgba(4, 188, 132, 0.05) 0%, #ffffff 100%) !important;
  border: 1px solid rgba(4, 188, 132, 0.1) !important;
}

/* Form info box tema claro */
body:not([data-theme="dark"]) .form-info-box {
  background: linear-gradient(135deg, rgba(4, 188, 132, 0.05) 0%, #f8fafb 100%);
  border: 1px solid rgba(4, 188, 132, 0.12);
}

/* Status badge uniforme */
body:not([data-theme="dark"]) .status-badge {
  background: rgba(4, 188, 132, 0.08);
  color: #04bc84;
  border: 1px solid rgba(4, 188, 132, 0.15);
}

/* ========================================
   30.1 STATS CARDS - ESTILO UNIFORME
======================================== */
/* Stats cards siguen el estilo del tema */
.stats-card-1,
.stats-card-2,
.stats-card-3,
.stats-card-4 {
  /* Heredan estilos de .dashboard-card */
}

/* Stats card text colors - TEMA CLARO */
.stats-label {
  color: var(--text-secondary);
}

.stats-value {
  color: var(--text-primary);
}

.stats-icon-bg {
  background: rgba(4, 188, 132, 0.15);
}

.stats-icon {
  color: var(--accent);
}

/* Stats card text colors - TEMA OSCURO */
[data-theme="dark"] .stats-label {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .stats-value {
  color: #ffffff;
}

[data-theme="dark"] .stats-icon-bg {
  background: rgba(4, 188, 132, 0.25);
}

[data-theme="dark"] .stats-icon {
  color: var(--accent);
}

/* Hero card text colors - TEMA CLARO */
.hero-title-text {
  color: var(--text-primary);
}

.hero-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-location {
  color: var(--text-secondary);
  background: rgba(4, 188, 132, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  display: inline-flex;
  border: 1px solid rgba(4, 188, 132, 0.1);
}

/* Hero card text colors - TEMA OSCURO */
[data-theme="dark"] .hero-title-text {
  color: #ffffff;
}

[data-theme="dark"] .hero-description {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .hero-location {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Bento contact card text colors - TEMA CLARO */
.card-title {
  color: var(--text-primary);
}

.bento-link-label {
  color: var(--text-secondary);
}

.bento-link-value {
  color: var(--text-primary);
}

/* Bento contact card text colors - TEMA OSCURO */
[data-theme="dark"] .card-title {
  color: #ffffff;
}

[data-theme="dark"] .bento-link-label {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .bento-link-value {
  color: #ffffff;
}

/* Bento contact card - sigue el estilo del tema */
.bento-contact .dashboard-card {
  /* Hereda estilos de .dashboard-card */
}

/* Hero card - sigue el estilo del tema */
.dashboard-card.hero-card {
  /* Hereda estilos de .dashboard-card */
}

/* Social media card - mantener gradiente oscuro */
.social-media-card {
  background: linear-gradient(to bottom right, #255565, #345c58) !important;
  border: none !important;
}

/* ========================================
   30.2 CARDS ESPECIALES TEMA CLARO
======================================== */

/* Metric cards uniformes */
.metric-card {
  background: rgba(4, 188, 132, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(4, 188, 132, 0.12);
  padding: 0.75rem;
}

[data-theme="dark"] .metric-card {
  background: rgba(4, 188, 132, 0.1);
  border-color: rgba(4, 188, 132, 0.2);
}

/* ========================================
   30.3 SKILL CARDS - TEMAS SEPARADOS
======================================== */
/* Skill cards base - transiciones suaves */
.backend-card,
.frontend-card,
.devops-card {
  transition: background 0.3s ease, border-color 0.3s ease;
}
/* Los estilos de tema para skill cards están al final del archivo (FINAL OVERRIDES) */

/* ========================================
   31. ESTILOS TEMA OSCURO - COMPONENTES
======================================== */
/* Fondo principal */
[data-theme="dark"] body {
  background-color: var(--bg-primary);
}

[data-theme="dark"] .carousel-section {
  background-color: var(--bg-primary) !important;
}

/* Sidebar */
[data-theme="dark"] header {
  background: var(--sidebar-bg);
  border-color: var(--sidebar-border);
}

[data-theme="dark"] .navbar-brand h1,
[data-theme="dark"] .navbar-brand p {
  color: var(--sidebar-text);
}

[data-theme="dark"] .nav-link {
  color: var(--text-secondary);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  background: rgba(4, 188, 132, 0.15);
  color: var(--accent);
}

/* Cards */
[data-theme="dark"] .dashboard-card {
  background: var(--bg-card);
  border-color: var(--border-card);
  box-shadow: var(--card-shadow);
}

/* Nota: Los estilos de skill cards están al final del archivo (FINAL OVERRIDES) */

[data-theme="dark"] .dashboard-card.bg-white {
  background: var(--bg-card) !important;
}

/* Textos */
[data-theme="dark"] .text-primaryDark,
[data-theme="dark"] .text-darkTeal {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .text-secondary {
  color: var(--text-muted) !important;
}

/* Skill cards tema claro dentro de tema oscuro */
[data-theme="dark"] .skill-tag-modern.dark {
  background: rgba(4, 188, 132, 0.15);
  border-color: rgba(4, 188, 132, 0.3);
  color: var(--accent-light);
}

[data-theme="dark"] .skill-level.dark {
  background: rgba(4, 188, 132, 0.2);
  color: var(--accent);
}

/* Project cards - textos */
[data-theme="dark"] .project-title {
  color: var(--text-primary);
}

[data-theme="dark"] .project-subtitle,
[data-theme="dark"] .project-description {
  color: var(--text-secondary);
}

[data-theme="dark"] .project-stats {
  color: var(--text-muted);
}

[data-theme="dark"] .project-footer {
  border-color: var(--border-card);
}

/* Inputs y formularios */
[data-theme="dark"] .form-input-mobile {
  background: var(--bg-secondary);
  border-color: var(--border-light);
  color: var(--text-primary);
}

[data-theme="dark"] .form-input-mobile::placeholder {
  color: var(--text-muted);
}

[data-theme="dark"] .form-info-box {
  background: rgba(4, 188, 132, 0.1);
  border-color: var(--border-accent);
}

/* Status badges */
[data-theme="dark"] .status-badge {
  background: rgba(4, 188, 132, 0.15);
  color: var(--accent);
  border-color: rgba(4, 188, 132, 0.3);
}

/* Mobile navigation */
[data-theme="dark"] .mobile-nav {
  background: var(--sidebar-bg);
  border-color: var(--sidebar-border);
}

[data-theme="dark"] .mobile-nav-link {
  color: var(--text-secondary);
}

[data-theme="dark"] .mobile-nav-link.active {
  color: var(--accent);
}

/* Preloader tema oscuro */
[data-theme="dark"] .preloader {
  background: linear-gradient(135deg, #1a2830 0%, #243640 50%, #1a2830 100%);
}

/* Gradientes en cards - ajustar para tema oscuro */
[data-theme="dark"] .bg-gradient-to-br.from-accentLight.to-lightGray {
  background: linear-gradient(to bottom right, rgba(123, 211, 233, 0.2), var(--bg-card)) !important;
}

[data-theme="dark"] .bg-gradient-to-br.from-accentLight.to-lightGray .text-primaryDark {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .skill-card.bg-white,
[data-theme="dark"] .dashboard-card.bg-white {
  background: var(--bg-card) !important;
  border-color: var(--border-accent) !important;
}

/* Textos en cards de skills para tema oscuro */
[data-theme="dark"] .skill-card .text-darkTeal {
  color: var(--text-primary) !important;
}

/* Badges y pills en tema oscuro */
[data-theme="dark"] .bg-accent\/10,
[data-theme="dark"] .bg-secondary\/10 {
  background: rgba(4, 188, 132, 0.15) !important;
}

[data-theme="dark"] .border-accent\/20,
[data-theme="dark"] .border-secondary\/20 {
  border-color: rgba(4, 188, 132, 0.3) !important;
}

/* Notice de proyectos privados */
[data-theme="dark"] .bg-gradient-to-r.from-secondary\/10 {
  background: linear-gradient(to right, rgba(4, 188, 132, 0.1), var(--bg-card), rgba(4, 188, 132, 0.1)) !important;
  border-color: var(--border-accent) !important;
}

/* Labels de formulario */
[data-theme="dark"] label {
  color: var(--text-primary);
}

/* Iconos en tema oscuro */
[data-theme="dark"] .text-secondary {
  color: var(--accent-light) !important;
}

/* Botones de navegación móvil */
[data-theme="dark"] .carousel-nav-btn {
  background: var(--bg-card);
  border-color: var(--border-light);
  color: var(--text-primary);
}

[data-theme="dark"] .carousel-nav-btn:hover {
  background: var(--accent);
  color: white;
}

/* Indicadores */
[data-theme="dark"] .indicator {
  background: var(--border-light);
}

[data-theme="dark"] .indicator.active {
  background: var(--accent);
}

/* ========================================
   FINAL OVERRIDES - Skill Cards
   Estas reglas van al final para máxima prioridad
======================================== */

/* Ocultar el efecto glow en tema oscuro para skill cards */
body[data-theme="dark"] .skill-card::before,
html[data-theme="dark"] .skill-card::before,
[data-theme="dark"] .skill-card::before {
  display: none !important;
  opacity: 0 !important;
}

/* Skill cards en TEMA OSCURO - múltiples selectores para máxima especificidad */
body[data-theme="dark"] .dashboard-card.skill-card.backend-card,
body[data-theme="dark"] .dashboard-card.skill-card.frontend-card,
body[data-theme="dark"] .dashboard-card.skill-card.devops-card,
html[data-theme="dark"] .dashboard-card.skill-card.backend-card,
html[data-theme="dark"] .dashboard-card.skill-card.frontend-card,
html[data-theme="dark"] .dashboard-card.skill-card.devops-card,
[data-theme="dark"] .dashboard-card.skill-card.backend-card,
[data-theme="dark"] .dashboard-card.skill-card.frontend-card,
[data-theme="dark"] .dashboard-card.skill-card.devops-card,
[data-theme="dark"] .skill-card.backend-card,
[data-theme="dark"] .skill-card.frontend-card,
[data-theme="dark"] .skill-card.devops-card {
  background: #243640 !important;
  background-color: #243640 !important;
  background-image: none !important;
  border: 1px solid rgba(123, 211, 233, 0.1) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Skill cards en TEMA CLARO */
body:not([data-theme="dark"]) .dashboard-card.skill-card.backend-card,
body:not([data-theme="dark"]) .dashboard-card.skill-card.frontend-card,
body:not([data-theme="dark"]) .dashboard-card.skill-card.devops-card,
html:not([data-theme="dark"]) .dashboard-card.skill-card.backend-card,
html:not([data-theme="dark"]) .dashboard-card.skill-card.frontend-card,
html:not([data-theme="dark"]) .dashboard-card.skill-card.devops-card {
  background: linear-gradient(135deg, rgba(4, 188, 132, 0.08) 0%, #ffffff 100%) !important;
  border: 1px solid rgba(4, 188, 132, 0.12) !important;
  box-shadow: 0 2px 8px rgba(30, 77, 92, 0.06) !important;
}