
        #nosotros {
            background-color: #13322b;
            position: relative;
        }

        .imagen img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            transition: opacity 0.5s ease, transform 0.5s ease;
            opacity: 0;
        }

        .imagen img:hover {
            transform: scale(1.05);
        }

        .info {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-38%);
            z-index: 1;
            padding: 20px;
            width: 109%;
        }

        .info p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
        }

        .linea-dorada {
            display: inline-block;
            width: 400px;
            height: 1.5px;
            background-color: #b28e5d;
            margin-left: 30%;
        }

        @media (max-width: 768px) {
            .info {
                top: -50px;
                width: 95%;
                left: 50%;
                transform: translateX(-50%);
            }

            .linea-dorada {
                width: 70%;
                margin-left: 15%;
            }
        }

        /* Animaciones al hacer scroll */
        .animate-on-scroll {
            transition: opacity 0.5s ease;
            opacity: 0;
        }

        .animate-on-scroll.animate {
            opacity: 1;
        }

        .animate-on-scroll p {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .animate-on-scroll.animate p {
            opacity: 1;
        }
        .animate-on-scroll img {
        opacity: 1;
        transform: translateY(0);
    }

    .animate-on-scroll img:hover {
        transform: scale(1.1);
    }
