        /* Ofrecemos */
        #ofrecemos {
            background: var(--light-bg);
            display: flex;
            height: auto;
            justify-content: center;
        }

        #ofrecemosContainer {
            width: 95%;
            height: 100%;
        }

        #contenedorTituloOfrecemos {
            text-align: center;
            height: 80px;
            display: grid;
            place-items: center;
        }

        #ofrecemosTitle {
        }

        #tarjetasOfrecemos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2%;
            height: 100%;
            padding-block: 30px;
        }

        .tarjetaOfrecemos {
            background: #fff;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px var(--color-sombra);
            transition: transform 0.3s;
            padding: 20px;
            height: 100%;
        }

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

        .tarjetaOfrecemos img {
            width: 90%;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
        }

        .tarjetaOfrecemos h3 {
            color: var(--color-azul);
        }

        .tarjetaOfrecemos p {
        }
