    .value-image {
      max-width: 100%; /* La imagen no superará el ancho del contenedor */
      height: auto; /* Mantiene la proporción de la imagen */
      margin-top: 1rem; /* Espacio entre el texto y la imagen */
      border-radius: 8px; /* Bordes redondeados (opcional) */
      display: block; /* Para centrar la imagen con margin auto */
      margin-left: auto;
      margin-right: auto;
    }


        

    .navbar-brand img {
            height: 70px; /* Ajusta según el tamaño deseado */
            width: auto;  /* Mantiene la proporción */
            transition: all 0.3s; /* Efecto suave al hacer hover */
        }

        .navbar-brand:hover img {
            transform: scale(1.05); /* Efecto de zoom al pasar el mouse */
        }


        :root {
            --primary-color: #000;    /* Negro */
            --secondary-color: #FFD700; /* Dorado */
            --light-color: #f8f9fa;    /* Gris claro */
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Playfair Display', serif;
        }

        body {
            font-family: var(--font-primary);
            color: var(--primary-color);
            line-height: 1.6;
        }

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80') no-repeat center center/cover;
            color: white;
            padding: 150px 0;
            text-align: center;
        }

        .hero h1 {
            font-family: var(--font-secondary);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .btn-primary {
            background-color: var(--secondary-color) !important;
            color: black !important;
            border: none;
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background-color: #e6c229 !important;
            transform: translateY(-2px);
        }

        .btn-outline-dark {
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: bold;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-family: var(--font-secondary);
            font-size: 2.5rem;
        }

        .card {
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .card-img-top {
            height: 250px;
            object-fit: cover;
        }

        .card-img-top {
    width: 100%;
    height: auto; /* Mantiene la proporción de la imagen */
    object-fit: cover; /* Asegura que la imagen cubra el área sin deformarse */
    max-height: 200px; /* Altura máxima para evitar que sea demasiado grande */
}

        .testimonial {
            font-style: italic;
            background: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .before-after {
            position: relative;
            margin-bottom: 30px;
        }

        .before-after img {
            width: 100%;
            display: block;
        }

        footer {
            background: var(--primary-color);
            color: white;
            padding: 30px 0;
        }

        footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: var(--secondary-color);
        }

        .modal-content {
            border-radius: 10px;
        }

        .modal-header {
            border-bottom: none;
        }

        .modal-footer {
            border-top: none;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .section {
                padding: 50px 0;
            }
        }



         /* Estilos para el carrusel */
        .clients-section {
            background-color: #000;
            padding: 30px 0;
            overflow: hidden;
            position: relative;
        }

        .clients-title {
            text-align: center;
            color: white;
            margin-bottom: 30px;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .clients-track {
            display: flex;
            width: max-content;
            animation: scroll 20s linear infinite;
        }

        .clients-track:hover {
            animation-play-state: paused; /* Pausa al pasar el mouse */
        }

        .client-logo {
            margin: 0 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            white-space: nowrap; /* Evita que el texto se rompa */
        }

        .client-logo img {
            height: 20px;
            width: auto;
            filter: brightness(0) invert(1); /* Para logos blancos en fondo negro */
        }

        /* Animación del carrusel */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Ajusta según el contenido */
        }

        /* Efecto de desvanecimiento en los bordes */
        .clients-section::before,
        .clients-section::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 1;
        }

        .clients-section::before {
            left: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        }

        .clients-section::after {
            right: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        }



.company-values {
    padding: 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.value-section {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1rem;
}

.value-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.value-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.clients-section {
    padding: 2rem;
    background-color: #333;
    text-align: center;
}

.clients-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.clients-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.client-logo {
    background-color: #444;
    padding: 1rem;
    border-radius: 8px;
}


     .client-logo-img-large {
        max-width: 1px; /* Ancho máximo para los logos grandes */
        max-height: 5px; /* Altura máxima para los logos grandes */
        width: 1%;
        height: 2%;
        object-fit: contain; /* Asegura que la imagen se vea completa */
        margin: 0 auto; /* Centra la imagen horizontalmente */
        display: block; /* Elimina espacios no deseados debajo de la imagen */
           filter: brightness(0) invert(1); /* Para logos blancos en fondo negro */
    }


   

 /* estilos para el modal de pantalla de informacion no encontrada */

.boton-estilo {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #fe2c55;
    margin: 20px;
    padding: 10px;
}

.boton-estilo:hover {
    opacity: 0.8;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: white;
    margin: 20% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s;
}

.modal-content p {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}