/* ___________________________________________________________________________________________________*/
/* ____________________________CUERPO___________________________*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
/* _______________________________________________
   Barra de navegación moderna
__________________________________________________ */

        /* Navbar moderna con gradiente */
        .navbar-custom {
            background: linear-gradient(135deg, #4790A7 0%, #4790A7 100%);
            box-shadow: 0 4px 15px rgba(70, 200, 189, 0.2);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-custom.scrolled {
            background: rgba(71, 144, 167);
            box-shadow: 0 6px 20px rgba(70, 200, 189, 0.3);
        }

        /* Logo styling */
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
            color: #f8f9fa !important;
        }

        .navbar-brand i {
            font-size: 2rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Navigation links */
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.8rem 1.2rem !important;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .navbar-nav .nav-link::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;
        }

        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }

        .navbar-nav .nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .navbar-nav .nav-link.active {
            background: rgba(255, 255, 255, 0.25);
            color: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .navbar-nav .nav-link i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .navbar-nav .nav-link:hover i {
            transform: scale(1.2);
        }

        /* Toggler button */
        .navbar-toggler {
            border: none;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 0.8rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3);
        }

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

        /* Collapse animation */
        .navbar-collapse {
            transition: all 0.3s ease;
            
        }

        /* Mobile responsiveness */
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(20px);
                border-radius: 15px;
                padding: 1rem;
                margin-top: 1rem;
                box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            }

            .navbar-nav .nav-link {
                margin: 0.3rem 0;
                text-align: center;
            }

            .navbar-nav .nav-link:hover {
                background: rgba(255, 255, 255, 0.3);
                transform: translateX(10px);
            }
        }

        /* Animación de entrada */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar-custom {
            animation: slideDown 0.5s ease;
        }

        /* Efectos adicionales */
        .navbar-nav .nav-link {
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 80%;
        }

        /* Container personalizado */
        .container-fluid {
            max-width: 1400px;
        }

        /* Texto WAB con efecto especial */
        .brand-text {
            background: linear-gradient(45deg, #ffffff, #f0f8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .wab {
          color: #4790A7 !important; /* Tu color corporativo */
          font-weight: bold !important; /* Opcional: para hacerlo más destacado */
      }
/* ___________________________________________________________________________________________________*/
/* ____________________________FOOTER___________________________*/
.img-logo-footer {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-logo-footer:hover {
  transform: scale(1.05) rotateZ(1deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.footer {
  background-color: rgba(71, 144, 167);
  color: white;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
  animation: slideUp 1s ease-in-out;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box h2,
.footer-box h3 {
  margin-bottom: 15px;
  color: #ffc107;
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-box p,
.footer-box a {
  color: #f1f1f1;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
}

.footer-box a:hover {
  color: #ffc107;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 30px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #ffc107;
  transform: scale(1.2) rotateZ(-5deg);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: white;
  font-weight: bold;
}

.footer-verse {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
}

.footer-verse p {
  margin: 0;
  color: white;
  font-weight: bold;
  font-size: 0.95em;
  line-height: 1.5;
}

/* Animación */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.services, .team, .contact {
    padding: 2rem;
    background: white;
    margin: 1rem;
    border-radius: 8px;
}

        .h1 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #2c3e50;
            position: relative;
            letter-spacing: -0.5px;
        }

        .h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #4790A7, #4790A7);
            border-radius: 2px;
        }

        .services-Blog {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services-Blog h1 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #2c3e50;
            position: relative;
            letter-spacing: -0.5px;
        }

        .services-Blog h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #4790A7, #4790A7);
            border-radius: 2px;
        }

        .content-container-Blog {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .objective-info {
            flex: 1;
            max-width: 400px;
        }

        .objective-banner {
            background: linear-gradient(135deg, #4790A7, #4790A7);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .objective-banner:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
        }

        .description-Blog {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e8f5e8;
            transition: all 0.3s ease;
        }

        .description-Blog:hover {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
        }

        .description-Blog h2 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .description-Blog p {
            color: #6c757d;
            line-height: 1.6;
            font-size: 1rem;
        }

        .image-section {
            flex: 1;
            max-width: 500px;
        }

        .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background: white;
            padding: 1rem;
        }

        .image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .objective-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .objective-image:hover {
            transform: scale(1.02);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid #e8f5e8;
        }

        .stat-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-color: #4790A7;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #4790A7;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .content-container-Blog {
                flex-direction: column;
                gap: 2rem;
            }
            
            .services-Blog  {
                padding: 0 1rem;
            }
            
            .objective-banner {
                font-size: 1.1rem;
                padding: 1.2rem 1.5rem;
            }
            
            .description-Blog {
                padding: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .services-Blog  h1 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        .img-blog {
          max-width: 60%;
          height: auto;
          display: block;
          margin: 40px auto;
          border-radius: 16px;
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
          object-fit: cover;
        }

        @media (max-width: 768px) {
          .img-blog {
            max-width: 90%;
          }
        }
/* ___________________________________________________________________________________________________*/
/* ____________________________BANER DE INICIO___________________________*/
.banner {
  background: url('/img/Banner/BannerCapacitaciones.png') no-repeat center center/cover;
  padding: 110px 20px;
  color: white;
  text-align: center;
  position: relative;
  min-height: 600px;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* oscurece un poco para que el texto sea legible */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.banner-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.banner-buttons .btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #20dbcf;
  color: white;
  margin-top: 300px; 

}

.btn-primary:hover {
  background-color: rgb(81, 227, 218);
  color: rgb(0, 0, 0);
}

.btn-secondary {
  background-color: #20dbcf;
  color: white;
  margin-top: 300px; 
}

.btn-secondary:hover {
  background-color: rgb(81, 227, 218);
  color: rgb(0, 0, 0);

  
}
/* ✅ RESPONSIVE para móviles */
@media (max-width: 600px) {
  .banner {
     background-size: contain; /* asegura que se vea completa */
    min-height: auto;
    padding: 100px 10px;
  }

  .banner h1 {
    font-size: 1.8rem;
  }

  .banner-buttons {
    display: none; /* Oculta los botones en mobile */
  }
  }
 /* ___________________________________________________________________________________________________*/
/* ____________________________SERVICIO___________________________*/
  .resumen-servicios {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  .servicio {
    width: 300px;
    margin: 20px;
    background: white;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: transform 0.3s;
  }
  .servicio:hover {
    transform: translateY(-10px);
  }
  .servicio img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .servicio h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .servicios {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  .servicios h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
  }
  .servicio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .servicio-box {
    background: white;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .servicio-box:hover {
    transform: translateY(-5px);
  }
  .icono-servicio {
    font-size: 40px;
    color: #003366;
    margin-bottom: 15px;
  }
  .servicio-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
  }
  .servicio-box p {
    font-size: 1rem;
    color: #666;
  }
  .grid-servicios.centrado {
    display: flex;
    justify-content: center;
    
  }
  /* ___________________________________________________________________________________________________*/
/* ____________________________SOBRE NOSOTROS___________________________*/
  .sobre-nosotros {
    padding: 60px 20px;
    background: #f9f9f9;
    animation: slideUp 1s ease-in-out;
  }
  .titulo-seccion {
    text-align: center;
    font-size: 2.5rem;
    color: #062c4e;
    margin-bottom: 40px;
  }
  .grid-nosotros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
  }
  .card-nosotros {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
   .card-nosotros-valores {
    width: 300px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  .card-nosotros:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }
  .card-nosotros h3 {
    margin-top: 15px;
    color: #062c4e;
  }
  .card-nosotros p {
    color: #555;
    margin-top: 10px;
    font-size: 0.95rem;
  }
  .icono-nosotros {
    font-size: 2.5rem;
    color: #004aad;
  }
  .valores-lista {
    list-style: none;
    padding: 0;
    margin-top: 10px;
  }
  .valores-lista li {
    background: #e8f0fe;
    margin: 5px auto;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    color: #003366;
    font-weight: bold;
  }
  .equipo-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .miembro {
    text-align: center;
  }
  .miembro img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #062c4e;
  }
  /* ----------------------------------- ERTIFICACIONES----------------------------------------------- */
.cert-grid {
  display: flex;
  flex-wrap: wrap; /* Importante para que baje a otra línea en móvil */
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding: 0 10px; /* Añade espacio lateral en móvil */
}

.cert-grid img {
  border-radius: 15px;
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: grayscale(80%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover: solo se aplicará en PC y laptops */
@media (hover: hover) and (pointer: fine) {
  .cert-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
  }
}

/* Responsive: en móviles */
@media (max-width: 600px) {
  .cert-grid {
    gap: 10px;
  }

  .cert-grid img {
    max-width: 90%;
  }
}

  /* ----------------------------------- ERTIFICACIONES----------------------------------------------- */
  /* ----------------------------------- CATALOGO----------------------------------------------- */
       .catalog-container {
            max-width: 1400px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .catalog-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .catalog-header h1 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .catalog-header p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .course-card {
            position: relative;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            transform-style: preserve-3d;
        }

        .course-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .course-image {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .course-card:hover .course-image img {
            transform: scale(1.05);
        }

        .course-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(50, 159, 132, 0.8), rgba(158, 223, 192, 0.8));
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .course-card:hover .course-overlay {
            opacity: 1;
        }

        .course-info {
            padding: 30px;
            text-align: center;
        }

        .course-info h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .course-info p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

/* -------------- ESTADO DE LAS CAPACITACIONES */
   .course-badge-Disponible {
    display: inline-block;
    background: green;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px; 
    margin-bottom: 15px;
    text-align: center;
}

   .course-badge-Proximamente {
    display: inline-block;
    background: rgb(202, 213, 45);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px; 
    margin-bottom: 15px;
    text-align: center;
}

   .course-badge-Expirado {
    display: inline-block;
    background: rgb(232, 12, 12);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px; 
    margin-bottom: 15px;
    text-align: center;
}

   .course-badge-Info {
    display: inline-block;
    background: rgb(91, 102, 102);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px; 
    margin-bottom: 15px;
    text-align: center;
}

   /* Estilos para el hipervínculo dentro del badge */
   .course-badge-Info a {
    color: white;
    text-decoration: none; /* Quita el subrayado */
    display: block; /* Hace que el enlace ocupe todo el área del badge */
    }


   .course-badge-Info-Mas {
    display: inline-block;
    background: rgb(91, 102, 102);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px; 
    margin-bottom: 15px;
    text-align: center;
}

   /* Estilos para el hipervínculo dentro del badge */
   .course-badge-Info-Mas a {
    color: white;
    text-decoration: none; /* Quita el subrayado */
    display: block; /* Hace que el enlace ocupe todo el área del badge */
    }


        .course-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .course-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
 /* 
        .ribbon {
            position: absolute;
            top: 20px;
            right: -30px;
            background: #e74c3c;
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }
*/
        /* Responsive Design */
        @media (max-width: 768px) {
            .catalog-container {
                padding: 20px;
                margin: 10px;
            }

            .catalog-header h1 {
                font-size: 2.5rem;
            }

            .catalog-header p {
                font-size: 1rem;
            }

            .courses-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .course-image {
                height: 250px;
            }

            .course-info {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .catalog-header h1 {
                font-size: 2rem;
            }

            .course-image {
                height: 200px;
            }

            .course-info h3 {
                font-size: 1.3rem;
            }
        }

        /* Animaciones adicionales */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .course-card {
            animation: fadeInUp 0.6s ease forwards;
        }

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

        /* Efectos de hover mejorados */
        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            border-radius: 20px;
        }

        .course-card:hover::before {
            opacity: 1;
        } 




.pagina-servicios {
  padding: 60px 20px;
  background: #f5f7fa;
}

.titulo-seccion {
  text-align: center;
  font-size: 2.5rem;
  color: #062c4e;
  margin-bottom: 40px;
}

.grid-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card-servicio {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  animation: slideUp 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-servicio:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

.img-servicio {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.contenido-card {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.contenido-card h3 {
  color: #062c4e;
  margin-bottom: 10px;
}

.contenido-card p {
  color: #555;
  font-size: 0.95rem;
  flex-grow: 1; /* Ocupa el espacio restante */
  margin-bottom: 15px;
}

.icono-servicio {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 15px;
}

.botones {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-info, .btn-pdf {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.3s;
}

.btn-info {
  background: #004aad;
  color: white;
}

.btn-info:hover {
  background: #003580;
  transform: scale(1.05);
}

.btn-pdf {
  background: rgba(71, 144, 167);
  color: white;
}

.btn-pdf:hover {
  background: #004aad;
  transform: scale(1.05);
}

/* Animación SlideUp */
@keyframes slideUp {
  from { bottom: -50px; opacity: 0; }
  to { bottom: 0; opacity: 1; }
}

.slideUp {
  position: relative;
  animation: slideUp 1s ease-in-out;
}


.blog-section {
  padding: 4rem 2rem;
  background: #f7f7f7;
  text-align: center;
}

.blog-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1c1c1c;
}

.intro-blog {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #555;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.servicos{
  width: 200px;
  height: 200px;

}

.blog-content {
  padding: 1.5rem;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.btn-leer {
  display: inline-block;
  background: #d40c0c;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-leerr {
  display: inline-block;
  background: #145DA0;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-leer:hover {
  background: #109d43;
}
.btn-leerr:hover {
  background: #109d43;
}


.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-main-info {
  text-align: center;
  margin-bottom: 60px;
}

.contact-main-info h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-description {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.btn-contact {
  background: linear-gradient(135deg, #4790A7, #4790A7); 
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4790A7, #4790A7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.contact-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-card a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #45a049;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4790A7;
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.whatsapp-link:hover {
  background: #128C7E;
  color: white !important;
}

.contact-services {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 60px;
  text-align: center;
}

.contact-services h3 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.service-item:hover {
  background: #f8f9fa;
}

.service-item i {
  font-size: 2.5rem;
  color: #4790A7;
  margin-bottom: 15px;
}

.service-item span {
  color: #2c3e50;
  font-weight: 500;
  text-align: center;
}

.contact-map {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-map h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.map-note {
  text-align: center;
  margin-top: 15px;
  color: #6c757d;
  font-style: italic;
}

.map-note i {
  color: #4CAF50;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .contact-main-info h2 {
    font-size: 2rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #4CAF50;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  z-index: 999;
  font-weight: bold;
}

.toast.show {
  opacity: 1;
  pointer-events: all;
}
/* ___________________________________________________________________________________________________*/
/* ____________________________ICONO QR___________________________*/

.fruta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1250px;
  margin: 50px auto;
  padding: 20px;
  gap: 30px;
}

.card-img {
  width: 600px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.card-content {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.card-content p {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn.primary {
  background: #007BFF;
  color: white;
}

.btn.primary:hover {
  background: #0056b3;
}

.btn.secondary {
  background: #e0e0e0;
  color: #333;
}

.btn.secondary:hover {
  background: #c7c7c7;
}
@media (max-width: 768px) {
  .fruta {
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }

  .card-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .card-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .card-content h2 {
    font-size: 2rem;
  }

  .card-content p {
    font-size: 1rem;
  }

  .card-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }

  .btn {
    width: 80%;
  }
}
/* ____________________________OCULTAR BOTONES FLOTANTES___________________________*/
@media (max-width: 600px) {
  #btn-whatsapp,
  #btn-whatsapp + a,
  #btn-whatsapp + a + a {
    display: none !important;
  }
}

.btn-primary {
  background-color: #4790A7 !important;
  border-color: #4790A7 !important;
}

.btn-primary:hover {
  background-color: #357888 !important; /* un tono más oscuro para hover */
  border-color: #357888 !important;
}

.btn-secondary {
  background-color: #4790A7 !important;
  border-color: #4790A7 !important;
  color: #fff !important; /* texto blanco */
}

.btn-secondary:hover {
  background-color: #357888 !important; /* tono más oscuro al pasar el mouse */
  border-color: #357888 !important;
}

/* ____________________________EOCULTAR BOTONES FLOTANTES___________________________*/
/* ___________________________________________________________________________________________________*/
/* ____________________________EMPRESAS A LAS CUALES LE OFRECEMOS SERVICIOS___________________________*/
          .contenedor-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            max-width: 1400px;
            margin: 20px auto;
        }

        .contenedor-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4790A7 0%, #4790A7 100%);
        }

        .logo-empresa-capacitaciones {
            width: 90px;
            height: 90px;
            object-fit: contain;
            border-radius: 360px;
            margin-right: 25px;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
        }

        .logo-empresa-capacitaciones:hover {
            transform: scale(1.05);
        }

        .texto-empresa {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
            line-height: 1.3;
            text-align: left;
        }

        .texto-empresa .wabb {
            color: #000000;
            font-size: 32px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(70, 200, 189, 0.2);
            display: inline-block;
            transition: color 0.3s ease;
        }

        .texto-empresa .wabb:hover {
            color: #46C8BD;
        }

         /* Estilos para la sección de clientes */
        .clientes-section {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .clientes-container {
            overflow: hidden;
            width: 100%;            
            position: relative;
            margin-top: 30px;
            padding: 30px 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(70, 200, 189, 0.02));
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .clientes-container::before,
        .clientes-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 10;
            pointer-events: none;
        }

        .clientes-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(255,255,255,1), transparent);
        }

        .clientes-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(255,255,255,1), transparent);
        }

        .clientes-scroll {
            display: flex;
            animation: scroll-left 28s linear infinite;
            gap: 40px;
            align-items: center;
        }

        .clientes-scroll:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-300%);
            }
        }

        .cliente-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 150px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .cliente-item:hover {
            transform: translateY(-8px) scale(1.05);
        }

        .cliente-logo {
            width: 190px;
            height: 120px;
            object-fit: contain;
            filter: opacity(0.6) grayscale(100%); 
            transition: all 0.4s ease;
            border-radius: 12px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 2px solid rgba(70, 200, 189, 0.1);
        }

        .cliente-item:hover .cliente-logo {
            filter: opacity(1) grayscale(0%);
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(70, 200, 189, 0.2);
            border-color: #46C8BD;
        }

        .cliente-nombre {
            margin-top: 15px;
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            opacity: 0.7;
            transition: all 0.3s ease;
            padding: 5px 12px;
            border-radius: 15px;
            background: rgba(70, 200, 189, 0.05);
        }

        .cliente-item:hover .cliente-nombre {
            opacity: 1;
            color: #46C8BD;
            background: rgba(70, 200, 189, 0.15);
            transform: translateY(-3px);
        }

        /* Duplicar el contenido para el scroll infinito */
        .clientes-scroll-duplicate {
            display: flex;
            animation: scroll-left 40s linear infinite;
            gap: 40px;
            align-items: center;
        }

        .clientes-scroll-duplicate:hover {
            animation-play-state: paused;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contenedor-logo {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
                gap: 20px;
                margin: 15px;
            }
            
            .logo-empresa-capacitaciones {
                width: 70px;
                height: 70px;
                margin-right: 0;
            }
            
            .texto-empresa .wabb {
                font-size: 28px;
            }

            .clientes-container {
                padding: 20px 0;
            }

            .clientes-scroll {
                gap: 25px;
            }

            .cliente-logo {
                width: 100px;
                height: 70px;
                padding: 10px;
            }

            .cliente-nombre {
                font-size: 12px;
                padding: 3px 8px;
            }

            .cliente-item {
                min-width: 120px;
            }
        }

        @media (max-width: 480px) {
            .clientes-container::before,
            .clientes-container::after {
                width: 50px;
            }

            .clientes-scroll {
                gap: 20px;
            }

            .cliente-logo {
                width: 80px;
                height: 60px;
                padding: 8px;
            }

            .cliente-item {
                min-width: 100px;
            }

            .cliente-nombre {
                font-size: 11px;
            }
}
/* ___________________________________________________________________________________________________*/
/* ____________________________CAPACITACIONES___________________________*/
/* Header y Logo elegante */
        .contenedor-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            max-width: 1400px;
            margin: 20px;
            margin-left: 50px;
        }

        .contenedor-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #46C8BD 0%, #2c3e50 100%);
        }

        .logo-empresa-capacitaciones {
            width: 90px;
            height: 90px;
            object-fit: contain;
            border-radius: 360px;
            margin-right: 25px;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
        }

        .logo-empresa-capacitaciones:hover {
            transform: scale(1.05);
        }

        .texto-empresa {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
            line-height: 1.3;
            text-align: left;
        }

        .texto-empresa .wab {
            color: #46C8BD;
            font-size: 32px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(70, 200, 189, 0.2);
            display: inline-block;
            transition: color 0.3s ease;
        }

           .texto-empresa .wabb {
            color: #000000;
            font-size: 32px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(70, 200, 189, 0.2);
            display: inline-block;
            transition: color 0.3s ease;
        }

        .texto-empresa .wab:hover {
            color: #3ba8a0;
        }

        .texto-empresa .capacitaciones {
            color: #2c3e50;
            font-size: 24px;
            font-weight: 600;
            display: inline-block;
            position: relative;
        }

        .texto-empresa .capacitaciones::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #46C8BD;
            transition: width 0.3s ease;
        }

        .contenedor-logo:hover .texto-empresa .capacitaciones::after {
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contenedor-logo {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
                gap: 20px;
                margin: 15px;
            }
            
            .logo-empresa-capacitaciones {
                width: 70px;
                height: 70px;
                margin-right: 0;
            }
            
            .texto-empresa .wab {
                font-size: 28px;
            }
            
            .texto-empresa .capacitaciones {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .contenedor-logo {
                padding: 20px 15px;
                margin: 10px;
            }
            
            .logo-empresa-capacitaciones {
                width: 60px;
                height: 60px;
            }
            
            .texto-empresa .wab {
                font-size: 24px;
            }
            
            .texto-empresa .capacitaciones {
                font-size: 18px;
            }
        }

        /* Animación sutil */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contenedor-logo {
            animation: fadeIn 0.6s ease-out;
        }

        /* Sección informativa mejorada */
        .info-section {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .info-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            min-height: 400px;
        }

        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .info-image-container {
            width: 560px;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

        .info-image-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30px;
            background: linear-gradient(transparent, rgba(255,255,255,0.1));
        }

        .info-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .info-card:hover img {
            transform: scale(1.08);
        }

        .info-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            height: calc(100% - 200px);
        }

        .info-content h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .info-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .info-content p {
            color: #555;
            line-height: 1.6;
            font-size: 15px;
            flex-grow: 1;
        }

        .info-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .info-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .info-card {
                min-height: 350px;
            }
            
            .info-image-container {
                height: 180px;
            }
            
            .info-content {
                height: calc(100% - 180px);
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .info-section {
                padding: 0 15px;
            }
            
            .info-card {
                min-height: 320px;
            }
            
            .info-image-container {
                height: 160px;
            }
            
            .info-content {
                height: calc(100% - 160px);
                padding: 18px;
            }
            
            .info-content h2 {
                font-size: 20px;
            }
            
            .info-content p {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .info-grid {
                gap: 20px;
            }
            
            .info-card {
                min-height: 300px;
            }
            
            .info-image-container {
                height: 140px;
            }
            
            .info-content {
                height: calc(100% - 140px);
                padding: 15px;
            }
            
            .info-content h2 {
                font-size: 18px;
                margin-bottom: 12px;
            }
            
            .info-content p {
                font-size: 13px;
            }
        }

        /* Título de capacitaciones */
        .postres {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }

        .postres h2 {
            font-size: 42px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .cambio {
            color: #46C8BD;
            font-size: 42px;
            font-weight: 700;
        }

        /* Contenedor principal de capacitaciones */
        .continer-capacitaciones {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        /* Tarjetas de capacitaciones */
        .card-capacitaciones {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
            height: 650px;
        }

        .card-capacitaciones:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .card-capacitaciones figure {
            margin: 0;
            overflow: hidden;
        }

        .card-capacitaciones img {
            width: 100%;
            height: 280px;
             object-fit: cover;
            transition: transform 0.3s ease;
        }

        .card-capacitaciones:hover img {
            transform: scale(1.05);
        }

        .contenido-capacitaciones {
          display: flex;
          flex-direction: column;
          flex-grow: 1;
          padding: 30px;
        }

        .contenido-capacitaciones h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
            line-height: 1.3;
        }

        .contenido-capacitaciones p {
            color: #6a6a6a;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 25px;
            font-size: 14px;
        }

        /* Contenedor de botones de las card principales de los servicios */
        .botones-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .btn-inscribirse, .btn-info {
            flex: 1;
            min-width: 120px;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .btn-inscribirse {
            background: linear-gradient(135deg, #4790A7 0%, #4790A7 100%);
            color: white;
            border: 2px solid #4790A7;
        }

        .btn-inscribirse:hover {
            background: linear-gradient(135deg, #3ba99c 0%, #2d8a80 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(70, 200, 189, 0.4);
        }

        .btn-info {
            background: white;
            color: #2c3e50;
            border: 2px solid #2c3e50;
        }

        .btn-info:hover {
            background: #2c3e50;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contenedor-logo {
                flex-direction: column;
                text-align: center;
            }

            .logo-empresa-capacitaciones {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .texto-empresa .wab,
            .texto-empresa .capacitaciones {
                font-size: 36px;
            }

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

            .info-card {
                flex-direction: column;
                text-align: center;
            }

            .postres h2,
            .cambio {
                font-size: 32px;
            }

            .continer-capacitaciones {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }

            .botones-container {
                flex-direction: column;
            }

            .btn-inscribirse,
            .btn-info {
                flex: none;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .info-card {
                padding: 20px;
            }

            .contenido-capacitaciones {
                padding: 20px;
            }

            .contenido-capacitaciones h3 {
                font-size: 18px;
            }

            .texto-empresa .wab,
            .texto-empresa .capacitaciones {
                font-size: 28px;
            }
        }

/* --------------------------------------------- CAPACITACIONES WAB ----------------------------------- */

/* --------------------------------------------- Sobre nosotros (Ventana emergente) ----------------------------------- */

 /* Estilos del Modal */
 .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: slideIn 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: linear-gradient(135deg, #4790A7, #4790A7);
  color: white;
  padding: 25px;
  border-radius: 15px 15px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content {
  text-align: center;
  flex: 1;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5em;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close:hover {
  transform: scale(1.2);
}

.modal-body {
  padding: 30px;
}

.profile-section {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.profile-image {
  flex-shrink: 0;
}

.profile-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
}

.profile-info {
  flex: 1;
}

.profile-info h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 1.3em;
}

.profile-info .role {
  color: #007bff;
  font-weight: 500;
  margin-bottom: 15px;
}

.description {
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.skills {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.skills h5 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 1.1em;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: #4790A7;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 500;
}

.contact-info {
  background: #e9ecef;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-info h5 {
  margin: 0 0 10px 0;
  color: #333;
}

.contact-info p {
  margin: 5px 0;
  color: #666;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
      opacity: 0;
      transform: translateY(-50px);
  }
  to { 
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
      width: 95%;
      margin: 10% auto;
  }
  
  .profile-section {
      flex-direction: column;
      text-align: center;
  }
  
  .modal-body {
      padding: 20px;
  }
}
