/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Botón WhatsApp personalizado */
.btn-wsp {
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-wsp:hover {
  background: linear-gradient(45deg, #20b358, #0f6b5c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.btn-wsp:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
  color: white;
  text-decoration: none;
}
/*.logo-blanco {
  filter: brightness(1000%) grayscale(100%) contrast(1000%);
  height: 65px;
} */
/* General */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== NAVBAR ========== */

.navbar {
  height: 80px;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 999;
}

.navbar-brand {
  font-weight: bold;
  color: #ffffff !important;
}

.nav-link {
  color: #ddd !important;
  margin-right: 15px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff !important;
}
.nav-link.active {
  color: #eea303 !important;
  font-weight: 600;
}
/* Menú colapsado en móviles */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    margin-top: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 0 !important;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
}

/* ========== HERO CAROUSEL ========== */

/* Hero Carousel Principal */
.hero-carousel {
  position: relative;
  height: calc(100vh - 80px);
  overflow: hidden;
}

/* Contenedor de slides */
.slides {
  height: 100%;
  position: relative;
}

/* Cada slide individual */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}

/* Imagen de fondo de cada slide */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay con gradiente */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Contenedor principal del contenido hero */
.hero-container {
  position: absolute;
  margin-left: 50px;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin-top: 73px;
}

/* Breadcrumb superior */
.hero-breadcrumb {
  position: absolute;
  top: 80px;
  left: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 300;
}

/* Layout en dos columnas del contenido */
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* Columna de texto del hero */
.hero-text {
  color: #fff;
}

/* Título principal del hero */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Subtítulo del hero */
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Contenedor de botones CTA */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Botón primario */
.btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Botón secundario outline */
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  text-decoration: none;
}

/* Contenedor de estadísticas */
.hero-stats {
  display: flex;
  gap: 2rem;
}

/* Item individual de estadística */
.stat-item {
  text-align: center;
}

/* Número de la estadística */
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #eea303;
  display: block;
}

/* Etiqueta de la estadística */
.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Columna visual derecha */
.hero-visual {
  position: relative;
  height: 500px;
}

/* Elementos decorativos flotantes */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #6c757d, #fd7e14);
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
  background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 50%;
  animation-delay: 4s;
  background: linear-gradient(45deg, #adb5bd, #ff6b35);
}

/* Animación de flotación */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* Indicadores de slides (dots) */
.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ec8702;
  transform: scale(1.2);
}

/* Barra de progreso del slide */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #f7a102;
  transition: width 5s linear;
  z-index: 3;
}

/* Controles de navegación (flechas) */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
  left: 30px;
}

.hero-nav.next {
  right: 30px;
}

/* Responsive del Hero - Tablets */
@media (max-width: 768px) {
  .hero-carousel {
    height: 100vh;
  }
  
  .hero-container {
    padding: 1rem;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 0;
    align-items: center;
    margin-top: 0;
  }
  
  .hero-text {
    margin-top: 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-stats {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: nowrap;
  }
  
  .stat-item {
    flex: 0 0 auto;
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .hero-visual {
    display: none;
  }
  
  .floating-element {
    display: none;
  }
  
  .hero-breadcrumb {
    top: 90px;
    left: 1rem;
    font-size: 0.8rem;
  }
  
  .hero-nav {
    display: none;
  }
}

/* Responsive del Hero - Móviles */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn-primary, .btn-outline {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-stats {
    display: none;
  }
  
  .floating-element {
    display: none;
  }
}

/* ========== FIN HERO CAROUSEL ========== */

/* ========== BOTONES GENERALES ========== */

/* Botón naranja personalizado */
.btn-orange {
  background-color: orange;
  color: white;
  font-weight: bold;
  border-color: orange;
  padding: 0.75rem 1.5rem; 
}

.btn-orange:hover {
  background-color: darkorange;
  border-color: darkorange;
}

/* Botones primarios generales */
.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* ========== SECCIONES ========== */
/* ========== SECCIÓN NOSOTROS ========== */

/* Contenedor principal de la sección */
#nosotros {
  position: relative;
  padding: 80px 0;
  background: #1a1a1a;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
#nosotros::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, rgba(238, 163, 3, 0.1), rgba(253, 126, 20, 0.1));
  border-radius: 50%;
  z-index: 1;
}

#nosotros::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(108, 117, 125, 0.1), rgba(173, 181, 189, 0.1));
  border-radius: 50%;
  z-index: 1;
}

/* Contenedor con z-index superior */
#nosotros .container {
  position: relative;
  z-index: 2;
}

/* Header de la sección */
.nosotros-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Título principal */
.nosotros-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* Línea decorativa debajo del título */
.nosotros-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #eea303, #fd7e14);
  border-radius: 2px;
}

/* Subtítulo descriptivo */
.nosotros-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contenedor de las cards */
.nosotros-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Card individual mejorada */
.nosotros-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Efecto hover en las cards */
.nosotros-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(238, 163, 3, 0.3);
}

/* Header de la card */
.nosotros-card-header {
  background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #eea303 100%);
  padding: 20px 25px;
  position: relative;
  overflow: hidden;
}

/* Efecto decorativo en el header */
.nosotros-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.nosotros-card:hover .nosotros-card-header::before {
  left: 100%;
}

/* Contenedor del título y icono */
.card-header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Icono del header */
.card-icon {
  font-size: 2rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nosotros-card:hover .card-icon {
  background: rgba(238, 163, 3, 0.3);
  transform: scale(1.1);
}

/* Título del header */
.card-header-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cuerpo de la card */
.nosotros-card-body {
  padding: 30px 25px;
  background: rgba(0, 0, 0, 0.2);
}

/* Texto del cuerpo */
.card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* Contenedor de botones CTA */
.nosotros-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Botón primario mejorado */
.btn-nosotros-primary {
  background: linear-gradient(45deg, #28a745, #20c997);
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-nosotros-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  color: white;
  text-decoration: none;
}

.btn-nosotros-primary:active {
  transform: translateY(-1px);
}

/* Botón secundario mejorado */
.btn-nosotros-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 13px 28px;
  font-weight: 600;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.btn-nosotros-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #eea303;
  color: #eea303;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(238, 163, 3, 0.2);
}

.btn-nosotros-secondary:active {
  transform: translateY(-1px);
}

/* Iconos en los botones */
.btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-nosotros-primary:hover .btn-icon,
.btn-nosotros-secondary:hover .btn-icon {
  transform: scale(1.2);
}

/* ========== RESPONSIVE NOSOTROS ========== */

/* Responsive para tablets */
@media (max-width: 768px) {
  /* Ajustes del contenedor principal */
  #nosotros {
    padding: 60px 0;
  }
  
  /* Header responsive */
  .nosotros-header {
    margin-bottom: 40px;
  }
  
  .nosotros-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  
  .nosotros-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  /* Cards responsive */
  .nosotros-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .nosotros-card-header {
    padding: 18px 20px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }
  
  .card-header-title {
    font-size: 1.2rem;
  }
  
  .nosotros-card-body {
    padding: 25px 20px;
  }
  
  /* Botones responsive */
  .nosotros-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-nosotros-primary,
  .btn-nosotros-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 25px;
  }
}

/* Responsive para móviles */
@media (max-width: 480px) {
  /* Ajustes principales */
  #nosotros {
    padding: 50px 0;
  }
  
  /* Elementos decorativos más pequeños */
  #nosotros::before,
  #nosotros::after {
    width: 200px;
    height: 200px;
  }
  
  /* Header móvil */
  .nosotros-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }
  
  .nosotros-title::after {
    width: 60px;
    height: 3px;
  }
  
  .nosotros-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  /* Cards móvil */
  .nosotros-cards {
    gap: 20px;
    margin-bottom: 35px;
  }
  
  .nosotros-card {
    border-radius: 12px;
  }
  
  .nosotros-card-header {
    padding: 15px 18px;
  }
  
  .card-header-content {
    gap: 12px;
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    border-radius: 8px;
  }
  
  .card-header-title {
    font-size: 1.1rem;
  }
  
  .nosotros-card-body {
    padding: 20px 18px;
  }
  
  .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Botones móvil */
  .btn-nosotros-primary,
  .btn-nosotros-secondary {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 12px 20px;
  }
}

/* ========== FIN SECCIÓN NOSOTROS ========== */

    /* ========== SECCIÓN SERVICIOS ========== */

    /* Contenedor principal de la sección servicios */
    #productos {
      position: relative;
      padding: 80px 0;
      background: #000000;
      overflow: hidden;
    }

    /* Efectos decorativos de fondo */
    #productos::before {
      content: '';
      position: absolute;
      top: -30%;
      left: -10%;
      width: 350px;
      height: 350px;
      background: linear-gradient(45deg, rgba(238, 163, 3, 0.08), rgba(253, 126, 20, 0.08));
      border-radius: 50%;
      z-index: 1;
    }

    #productos::after {
      content: '';
      position: absolute;
      bottom: -40%;
      right: -15%;
      width: 400px;
      height: 400px;
      background: linear-gradient(45deg, rgba(108, 117, 125, 0.08), rgba(173, 181, 189, 0.08));
      border-radius: 50%;
      z-index: 1;
    }

    /* Contenedor con z-index superior */
    #productos .container {
      position: relative;
      z-index: 2;
    }

    /* Header de la sección servicios */
    .servicios-header {
      text-align: center;
      margin-bottom: 60px;
    }

    /* Título principal de servicios */
    .servicios-title {
      font-size: 3rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      display: inline-block;
    }

    /* Línea decorativa debajo del título */
    .servicios-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(45deg, #eea303, #fd7e14);
      border-radius: 2px;
    }

    /* Subtítulo descriptivo de servicios */
    .servicios-subtitle {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Grid de servicios */
    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    /* Card individual de servicio */
    .servicio-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      height: 100%;
    }

    /* Efecto hover en cards de servicios */
    .servicio-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      border-color: rgba(238, 163, 3, 0.4);
    }

    /* Header de cada card de servicio */
    .servicio-card-header {
      background: linear-gradient(135deg, #343a40 0%, #495057 30%, #6c757d 70%, #eea303 100%);
      padding: 30px 25px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Efecto de brillo en el header */
    .servicio-card-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
      transition: left 0.8s ease;
    }

    .servicio-card:hover .servicio-card-header::before {
      left: 100%;
    }

    /* Icono principal del servicio */
    .servicio-icon {
      font-size: 3rem;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.15);
      width: 80px;
      height: 80px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .servicio-card:hover .servicio-icon {
      background: rgba(238, 163, 3, 0.3);
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 12px 35px rgba(238, 163, 3, 0.3);
    }

    /* Título del servicio */
    .servicio-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Cuerpo de la card del servicio */
    .servicio-card-body {
      padding: 30px 25px;
      background: rgba(0, 0, 0, 0.3);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    /* Descripción del servicio */
    .servicio-description {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 20px;
      font-weight: 300;
      flex-grow: 1;
    }

    /* Lista de características del servicio */
    .servicio-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .servicio-features li {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
    }

    .servicio-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #eea303;
      font-weight: bold;
    }

    /* Contenedor CTA de servicios */
    .servicios-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* Botón CTA principal de servicios */
    .btn-servicios-cta {
      background: linear-gradient(45deg, #eea303, #fd7e14);
      border: none;
      padding: 18px 40px;
      font-weight: 700;
      border-radius: 12px;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(238, 163, 3, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn-servicios-cta:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(238, 163, 3, 0.4);
      color: white;
      text-decoration: none;
    }

    .btn-servicios-cta:active {
      transform: translateY(-2px);
    }

    /* Icono del botón CTA */
    .cta-icon {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .btn-servicios-cta:hover .cta-icon {
      transform: scale(1.3) rotate(15deg);
    }

    /* ========== RESPONSIVE SERVICIOS ========== */

    /* Responsive para tablets */
    @media (max-width: 768px) {
      /* Ajustes principales */
      #productos {
        padding: 60px 0;
      }
      
      /* Header responsive */
      .servicios-header {
        margin-bottom: 40px;
      }
      
      .servicios-title {
        font-size: 2.4rem;
        letter-spacing: 1px;
      }
      
      .servicios-title::after {
        width: 80px;
      }
      
      .servicios-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
      }
      
      /* Grid de servicios responsive */
      .servicios-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
      }
      
      /* Cards responsive */
      .servicio-card-header {
        padding: 25px 20px;
      }
      
      .servicio-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 15px;
      }
      
      .servicio-title {
        font-size: 1.2rem;
      }
      
      .servicio-card-body {
        padding: 25px 20px;
      }
      
      /* CTA responsive */
      .btn-servicios-cta {
        padding: 15px 35px;
        font-size: 1rem;
      }
    }

    /* Responsive para móviles */
    @media (max-width: 480px) {
      /* Ajustes principales móvil */
      #productos {
        padding: 50px 0;
      }
      
      /* Elementos decorativos más pequeños */
      #productos::before,
      #productos::after {
        width: 250px;
        height: 250px;
      }
      
      /* Header móvil */
      .servicios-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
      }
      
      .servicios-title::after {
        width: 70px;
        height: 3px;
      }
      
      .servicios-subtitle {
        font-size: 1rem;
        padding: 0 15px;
      }
      
      /* Grid móvil */
      .servicios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      /* Cards móvil */
      .servicio-card {
        border-radius: 16px;
      }
      
      .servicio-card-header {
        padding: 20px 18px;
      }
      
      .servicio-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        border-radius: 12px;
      }
      
      .servicio-title {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
      }
      
      .servicio-card-body {
        padding: 20px 18px;
      }
      
      .servicio-description {
        font-size: 0.95rem;
        line-height: 1.6;
      }
      
      .servicio-features li {
        font-size: 0.85rem;
      }
      
      /* CTA móvil */
      .btn-servicios-cta {
        padding: 14px 30px;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
      }
    }

    /* ========== FIN SECCIÓN SERVICIOS ========== */
/* Secciones generales */
.section {
  padding: 60px 20px;
}

.section:nth-of-type(even) {
  background-color: #ffffff;
}

.section:nth-of-type(odd) {
  background-color: #f1f1f1;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #222;
}

/* ========== CARDS ========== */

/* Cards generales */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body {
  padding: 1.5rem;
}

/* ========== FOOTER ========== */

/* ========== FOOTER PROFESIONAL ========== */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(238, 163, 3, 0.1), rgba(253, 126, 20, 0.1));
  border-radius: 50%;
  z-index: 1;
}

/* Contenedor principal del footer */
.footer-content {
  position: relative;
  z-index: 2;
}

/* Grid del footer */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Sección de información de la empresa */
.footer-company {
  padding-right: 20px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #eea303;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: #eea303;
  width: 16px;
  text-align: center;
}

/* Sección de enlaces rápidos */
.footer-section h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #eea303;
  padding-left: 5px;
}

/* Sección de redes sociales */
.social-media {
  margin-top: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

.social-link.facebook:hover {
  background: #1877f2;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

/* Línea separadora */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 30px 0;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Responsive footer */
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .footer-section {
    display: none;
  }
  
  .footer-section .social-media {
    display: block;
    text-align: center;
  }
  
  .footer-section .social-media h4 {
    display: block;
    margin-bottom: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-company {
    padding-right: 0;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* ========== ALERTAS ========== */

/* Alertas personalizadas */
.alert-custom {
  background-color: #343a40;
  color: #fff;
  border: none;
  border-radius: 8px;
}

/* ========== RESPONSIVE GENERAL ========== */

/* Responsive general para toda la página */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .nav-link {
    margin-right: 0;
  }
}