    :root {
        --negro: #333333;
        --verdeclaro: #C3EB0F;
        --grisoscuro: #5A5A5C;
        --grisclaro: #E5E5E5;
        --fuenteprincipal: "REM", serif;
        --fuentesecundaria: "REM", serif;
    }


    body {
        font-family: var(--fuenteprincipal);
        font-weight: 400;
        font-style: normal;
        background-color: #ffffff;
    }

    p {
        color: var(--negro);
        font-family: var(--fuentesecundaria);
        font-weight: 200;
        font-style: normal;
    }

    ul {
        color: var(--negro);
        font-family: var(--fuentesecundaria);
        font-weight: 200;
        font-style: normal;
    }

    h1 {
        color: var(--grisoscuro);
        font-size: 2em;
        font-family: var(--fuentesecundaria);
        font-weight: bold;
    }

    h2 {
        color: var(--grisoscuro);
        font-size: 2em;
        font-family: var(--fuentesecundaria);
        font-weight: bold;
    }
      
    #logo {
        width: 300px;
    }

    #botonWhatsApp {
        position: fixed;
        z-index: 1000;
        bottom: 20px;
        right: 15px;
        width: 80px;
    }

    #piedepagina {
        background-image: linear-gradient(to top,  var(--negro) 0%, var(--negro) 100%);
    }

    #piedepagina a {
        color: var(--grisclaro);
        text-decoration: none;
    }   

    #piedepagina a:hover {
        color: white;
    }

    #piedepagina .iconoredes {
        font-size: 1.5em;
        padding-right: 10px;
        color: var(--grisclaro);
    }

    #piedepagina .iconoredes:hover {
        color: white;
    }

    .titulopiedepagina {
        color: var(--verdeclaro);
        font-size: 1.5em;
    }

    #qr {
        display: block;
        border-radius: 10px;
        margin: 2rem;
        margin-left: auto;
        margin-right: auto;
        height: 150px;
        width: 150px;
        border: 10px solid #FFFFFF;
    }

    /* Menu */

    .navbar {
        z-index: 999;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }


    .navbar-toggler {
        border: 0px;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    /* Galería */
    
    .galeria {
        -webkit-filter: brightness(75%); 
        transition: transform 2s, filter 0.2s ease-in-out;
        transform-origin: center center;
        filter: brightness(75%);
    }
  
    .galeria:hover {
        -webkit-filter: brightness(100%); 
        filter: brightness(100%);
    }


    /* Sliders */

    #elementosSlider1, #elementosSlider2, #elementosSlider3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }

    .tituloCarrusel {
        font-family: var(--fuenteprincipal);
        color: white;
        font-size: 2.5em;
        font-weight: bold;
        text-align: center;
    }

    .subtituloCarrusel {
        color: white;
        font-size: 1.5em;
        font-family: var(--fuentesecundaria);
        text-align: center;
    }

    .btn {
        font-family: var(--fuentesecundaria);
        width: 200px;
        border-radius: 25px;
        color: var(--negro);
    }

    .btnInfo {
        display: block;
        margin: 0 auto;
        background-color: var(--verdeclaro);
        border: 0px solid transparent;
    }

    .btnInfo:hover {
        background-color: var(--verdeclaro);;
    }

    .btnInfo.hvr-grow:hover {
        background-color: var(--verdeclaro) !important;
    }

    .hvr-underline-from-center:before {
        background: var(--verdeclaro) !important;
        height: 5px;
    }

    .grecaptcha-badge {
        display: none;
    }

    .carousel-control-next-icon {
        background-image: url(../img/flecha-derecha.svg);
    }
    
    
    .carousel-control-prev-icon {
        background-image: url(../img/flecha-izquierda.svg);
    }

    @media only screen and (max-width: 768px) {

        #logo {
            width: 200px;
        }

        h2 {
            font-size: 1.3em;
        }

        .titulo {
            font-size: 1.5em;
        }

        #botonWhatsApp {
            width: 50px;
            height: 50px;
        }

        /* Sliders */

        .imagenCarrusel {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: center;
        }


        .tituloCarrusel {
            font-size: 1.2em;
            margin:50px;
        }

        .subtituloCarrusel {
            display: none;
        }

    }

    .link-sin-estilo{
        text-decoration: none;
    }

    .hvr-grow {
        transition: transform 0.3s ease;
    }
    
    .hvr-grow:hover {
        transform: scale(1.1);
    }
    .rounded-custom {
        border-radius: 15px; 
    }

    /*CSS SERVICIOS*/
    .gallery-container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 20px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-item {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    .gallery-item .info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(200, 200, 200, 0.8);
        color: #000;
        padding: 10px;
        box-sizing: border-box;
    }

    .gallery-item .info h2 {
        margin: 0;
        font-size: 2rem;
    }

    .gallery-item .info p {
        margin: 5px 0 0;
        font-size: 0.9em;
    }

    .gallery-item.full-width {
        grid-column: span 12;
    }

    .gallery-item.half-width {
        grid-column: span 6;
    }

    /*para celulares*/
    @media (max-width: 768px) {

        h1 {
            font-size: 1.3em;
        }

        #imagenBanner{
            width: 100%;
            height: 200px;
            object-fit: cover;
            object-position: right;
        }

        .imagenInterna{
            width: 100%;
            height: 300px;
            object-fit: cover;
            object-position: center;
        }


        .gallery-item.full-width {
            grid-column: span 12;
        }

        .gallery-item.half-width {
            grid-column: span 12;
        }
    }

    /*CSS PAILERIA*/
    .hero {
        position: relative;
        background: url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .servicios img {
        height: 200px;
        object-fit: cover;
    }

    .contenedor-3d{
        border-radius: 50px;
        background: #ffffff;
        box-shadow:  -20px 20px 60px #d9d9d9,
        20px -20px 60px #ffffff;
    }
    
    /*CSS inicio*/
        .testimonial-container {
            max-width: 1200px;
            margin: 20px auto;
            text-align: center;
            padding: 20px;
        }

        .testimonials {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 250px;
            padding: 20px;
            text-align: center;
        }

        .photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 10px;
        }

        .photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .name {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin: 10px 0;
        }

        .designation {
            font-size: 14px;
            color: #777;
            margin-bottom: 15px;
        }

        .testimonial {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }
        .card{
            --bs-card-border-color: none;
        }
        
        /*INNOVACION*/
                
        .step-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: #ffffff;
        }

        .step-number1 {
            margin: 0; 
            padding: 0; 
            line-height: 1; 
            display: block; 
            font-size: 450px;
            font-weight: bold;
            color: transparent;
            font-family: var(--fuenteprincipal);
            background: url('img/innovacion-1-grupovalto.webp') no-repeat center/cover;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .step-number2 {
            margin: 0; 
            padding: 0; 
            line-height: 1; 
            display: block;
            font-size: 450px;
            font-weight: bold;
            font-family: var(--fuenteprincipal);
            color: transparent;
            background: url('img/innovacion-3-grupovalto.webp') no-repeat center/cover;
            -webkit-background-clip: text;
            background-clip: text;
            display: end;
        }.step-number3 {
            margin: 0; 
            padding: 0; 
            line-height: 1; 
            display: block;
            font-size: 450px;
            font-family: var(--fuenteprincipal);
            font-weight: bold;
            color: transparent;
            background: url('img/innovacion-4-grupovalto.webp') no-repeat center/cover;
            -webkit-background-clip: text;
            background-clip: text;
        }
           
 /*INICIO SERVICIOS*/
    .inicio-item {
        position: relative;
        border-top: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin: 2rem;
    }

    .inicio-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    .inicio-item .info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgb(209, 208, 207);
        color: #000;
        font-size: .5rem;
        padding: .5rem;
    }

    .inicio-item .info h2 {
        margin: 0;
        font-size: .5rem;
    }

    .inicio-item .info p {
        margin: 5px 0 0;
        font-size: 0.9em;
    }

    .inicio-item.full-width {
        grid-column: span 12;
    }

    .inicio-item.half-width {
        grid-column: span 6;
    }

    /*para celulares*/
    @media (max-width: 768px) {
        .inicio-item.full-width {
            grid-column: span 12;
        }

        .inicio-item.half-width {
            grid-column: span 12;
        }
    }

.card {
      min-height: 300px; 
    }
