
        /* --- ESTILOS GENERALES --- */
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 0;
            height: 100%;
            color: #333;
            background-color: #f8f9fa;
        }

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

        /* --- ESTILOS HEADER SUPERIOR --- */
       .top-bar {
            background-color: #212529;
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-info span {
            margin-right: 20px;
        }
        .top-bar-info i {
            margin-right: 8px;
            color: #28a745; /* Verde característico */
        }
        .top-bar-social a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
            font-size: 16px;
        }

        /* --- ESTILOS NAVEGACIÓN PRINCIPAL --- */
        .main-nav {
            
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .main-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #212529;
        }
        .logo span {
            color: #28a745;
        }
        .nav-links a {
            margin-left: 25px;
            text-decoration: none;
            color: white;
            font-weight: 500;
        }
        .nav-links a:hover {
            color: #28a745;
        }
        .login-btn {
            background-color: #28a745;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
        }

        /* --- ESTILOS SECCIÓN HERO --- */
       .hero {
        height: 35vh;  /* --- ESTILOS SECCIÓN HERO --- */
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
         padding-top: 0;
          
        }

        .hero h1 {
                font-size: 48px;
                margin: 0;
        }

        /* --- SECCIÓN PRINCIPAL DE SERVICIOS --- */
        .services-section {
            padding: 60px 0;
            text-align: center;
        }
        .services-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .services-section .section-intro {
            max-width: 800px;
            margin: 0 auto 50px auto;
            line-height: 1.6;
            color: #555;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
    .service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    /* Animación de entrada */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Efecto hover */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Cuando se activa la animación */
.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

        .service-card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
                 .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .service-card h3 {
            font-size: 22px;
            margin-top: 0;
            margin-bottom: 10px;
        }
        .service-card p {
            color: #777;
            font-style: italic;
            margin-bottom: 20px;
        }
        .service-card ul {
            padding-left: 20px;
            color: #555;
            line-height: 1.7;
            flex-grow: 1; /* Empuja el botón hacia abajo */
        }
        .service-card ul li {
            margin-bottom: 10px;
        }
        .info-button {
            display: inline-block;
            background-color: #28a745;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            text-align: center;
            margin-top: 20px; /* Espacio antes del botón */
        }
        .info-button:hover {
            background-color: #218838;
        }



        /* --- SECCIÓN DE ESTADÍSTICAS --- */
        .stats-banner {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x600.png?text=Imagen+de+Fondo+(Equipo)');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Efecto parallax */
            color: white;
            padding: 80px 0;
        }
        .stats-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        .stats-text {
            flex: 1;
        }
        .stats-text h2 {
            font-size: 32px;
            line-height: 1.4;
        }
        .stats-text span {
            color: #28a745;
            font-weight: bold;
        }
        .stats-text p {
            line-height: 1.7;
            font-size: 16px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            margin-top: 40px;
        }
        .stat-item {
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 20px;
            border-radius: 8px;
        }
        .stat-item .number {
            font-size: 48px;
            font-weight: bold;
            color: #28a745;
        }
        .stat-item .label {
            font-size: 16px;
            margin-top: 10px;
        }

        /* --- FOOTER --- */
        .footer {
            background-color: #212529;
            color: #ccc;
            padding: 60px 0 20px 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #444;
        }
        .footer-col h4 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
        }
        .footer-col p, .footer-col ul, .footer-col li {
            font-size: 15px;
            line-height: 1.8;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col a {
            color: #ccc;
            text-decoration: none;
        }
        .footer-col a:hover {
            color: #28a745;
        }
        .footer-col i {
            margin-right: 10px;
            width: 20px;
        }
        .social-links-footer a {
            font-size: 24px;
            margin-right: 15px;
        }
        .certificate-form input {
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #555;
            background: #333;
            color: white;
            width: 60%;
        }
        .certificate-form button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 11px 15px;
            border-radius: 5px;
            cursor: pointer;
        }
        .footer-bottom {
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }
        .footer-bottom a {
            color: #ccc;
            text-decoration: none;
            margin-left: 20px;
        }

        /* --- BOTÓN FLOTANTE WHATSAPP --- */
       .whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
    z-index: 1000;
}

.whatsapp-float i {
    font-size: 24px;
}

/* Efecto al pasar el mouse */
.whatsapp-float:hover {
    background-color: #1ebe5b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Opcional: ocultar texto en móviles */
@media (max-width: 500px) {
    .whatsapp-float span {
        display: none;
    }
}

        /* --- DISEÑO RESPONSIVO (PARA MÓVILES) --- */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-content {
                flex-direction: column;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }
            .main-nav .container {
                flex-direction: column;
                gap: 15px;
            }
            .nav-links {
                display: flex;
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
             .nav-links a {
                margin-left: 0;
            }
            .hero h1 {
                font-size: 36px;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 10px;
            }
            /* --- NUEVO: Hero que cubre TODO --- */
                /* --- ESTILOS HERO COMPLETOS GLOBAL --- */
        .full-hero {
            height: 100vh;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin: 0;
            padding: 0;
            
        }


        .hero-content {
            margin-top: auto;
            text-align: center;
            color: white;
            padding-bottom: 200px; /* Aumenta de 100px a 150px o más */
        }


        .full-hero h1 {
            font-size: 69px;
            margin: 0;
            color: white;
        }

           
        .active {
            color: white;
            font-weight: bold;
            border-bottom: 2px solid green;
        }


}

  /*INICIO CSS de nosotros*/
  .intro-nosotros { padding: 2rem 0; text-align: center; }
.mvv-seccion { background:#f0f9f5; padding:2rem 0; }
.mvv-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1.5rem; }
.equipo-seccion, .testimonios-seccion { padding:2rem 0; }
.equipo-grid, .testimonios-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; text-align:center; }
.equipo-miembro img { width:150px;height:150px;border-radius:50%;object-fit:cover;margin:auto 0 1rem; }
.testimonio { background:#fff;padding:1.2rem;border-left:4px solid #0a9396; box-shadow:0 2px 6px rgba(0,0,0,0.05); }

.mvv-section {
  padding: 4rem 0;
  background-color: #f6fcfa;
}

.mvv-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #023047;
}

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

.mvv-card {
  background: #fff;
  border-left: 5px solid #0a9396;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
}

.mvv-icon {
  font-size: 2rem;
  color: #0a9396;
  margin-bottom: 1rem;
}

.mvv-card h3 {
  font-size: 1.3rem;
  color: #005f73;
  margin-bottom: 0.8rem;
}

.mvv-card p, .mvv-card ul {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.mvv-card ul {
  list-style: none;
  padding-left: 0;
}

.mvv-card ul li {
  margin-bottom: 0.5rem;
}

.about-section {
  background: linear-gradient(135deg, #f0fdfa, #e6f2ef);
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-texto h2 {
  font-size: 2rem;
  color: #005f73;
  margin-bottom: 1rem;
}

.about-texto p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-imagen img {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.boton-accion {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #0a9396;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.boton-accion:hover {
  background-color: #00777a;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-imagen {
    order: -1;
  }

  .about-texto h2 {
    font-size: 1.5rem;
  }
}


/*FIN CSS de nosotros*/