/* Ajuste de separación en móvil para .dc-hero */
@media (max-width: 576px) {
  .dc-hero {
    min-height: 70vh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
/* Ajuste de logo en móvil */
@media (max-width: 576px) {
  .dc-logo-container  {
    margin-top: 12px !important;
    margin-bottom: 18px !important;
    padding-top: 0 !important;
  }
}
/* Halo animado para logo rectangular */
.dc-logo-rect-halo {
  position: relative;
  display: inline-block;
}
.dc-logo-rect-halo img {
  position: relative;
  z-index: 2;
}
.dc-logo-rect-halo::before {
  content: "";
  position: absolute;
   
  border-radius: 24px;
  background: radial-gradient(circle, rgba(10,60,255,0.18) 0%, rgba(79,195,247,0.13) 80%, transparent 100%);
  z-index: 1;
  animation: haloPulse 2.5s infinite alternate;
}

@keyframes haloPulse {
  0% { box-shadow: 0 0 32px 8px rgba(10,60,255,0.18); opacity: 1; }
  100% { box-shadow: 0 0 64px 24px rgba(79,195,247,0.13); opacity: 0.7; }
}
/* Animación aleatoria del logo a izquierda o derecha */
.dc-logo {
  transition: transform 0.4s cubic-bezier(.4,1.6,.4,1);
}
.logo-move-izq {
  transform: translateX(-22px) scale(1.06);
  box-shadow: 0 12px 48px 0 rgba(10,60,255,0.30), 0 0 0 12px rgba(79,195,247,0.13);
}
.logo-move-der {
  transform: translateX(22px) scale(1.06);
  box-shadow: 0 12px 48px 0 rgba(10,60,255,0.30), 0 0 0 12px rgba(79,195,247,0.13);
}
.dc-logo {
  transition: transform 0.4s cubic-bezier(.4,1.6,.4,1);
}
.dc-logo:hover {
  transition: transform 0.4s cubic-bezier(.4,1.6,.4,1);
}
.dc-logo:not(:hover) {
  transition: none;
}
.dc-logo:hover {
  transform: translateY(-18px) scale(1.06);
  box-shadow: 0 12px 48px 0 rgba(10,60,255,0.30), 0 0 0 12px rgba(79,195,247,0.13);
}
/* Botón primario claro personalizado */
.btn-primary-light {
  color: #c6c7c9 !important;
  background: #1565c0   !important;
  transition: background 0.25s, color 0.25s, border 0.25s;
}
.btn-primary-light:hover, .btn-primary-light:focus {
  /* Azul más claro para hover */
background: #0a2a66 !important;
  color: #fff !important;
  border-color: #1565c0 !important;
}


/* ABOUT */


/*===================================== fin  about me  */
/* ABOUT ME - Estilo similar a Mis Clientes */
.dc-about {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin-top: 80px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Efecto de fondo sutil */
.dc-about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 44, 101, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Títulos */
.dc-about .dc-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #052c65;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.dc-about .dc-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--dc-accent);
  border-radius: 2px;
}

.dc-about .dc-section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 2rem auto 3rem;
  font-weight: 400;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* Bloques de contenido - Estilo similar a Mis Clientes */
.dc-about-block {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.5rem;
  border-left: 4px solid #052c65;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Icono decorativo en cada bloque */
.dc-about-block::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  opacity: 0.1;
  z-index: 0;
}

/* Iconos específicos para cada tipo de bloque */
.dc-about-block:nth-child(1)::before { content: '✨'; }
.dc-about-block:nth-child(2)::before { content: '📜'; }
.dc-about-block:nth-child(3)::before { content: '🎨'; }
.dc-about-block:nth-child(4)::before { content: '🎶'; }
.dc-about-block:nth-child(5)::before { content: '💡'; }

.dc-about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-left-color: var(--dc-accent);
}

.dc-about-block h4 {
  color: #052c65;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  position: relative;
  padding-left: 35px;
}

/* Icono junto al título */
.dc-about-block h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
}

.dc-about-block p {
  color: #495057;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.dc-about-block ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.dc-about-block ul li {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  position: relative;
}

/* Estilo para enlaces dentro de los bloques */
.dc-about-block a {
  color: #052c65;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(5, 44, 101, 0.2);
  transition: all 0.3s ease;
}

.dc-about-block a:hover {
  color: var(--dc-accent);
  border-bottom-color: var(--dc-accent);
}

/* Sección de contacto */
.dc-about .text-center {
  position: relative;
  z-index: 1;
}

.dc-about .fw-semibold {
  color: #052c65;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Botón WhatsApp mejorado */
.dc-about .btn-success {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.dc-about .btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .dc-about {
    padding: 60px 0;
    margin-top: 70px;
  }
  
  .dc-about .dc-section-title {
    font-size: 2rem;
  }
  
  .dc-about .dc-section-title::after {
    width: 50px;
  }
  
  .dc-about .dc-section-subtitle {
    font-size: 1.1rem;
    margin: 1.5rem auto 2.5rem;
  }
  
  .dc-about-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .dc-about-block h4 {
    font-size: 1.3rem;
  }
  
  .dc-about-block:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 576px) {
  .dc-about {
    padding: 50px 0;
  }
  
  .dc-about .dc-section-title {
    font-size: 1.8rem;
  }
  
  .dc-about-block {
    padding: 1.5rem;
  }
  
  .dc-about-block h4 {
    padding-left: 0;
  }
  
  .dc-about-block h4::before {
    display: none;
  }
}
/* ===================================== mis clientes  */

/* ABOUT ME estilo similar a servicios */
.dc-misclientes {
  background: #f8f9fa;
  margin-top: 80px;
  padding: 80px 0;
  position: relative;
}

/* Títulos */
.dc-misclientes .dc-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #052c65;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.dc-misclientes .dc-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--dc-accent);
  border-radius: 2px;
}

.dc-misclientes .dc-section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 2rem auto 3rem;
}

/* Bloque introductorio CON SOMBRA */
.dc-misclientes-block {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
  border-left: 4px #052c65 solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-misclientes-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.dc-misclientes-block h4 {
  color: #052c65;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.dc-misclientes-block p {
  color: #495057;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

/* TARJETAS CON SOMBRAS ELEGANTES */
.dc-misclientes .card {
  background: white;
  border: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
  /* Sombra base */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Efecto sutil de borde superior */
.dc-misclientes .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #052c65;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.dc-misclientes .card:hover {
  /* Sombra más pronunciada al hover */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.dc-misclientes .card:hover::before {
  transform: scaleX(1);
}

.dc-misclientes .card a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 2rem;
  height: 100%;
}

.dc-misclientes .card img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  filter: grayscale(20%);
  opacity: 0.9;
}

.dc-misclientes .card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.dc-misclientes .card h5 {
  color: #052c65;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.dc-misclientes .card:hover h5 {
  color: var(--dc-accent);
}

.dc-misclientes .card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Grid layout mejorado */
.dc-misclientes .row.justify-content-center {
  row-gap: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .dc-misclientes {
    padding: 60px 0;
    margin-top: 70px;
  }
  
  .dc-misclientes .dc-section-title {
    font-size: 2rem;
  }
  
  .dc-misclientes .dc-section-title::after {
    width: 50px;
  }
  
  .dc-misclientes-block {
    padding: 2rem;
    margin-bottom: 3rem;
  }
  
  .dc-misclientes .card {
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .dc-misclientes .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  
  .dc-misclientes .card a {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .dc-misclientes {
    padding: 50px 0;
  }
  
  .dc-misclientes .dc-section-title {
    font-size: 1.8rem;
  }
  
  .dc-misclientes-block {
    padding: 1.5rem;
  }
  
  .dc-misclientes .card {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  }
}

/* ==================================fin mis clientes  */



/* === PALETA DE COLORES INSPIRADA EN EL LOGO === */
:root {
  --dc-accent: #ffff00; /* Amarillo del engranaje */
  --dc-celeste: #4fc3f7; /* Celeste de los íconos */
}

/* === RESPLANDOR AZUL AL LOGO EN EL HERO === */
.dc-logo {
  box-shadow: 0 0 40px 0 rgba(10,60,255,0.25), 0 0 0 8px rgba(79,195,247,0.10);
  border-radius: 50%;
}
/* === NAV === */
.dc-navbar {
  background: linear-gradient(180deg, #000b14 0%, #041633 60%, #021b36 100%);
  box-shadow: 0 6px 25px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

/* Efecto de borde animado */
.dc-navbar::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--dc-accent) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* Para transparencia en el movil del colapse*/ 
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(4, 22, 51, 0.90);
        z-index: 1050;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(6px);
        transition: all 0.3s ease;
        padding: 0 10px;
        margin: 0;
    }
}
.dc-navbar.scrolled {
  background: rgba(4, 22, 51, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--dc-accent);
}

.dc-navbar.scrolled::after {
  opacity: 1;
}

/* Brand mejorado */
.navbar-brand {
  font-weight: 400;
  font-size: 1.2rem;
  color: #e3e5eb !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.2rem 0;

  border-left: 2px solid var(--dc-accent);  
  padding-left: 1.3rem;
}

.navbar-brand:hover {
  border-left: 0;  
  color: var(--dc-accent) !important;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dc-accent);
  transition: width 0.3s ease;
}

.navbar-brand:hover::after {
  width: 100%;
}

/* Enlaces del navbar */
.navbar-nav .nav-link {
  color: #bec0c5 !important;
  font-weight: 400;
  padding: 0.6rem 1rem;
  margin: 0 0.2rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

/* Efecto similar al footer (borde izquierdo) */
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 3px;
  background: var(--dc-accent);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--dc-accent) !important;
  background: rgba(79, 195, 247, 0.08);
  padding-left: 1.5rem;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus::before,
.navbar-nav .nav-link.active::before {
  height: 60%;
}

/* Indicador activo (opcional) */
.navbar-nav .nav-item {
  position: relative;
}

/* Toggler button mejorado */
.navbar-toggler {
  border: 1px solid rgba(79, 195, 247, 0.3);
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.25);
  border-color: var(--dc-accent);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2879, 195, 247, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    margin: 0.3rem 0;
    padding: 0.8rem 1rem;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    padding-left: 1.5rem;
    background: rgba(79, 195, 247, 0.1);
  }
}

/* Efecto scroll (JavaScript necesario) */
.dc-navbar.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: rgba(4, 22, 51, 0.98);
}
/* FIN NAV */
/* === BOTÓN CONTACTAR CON COLOR DE ACENTO === */
.btn-contactar, .btn-outline-light.btn-lg {
  border-color: #041633 !important;
  color: #041633!important;
  background: transparent;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  box-shadow: 0 .5px 12px #041633;
}
.btn-contactar:hover, .btn-outline-light.btn-lg:hover {
  background: var(--dc-celeste) !important;
  border-color: var(--dc-celeste) !important;
  color: #041633!important;
  box-shadow: 0 6px 24px rgba(251, 255, 0, 0.18);
}
/* ========== HOME COMPLETO - CSS TOTAL ========== */

/* 1. VARIABLES */
:root {
  --dc-accent: #ffc107; /* Color amarillo/dorado */
  --dc-primary: #052c65; /* Azul oscuro principal */
  --dc-secondary: #084298; /* Azul intermedio */
  --dc-light-blue: #4fc3f7; /* Azul claro */
}

/* 2. HERO CONTAINER */
.dc-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* 3. FONDO CON PATRONES */
.dc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(5, 44, 101, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(79, 195, 247, 0.03) 0%, transparent 40%);
  background-size: 100px 100px, 150px 150px;
  z-index: 1;
}

/* 4. CIRCUITOS ANIMADOS */
.dc-circuits {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
}

.dc-circuits::before,
.dc-circuits::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(5, 44, 101, 0.1);
  animation: circuitRotate 20s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dc-circuits::after {
  width: 350px;
  height: 350px;
  border-style: dashed;
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes circuitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 5. CONTENEDOR PRINCIPAL */
.dc-hero .container {
  position: relative;
  z-index: 3;
}

/* 6. LOGO RECTANGULAR ESPECÍFICO */
.dc-logo-container {
  position: relative;
  margin-bottom: 3rem;
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Imagen del logo - SIN BORDER RADIUS */
.dc-logo {
  width: auto;
  height: 120px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
  display: block;
  border-radius: 0 !important; /* ← QUITAR BORDER RADIUS */
}

 
 

.dc-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.2));
}

.animated-logo {
  animation: logoFadeIn 1.2s ease-out forwards, floatLogo 6s ease-in-out infinite 1.2s;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* 7. TÍTULO PRINCIPAL */
.dc-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #052c65;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  letter-spacing: -0.5px;
}

.dc-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--dc-accent);
  border-radius: 2px;
}

/* 8. SUBTÍTULO */
.dc-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.2rem);
  color: #495057;
  max-width: 700px;
  margin: 2.5rem auto;
  line-height: 1.7;
  position: relative;
  z-index: 3;
  font-weight: 400;
}

/* 9. ESPECIALIDADES */
.dc-specialties {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem auto;
  max-width: 700px;
  position: relative;
  z-index: 3;
}

.dc-specialty {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: #052c65;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(5, 44, 101, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dc-specialty:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #f0f8ff;
  border-color: rgba(79, 195, 247, 0.2);
}

.dc-specialty i {
  color: var(--dc-accent);
  font-size: 1.2rem;
}

/* 10. NOMBRE Y DESCRIPCIÓN */
.dc-hero .h3 {
  font-size: 1.8rem;
  color: #084298;
  font-weight: 600;
  margin-bottom: 1rem;
}

.dc-hero .text-muted {
  color: #6c757d !important;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* 11. BOTÓN PRINCIPAL */
.dc-hero .btn-primary {
  background: #052c65;
  border-color: #052c65;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.dc-hero .btn-primary::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 ease;
}

.dc-hero .btn-primary:hover {
  background: #084298;
  border-color: #084298;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(8, 66, 152, 0.25);
}

.dc-hero .btn-primary:hover::before {
  left: 100%;
}

.dc-hero .btn-primary i {
  margin-right: 0.5rem;
}

/* 12. INDICADOR DE SCROLL */
.dc-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #052c65;
  opacity: 0.6;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========== RESPONSIVE COMPLETO ========== */

/* Desktop grande */
@media (min-width: 1200px) {
  .dc-hero {
    padding: 100px 0;
  }
  
  .dc-logo-rect-halo {
    max-width: 700px;
     
  }
  
  .dc-logo {
    height: 140px;
  }
  
  .dc-title {
    font-size: 4.5rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .dc-hero {
    padding: 60px 0;
  }
  
  .dc-logo-rect-halo {
    max-width: 550px;
    min-width: 350px;
    padding: 1.2rem 1.5rem;
  }
  
  .dc-logo {
    height: 100px;
  }
  
  .dc-title {
    font-size: 3rem;
  }
  
  .dc-specialties {
    gap: 1rem;
  }
}

/* Mobile Grande */
@media (max-width: 768px) {
  .dc-hero {
    padding: 40px 20px;
  }
  
  .dc-logo-rect-halo {
    max-width: 90%;
    min-width: 300px;
    padding: 1rem 1.2rem;
    border-radius: 15px;
  }
  
  .dc-logo {
    height: 90px;
  }
  
  .dc-title {
    font-size: 2.2rem;
  }
  
  .dc-title::after {
    width: 80px;
    height: 3px;
    bottom: -10px;
  }
  
  .dc-subtitle {
    font-size: 1.2rem;
    margin: 1.5rem auto;
  }
  
  .dc-specialties {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .dc-specialty {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .dc-hero .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

/* Mobile Pequeño */
@media (max-width: 576px) {
  .dc-hero {
    padding: 30px 15px;
  }
  
  .dc-title {
    font-size: 2rem;
  }
  
  .dc-subtitle {
    font-size: 1.1rem;
  }
  
  .dc-logo-rect-halo {
    max-width: 95%;
    min-width: unset;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }
  
  .dc-logo {
    height: 70px;
    width: 100%;
    object-fit: contain;
    top: 60px;
  }
  
  .dc-hero .h3 {
    font-size: 1.5rem;
    margin-top: 65px;
  }
  
  .dc-scroll-indicator {
    bottom: 20px;
  }
  
  .dc-scroll-indicator i {
    font-size: 1.5rem;
  }
}

/* Mobile Muy Pequeño */
@media (max-width: 375px) {
  .dc-hero {
    padding: 20px 10px;
  }
  
  .dc-logo {
    height: 60px;
  }
  
  .dc-logo-rect-halo {
    padding: 0.6rem 0.8rem;
  }
  
  .dc-title {
    font-size: 1.8rem;
  }
  
  .dc-subtitle {
    font-size: 1rem;
  }
  
  .dc-specialty {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}
/* ===========================
   PROYECTOS
=========================== */
.dc-projects {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  margin-top: 80px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Efecto de fondo sutil */
.dc-projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(5, 44, 101, 0.1) 50%, 
    transparent 100%);
}

/* Títulos */
.dc-projects .dc-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #052c65;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.dc-projects .dc-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--dc-accent);
  border-radius: 2px;
}

.dc-projects .dc-section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 2rem auto 3rem;
}

/* TARJETAS DE PROYECTOS */
.dc-project-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Efecto de borde superior (consistente con otros sections) */
.dc-project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #052c65;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.dc-project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(79, 195, 247, 0.2);
}

.dc-project-card:hover::before {
  transform: scaleX(1);
  background: #4fc3f7; /* Azul claro en hover */
}

/* Imagen del proyecto */
.dc-project-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  transition: all 0.5s ease;
}

.dc-project-card:hover .dc-project-image {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* Contenido de la tarjeta */
.dc-project-body {
  padding: 2rem;
}

.dc-project-body h3 {
  font-weight: 700;
  color: #052c65;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.dc-project-card:hover .dc-project-body h3 {
  color: #084298; /* Azul intermedio en hover */
}

.dc-project-body p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Etiquetas de tecnologías */
.dc-project-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dc-project-tags li {
  background: #e7f1ff;
  color: #084298;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dc-project-card:hover .dc-project-tags li {
  background: rgba(79, 195, 247, 0.15);
  color: #052c65;
  transform: translateY(-2px);
}

/* Botón */
.dc-project-body .btn-outline-primary {
  border: 2px solid #084298;
  color: #084298;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dc-project-body .btn-outline-primary:hover {
  background: #084298;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 66, 152, 0.2);
}

/* Efecto de superposición para la imagen (opcional) */
.dc-project-image-wrapper {
  position: relative;
  overflow: hidden;
}

.dc-project-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(5, 44, 101, 0.1) 0%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dc-project-card:hover .dc-project-image-wrapper::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .dc-projects {
    padding: 60px 0;
    margin-top: 70px;
  }
  
  .dc-projects .dc-section-title {
    font-size: 2.2rem;
  }
  
  .dc-project-card:hover {
    transform: translateY(-7px);
  }
  
  .dc-project-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .dc-projects {
    padding: 50px 0;
  }
  
  .dc-projects .dc-section-title {
    font-size: 2rem;
  }
  
  .dc-projects .dc-section-title::after {
    width: 50px;
  }
  
  .dc-project-card {
    margin-bottom: 2rem;
  }
  
  .dc-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 576px) {
  .dc-projects {
    padding: 40px 0;
  }
  
  .dc-projects .dc-section-title {
    font-size: 1.8rem;
  }
  
  .dc-project-body {
    padding: 1.5rem;
  }
  
  .dc-project-body h3 {
    font-size: 1.4rem;
  }
  
  .dc-project-image {
    height: 180px;
  }
}
/* ===========================
   SERVICIOS / RUBROS
=========================== */
.dc-services {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin-top: 80px;
  padding: 80px 0;
  position: relative;
}

/* Efecto de fondo sutil */
.dc-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(5, 44, 101, 0.1) 50%, 
    transparent 100%);
}

/* Títulos */
.dc-services .dc-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #052c65;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.dc-services .dc-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--dc-accent);
  border-radius: 2px;
}

.dc-services .dc-section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 2rem auto 3rem;
}

/* TARJETAS DE SERVICIOS - HOVER AZUL CLARO */
.dc-service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Efecto de borde superior (igual que en Mis Clientes) */
.dc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #052c65; /* Azul oscuro inicial */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* HOVER: Cambio a azul claro */
.dc-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%); /* Fondo azul muy claro */
  border-color: rgba(79, 195, 247, 0.3); /* Borde azul claro */
}

/* Al hover, mostrar borde superior */
.dc-service-card:hover::before {
  transform: scaleX(1);
  background: #4fc3f7; /* Azul claro - puedes ajustar este color */
}

/* Iconos - Cambio de color en hover */
.dc-service-card i {
  font-size: 2.8rem;
  color: #052c65; /* Azul oscuro inicial */
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.dc-service-card:hover i {
  color: #084298; /* Azul intermedio en hover */
  transform: scale(1.1);
}

/* Títulos - Cambio de color en hover */
.dc-service-card h3 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #052c65; /* Azul oscuro inicial */
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.dc-service-card:hover h3 {
  color: #084298; /* Azul intermedio en hover */
}

/* Lista de servicios */
.dc-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dc-service-card ul li {
  padding: 0.5rem 0;
  color: #495057;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
  transition: color 0.3s ease;
}

/* Punto decorativo */
.dc-service-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #084298;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.dc-service-card:hover ul li {
  color: #2c3e50; /* Texto un poco más oscuro en hover */
}

.dc-service-card:hover ul li::before {
  color: #4fc3f7; /* Puntos azul claro en hover */
}

/* Responsive */
@media (max-width: 992px) {
  .dc-services {
    padding: 60px 0;
    margin-top: 70px;
  }
  
  .dc-services .dc-section-title {
    font-size: 2.2rem;
  }
  
  .dc-service-card {
    padding: 2rem 1.5rem;
  }
  
  .dc-service-card:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 768px) {
  .dc-services {
    padding: 50px 0;
  }
  
  .dc-services .dc-section-title {
    font-size: 2rem;
  }
  
  .dc-services .dc-section-title::after {
    width: 50px;
  }
  
  .dc-service-card {
    margin-bottom: 1.5rem;
  }
  
  .dc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 576px) {
  .dc-services {
    padding: 40px 0;
  }
  
  .dc-services .dc-section-title {
    font-size: 1.8rem;
  }
  
  .dc-service-card {
    padding: 1.8rem 1.2rem;
  }
  
  .dc-service-card i {
    font-size: 2.5rem;
  }
  
  .dc-service-card h3 {
    font-size: 1.3rem;
  }
}
/* ===========================
   CONTACTO – MEJORADO
=========================== */
.dc-contact {
  background: linear-gradient(135deg, #f6f7f8, #e5e7eb);
  overflow: hidden;
  margin-top:65px;
  
}

/* Glow sutil */
.dc-contact-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

/* CONTACT */
/* ========== CONTACTO CON ESTILO SERVICES ========== */
.dc-contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
  margin-top: 80px;
  padding: 80px 0;
  position: relative;
}

/* Títulos */
.dc-contact .dc-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #052c65;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.dc-contact .dc-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--dc-accent);
  border-radius: 2px;
}

.dc-contact .dc-section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 2rem auto 3rem;
}

/* ========== FORMULARIO CON ESTILO DE SERVICIOS ========== */
.dc-contact-form {
  background: white;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Borde superior azul oscuro (igual que services) */
.dc-contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #052c65; /* Azul oscuro inicial */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* HOVER: Efecto completo (igual que services) */
.dc-contact-form:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%); /* Fondo azul muy claro */
  border-color: rgba(79, 195, 247, 0.3); /* Borde azul claro */
}

.dc-contact-form:hover::before {
  transform: scaleX(1);
  background: #4fc3f7; /* Azul claro en hover */
}

/* ========== CAMPOS DEL FORMULARIO ========== */
.dc-contact-form .form-control {
  background: white;
  border: 2px solid rgba(5, 44, 101, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: #052c65;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.dc-contact-form .form-control::placeholder {
  color: rgba(5, 44, 101, 0.5);
  font-weight: 400;
}

.dc-contact-form .form-control:focus {
  border-color: #084298; /* Azul intermedio */
  box-shadow: 0 0 0 3px rgba(8, 66, 152, 0.15);
  background: white;
  outline: none;
  transform: translateY(-2px);
}

/* Textarea */
.dc-contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

/* ========== BOTÓN CON ESTILO SERVICES ========== */
.dc-contact-form .btn-primary-light {
  background: #052c65; /* Azul oscuro inicial */
  border: 2px solid #052c65;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 3rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(5, 44, 101, 0.15);
}

/* Efecto shine en hover */
.dc-contact-form .btn-primary-light::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 ease;
}

/* HOVER del botón: azul oscuro → azul claro */
.dc-contact-form .btn-primary-light:hover {
  background: #084298; /* Azul intermedio */
  border-color: #084298;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(8, 66, 152, 0.25);
}

.dc-contact-form .btn-primary-light:hover::before {
  left: 100%;
}

.dc-contact-form .btn-primary-light:active {
  transform: translateY(-1px);
  background: #06357a; /* Azul entre oscuro e intermedio */
}

/* ========== INFORMACIÓN DE CONTACTO (ESTILO SERVICES) ========== */
.dc-contact-info {
  background: white;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-top: 3rem;
}

.dc-contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.dc-contact-info h5 {
  color: #052c65;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.dc-contact-info:hover h5 {
  color: #084298; /* Azul intermedio en hover */
}

.dc-contact-info p {
  color: #495057;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.dc-contact-info a {
  color: #084298;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(8, 66, 152, 0.2);
}

.dc-contact-info a:hover {
  color: #052c65;
  border-bottom-color: #052c65;
}

/* Botones de contacto */
.dc-contact-info .btn-outline-primary {
  border: 2px solid #084298;
  color: #084298;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dc-contact-info .btn-outline-primary:hover {
  background: #084298;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 66, 152, 0.2);
}

/* Iconos */
.dc-contact-info i {
  color: #084298;
  transition: all 0.3s ease;
}

.dc-contact-info:hover i {
  color: #4fc3f7; /* Azul claro en hover */
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .dc-contact {
    padding: 60px 0;
    margin-top: 70px;
  }
  
  .dc-contact .dc-section-title {
    font-size: 2.2rem;
  }
  
  .dc-contact-form {
    padding: 2rem;
  }
  
  .dc-contact-form:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 768px) {
  .dc-contact {
    padding: 50px 0;
  }
  
  .dc-contact .dc-section-title {
    font-size: 2rem;
  }
  
  .dc-contact .dc-section-title::after {
    width: 50px;
  }
  
  .dc-contact-form {
    padding: 1.8rem;
  }
  
  .dc-contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  }
  
  .dc-contact-info {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .dc-contact {
    padding: 40px 0;
  }
  
  .dc-contact .dc-section-title {
    font-size: 1.8rem;
  }
  
  .dc-contact-form {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .dc-contact-form .form-control {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .dc-contact-form .btn-primary-light {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
  
  .dc-contact-info {
    padding: 1.5rem;
  }
}

/* FIN CONTACTO*/
/* === DETALLES EN EL FOOTER === */
.dc-footer {
  background: linear-gradient(180deg, #063157 0%, #03193a 60%, #021429 100%);
  color: #bec0c5;
  padding: 60px 0 30px;
  margin-top: 0;
  border-top: 2px solid var(--dc-accent);
  position: relative;
  overflow: hidden;
}

/* Efecto sutil de brillo en el borde superior */
.dc-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(79, 195, 247, 0.3) 50%, 
    transparent 100%);
}

/* Títulos de secciones */
.dc-footer h5 {
  color: #e3e5eb;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.dc-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--dc-accent);
  border-radius: 2px;
}

/* Iconos en títulos */
.dc-footer h5 i {
  color: var(--dc-accent);
  margin-right: 8px;
  font-size: 1rem;
}

/* ===== ESTILO DE CITA BÍBLICA (BASE) ===== */
.dc-footer .fst-italic {
  color: #4fc3f7;
  font-style: italic;
  display: block;
  margin: 5px 0;
  padding: 8px 12px;
  background: rgba(79, 195, 247, 0.08);
  border-left: 3px solid var(--dc-accent);
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
}

/* ===== ENLACES CON ESTILO DE CITA EN HOVER ===== */
.dc-footer .footer-link {
  color: #a0a4b0;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 0 4px 4px 0;
  border-left: 2px solid transparent;
  background: transparent;
}

.dc-footer .footer-link:hover {
  color: var(--dc-accent);
  background: rgba(79, 195, 247, 0.08);
  border-left: 3px solid var(--dc-accent);
  padding-left: 15px;
  transform: translateX(3px);
}

/* ===== ELEMENTOS "SOBRE MÍ" CON ESTILO DE CITA EN HOVER ===== */
.dc-footer .dc-footer-about p {
  padding: 8px 12px;
  margin: 8px 0;
  border-radius: 0 4px 4px 0;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.dc-footer .dc-footer-about p:hover {
  background: rgba(79, 195, 247, 0.08);
  border-left: 3px solid var(--dc-accent);
  padding-left: 15px;
  transform: translateX(3px);
}

/* Texto de filosofía destacado al hover */
.dc-footer .dc-footer-about p:hover strong {
  color: var(--dc-accent);
}

/* ===== ÍCONOS SOCIALES CON ESTILO COHERENTE ===== */
.dc-footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.dc-footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a4b0;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Efecto de borde izquierdo al hover (como la cita) */
.dc-footer-social a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--dc-accent);
  transition: width 0.3s ease;
}

.dc-footer-social a:hover::before {
  width: 3px;
}

.dc-footer-social a:hover {
  background: rgba(79, 195, 247, 0.08);
  color: var(--dc-accent);
  transform: translateY(-3px);
}

/* Asegurar que el icono esté por encima del pseudo-elemento */
.dc-footer-social a i {
  position: relative;
  z-index: 1;
}

/* ===== DESCRIPCIÓN REDES SOCIALES ===== */
.dc-footer-desc {
  color: #a0a4b0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 0 4px 4px 0;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.dc-footer-desc:hover {
  background: rgba(79, 195, 247, 0.08);
  border-left: 3px solid var(--dc-accent);
  padding-left: 15px;
  transform: translateX(3px);
}

.dc-footer-desc .small {
  color: #8a8e9a;
  font-size: 0.85rem;
}

/* ===== COPYRIGHT ===== */
.dc-footer-copy {
  font-size: 0.85rem;
  color: #8a8e9a;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 30px;
  padding: 12px;
  border-radius: 0 4px 4px 0;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.dc-footer-copy:hover {
  background: rgba(79, 195, 247, 0.08);
  border-left: 3px solid var(--dc-accent);
  padding-left: 15px;
  transform: translateX(3px);
}
/* ========== RESPONSIVE: MÓVILES ========== */
@media (max-width: 768px) {
  
  /* ELIMINAR HOVER PROBLEMÁTICO EN MÓVIL */
  .dc-footer .footer-link:hover,
  .dc-footer .dc-footer-about p:hover,
  .dc-footer-desc:hover,
  .dc-footer-copy:hover,
  .dc-footer-social a:hover {
    transform: none !important;
    padding-left: inherit !important;
  }
  
  /* REEMPLAZAR CON ESTADOS :active (para táctil) */
  .dc-footer .footer-link:active,
  .dc-footer .footer-link:focus {
    background: rgba(79, 195, 247, 0.15) !important;
    border-left: 3px solid var(--dc-accent) !important;
    color: var(--dc-accent) !important;
    padding-left: 20px !important;
    outline: none;
  }
  
  .dc-footer .dc-footer-about p:active,
  .dc-footer .dc-footer-about p:focus {
    background: rgba(79, 195, 247, 0.1) !important;
    border-left: 3px solid var(--dc-accent) !important;
    padding-left: 20px !important;
    outline: none;
  }
  
  .dc-footer-desc:active,
  .dc-footer-desc:focus {
    background: rgba(79, 195, 247, 0.1) !important;
    border-left: 3px solid var(--dc-accent) !important;
    padding-left: 20px !important;
    outline: none;
  }
  
  .dc-footer-copy:active,
  .dc-footer-copy:focus {
    background: rgba(79, 195, 247, 0.1) !important;
    border-left: 3px solid var(--dc-accent) !important;
    padding-left: 20px !important;
    outline: none;
  }
  
  /* ÍCONOS SOCIALES - MEJOR FEEDBACK TÁCTIL */
  .dc-footer-social a:active,
  .dc-footer-social a:focus {
    background: rgba(79, 195, 247, 0.2) !important;
    transform: scale(0.92) !important;
    color: var(--dc-accent) !important;
    outline: 2px solid rgba(79, 195, 247, 0.3);
    outline-offset: 2px;
  }
  
  /* MANTENER HOVER SOLO PARA DISPOSITIVOS CON RATÓN */
  @media (hover: hover) and (pointer: fine) {
    .dc-footer .footer-link:hover,
    .dc-footer .dc-footer-about p:hover,
    .dc-footer-desc:hover,
    .dc-footer-copy:hover {
      transform: translateX(3px);
      padding-left: 20px;
    }
    
    .dc-footer-social a:hover {
      transform: translateY(-3px);
      background: rgba(79, 195, 247, 0.15);
    }
  }
}

/* ========== MEJORAR ACCESIBILIDAD ========== */
/* Estados focus para teclado */
.dc-footer .footer-link:focus-visible,
.dc-footer .dc-social-link:focus-visible {
  outline: 2px solid var(--dc-accent);
  outline-offset: 3px;
  background: rgba(79, 195, 247, 0.15);
}

/* Clase para dispositivos táctiles (opcional) */
.dc-touch-device .dc-footer .footer-link:hover,
.dc-touch-device .dc-footer .dc-footer-about p:hover,
.dc-touch-device .dc-footer-desc:hover,
.dc-touch-device .dc-footer-copy:hover {
  background: transparent;
  border-left: 2px solid transparent;
  transform: none;
  padding-left: 12px;
}

/* ===== ESTILOS PARA SECCIÓN DE EXPERIENCIAS ===== */

/* Títulos y subtítulos */
.dc-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dc-primary);
  margin-bottom: 1rem;
}

.dc-subsection-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dc-primary);
  margin-bottom: 2rem;
  position: relative;
}

.dc-subsection-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--dc-accent), var(--dc-secondary));
  border-radius: 2px;
}

/* Estilos para testimonios */
.dc-testimonio-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(79, 195, 247, 0.1);
  position: relative;
  overflow: hidden;
}

.dc-testimonio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.1), transparent);
  transition: left 0.6s;
}

.dc-testimonio-card:hover::before {
  left: 100%;
}

.dc-testimonio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--dc-accent);
}

.dc-testimonio-image {
  margin-bottom: 20px;
  position: relative;
}

.dc-testimonio-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 4px solid var(--dc-accent);
  transition: all 0.3s ease;
}

.dc-testimonio-card:hover .dc-testimonio-image img {
  transform: scale(1.1);
  border-color: var(--dc-secondary);
}

.dc-testimonio-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.dc-testimonio-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 3rem;
  color: var(--dc-accent);
  opacity: 0.3;
  font-family: serif;
}

.dc-testimonio-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dc-primary);
  margin-bottom: 5px;
}

.dc-testimonio-company {
  font-size: 0.9rem;
  color: var(--dc-accent);
  font-weight: 500;
}

/* Estilos para filtros de galería */
.dc-filter-buttons {
  margin-bottom: 30px;
}

.dc-filter-btn {
  background: linear-gradient(rgb(6, 49, 87) 0%, rgb(3, 25, 58) 60%, rgb(2, 20, 41) 100%);
  border: 2px solid #1a3a5c;
  color: #ffffff !important;
  padding: 12px 25px;
  margin: 0 8px 10px 8px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dc-filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(8, 61, 109) 0%, rgb(5, 35, 70) 60%, rgb(3, 30, 53) 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.dc-filter-btn * {
  position: relative;
  z-index: 2;
}

.dc-filter-btn:hover,
.dc-filter-btn.active {
  color: #ffffff;
  border-color: #4a90e2;
  transform: translateY(-2px);
  background: linear-gradient(rgb(6, 49, 87) 0%, rgb(3, 25, 58) 60%, rgb(2, 20, 41) 100%);
  box-shadow: 0 8px 25px rgba(6, 49, 87, 0.4);
}

/* Estado específico para botón activo */
.dc-filter-btn.active {
  background: linear-gradient(rgb(6, 49, 87) 0%, rgb(3, 25, 58) 60%, rgb(2, 20, 41) 100%) !important;
  border-color: #2c5282 !important;
  box-shadow: 0 10px 30px rgba(6, 49, 87, 0.5) !important;
  color: #ffffff !important;
}

/* Regla específica para el botón "Todos" */
.dc-filter-btn[data-filter="all"] {
  background: linear-gradient(rgb(6, 49, 87) 0%, rgb(3, 25, 58) 60%, rgb(2, 20, 41) 100%) !important;
  color: #ffffff !important;
}

.dc-filter-btn[data-filter="all"].active {
  background: linear-gradient(rgb(6, 49, 87) 0%, rgb(3, 25, 58) 60%, rgb(2, 20, 41) 100%) !important;
  border-color: #2c5282 !important;
  box-shadow: 0 10px 30px rgba(6, 49, 87, 0.5) !important;
  color: #ffffff !important;
}

.dc-filter-btn:hover::before,
.dc-filter-btn.active::before {
  left: 0;
}

/* Estilos para grid de galería */
.dc-gallery-grid {
  position: relative;
}

.dc-gallery-item {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.dc-gallery-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.dc-gallery-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  cursor: pointer;
  /* Mejorar interacción táctil */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.dc-gallery-card:hover,
.dc-gallery-card:active {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Específico para dispositivos táctiles */
@media (pointer: coarse) {
  .dc-gallery-card:active {
    transform: translateY(-4px) scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .dc-gallery-btn {
    /* Aumentar área táctil en móviles */
    min-width: 64px;
    min-height: 64px;
  }
}

.dc-gallery-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.dc-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dc-gallery-card:hover .dc-gallery-image img {
  transform: scale(1.1);
}

.dc-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 60, 255, 0.9), rgba(79, 195, 247, 0.9));
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-gallery-card:hover .dc-gallery-overlay {
  opacity: 1;
}

.dc-gallery-content {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.dc-gallery-card:hover .dc-gallery-content {
  transform: translateY(0);
}

.dc-gallery-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.dc-gallery-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.dc-gallery-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  /* Mejorar área táctil en móviles */
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.dc-gallery-btn:hover,
.dc-gallery-btn:active,
.dc-gallery-btn:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
  color: #ffffff;
  outline: none;
}

/* Específico para dispositivos táctiles */
@media (pointer: coarse) {
  .dc-gallery-btn {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  
  .dc-gallery-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.4);
  }
}

.dc-gallery-btn i {
  font-size: 1.2rem;
}

/* Botón "Ver más proyectos" */
.dc-load-more-btn {
  background: linear-gradient(135deg, var(--dc-primary), var(--dc-secondary));
  border: none;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dc-load-more-btn::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.6s;
}

.dc-load-more-btn:hover::before {
  left: 100%;
}

.dc-load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(10, 60, 255, 0.4);
  color: #ffffff;
}

.dc-load-more-btn i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.dc-load-more-btn:hover i {
  transform: rotate(90deg);
}

/* Estilos para el modal */
.dc-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
}

.dc-modal-header {
  background: linear-gradient(135deg, var(--dc-primary), var(--dc-secondary));
  color: #ffffff;
  border: none;
  padding: 20px 30px;
}

.dc-modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.dc-modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.dc-modal-header .btn-close:hover {
  opacity: 1;
}

.dc-modal-body {
  padding: 30px;
  background: #f8f9fa;
}

.dc-modal-body img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dc-modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dc-primary);
  margin-bottom: 15px;
}

.dc-modal-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.dc-modal-actions {
  display: flex;
  gap: 15px;
}

.dc-modal-btn {
  background: linear-gradient(135deg, var(--dc-accent), var(--dc-secondary));
  border: none;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dc-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
  color: #ffffff;
}

.dc-modal-btn-secondary {
  background: transparent;
  border: 2px solid var(--dc-primary);
  color: var(--dc-primary);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dc-modal-btn-secondary:hover {
  background: var(--dc-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Animaciones de entrada */
.dc-testimonio-card,
.dc-gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.dc-testimonio-card.animate-in,
.dc-gallery-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animación escalonada para testimonios */
.dc-testimonio-card:nth-child(1) { transition-delay: 0.1s; }
.dc-testimonio-card:nth-child(2) { transition-delay: 0.2s; }
.dc-testimonio-card:nth-child(3) { transition-delay: 0.3s; }
.dc-testimonio-card:nth-child(4) { transition-delay: 0.4s; }
.dc-testimonio-card:nth-child(5) { transition-delay: 0.5s; }
.dc-testimonio-card:nth-child(6) { transition-delay: 0.6s; }

/* Animación escalonada para galería */
.dc-gallery-item:nth-child(1) { transition-delay: 0.1s; }
.dc-gallery-item:nth-child(2) { transition-delay: 0.2s; }
.dc-gallery-item:nth-child(3) { transition-delay: 0.3s; }
.dc-gallery-item:nth-child(4) { transition-delay: 0.4s; }
.dc-gallery-item:nth-child(5) { transition-delay: 0.5s; }
.dc-gallery-item:nth-child(6) { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
  .dc-section-title {
    font-size: 2rem;
  }
  
  .dc-subsection-title {
    font-size: 1.5rem;
  }
  
  .dc-testimonio-card {
    padding: 25px 20px;
  }
  
  .dc-filter-btn {
    padding: 10px 20px;
    margin: 0 5px 8px 5px;
    font-size: 0.9rem;
  }
  
  .dc-gallery-image {
    height: 200px;
  }
  
  .modal-dialog {
    margin: 10px;
  }
  
  .dc-modal-body {
    padding: 20px;
  }
  
  .dc-modal-actions {
    flex-direction: column;
  }
  
  .dc-modal-btn,
  .dc-modal-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .dc-testimonio-text {
    font-size: 1rem;
  }
  
  .dc-testimonio-name {
    font-size: 1.1rem;
  }
  
  .dc-gallery-content h5 {
    font-size: 1.1rem;
  }
  
  .dc-gallery-content p {
    font-size: 0.9rem;
  }
  
  .dc-load-more-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Estilos adicionales para el sistema dinámico */

/* Badge de categoría en modal */
.dc-category-badge {
  background: linear-gradient(135deg, var(--dc-accent), var(--dc-secondary));
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Galería vacía */
.dc-empty-gallery {
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 2px dashed #dee2e6;
}

.dc-empty-gallery i {
  color: #adb5bd;
}

/* Animación de carga para botón de actualizar */
.dc-load-more-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Estados de carga y error para imágenes */
.dc-gallery-image img,
.dc-testimonio-image img {
  transition: opacity 0.3s ease;
}

.dc-gallery-image img[src=""],
.dc-testimonio-image img[src=""] {
  opacity: 0;
  background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
              linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
              linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Indicador de carga */
.dc-loading {
  position: relative;
  overflow: hidden;
}

.dc-loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Contadores dinámicos en filtros */
.dc-filter-btn .count {
  font-size: 0.8em;
  opacity: 0.8;
  margin-left: 5px;
}

/* Información del proyecto en modal */
.dc-project-info {
  padding: 20px 0;
}

/* Mejoras para transiciones */
.dc-gallery-item {
  will-change: transform, opacity;
}

.dc-gallery-card {
  will-change: transform, box-shadow;
}

/* Placeholder para imágenes que no cargan */
.dc-image-placeholder {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 2rem;
}

/* Estilos para tooltips dinámicos */
.dc-tooltip {
  position: relative;
}

.dc-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dc-tooltip:hover::after {
  opacity: 1;
}