        .testimonios-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .testimonios-container {
            position: relative;
            overflow: hidden;
            background-color: #0000007a;
            border-radius: 7px;
            padding: 1rem;
        }

        .testimonio {
            display: none;
            padding: 20px;
            text-align: center;
            animation: fadeEffect 1s;
        }

        .testimonio:first-child {
            display: block;
        }

        .testimonio-imagen {
            margin-bottom: 20px;
        }

        .testimonio-imagen img {
            max-width: 150px;
            height: auto;
            border-radius: 50%;
            margin: 0 auto;
        }

        .testimonio-titulo {
            margin-bottom: 15px;
            color: #fff;
            font-size: 1.5em;
            font-weight: 300;
        }

        .testimonio-contenido {
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .testimonio-autor {
            font-style: italic;
            font-weight: bold;
            color: #fff;
            margin-top: 15px;
        }

        @keyframes fadeEffect {
            from {opacity: 0;}
            to {opacity: 1;}
        }

        .testimonio-prev,
        .testimonio-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #AEC34E;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 3px;
        }

        .testimonio-prev {
            left: 0;
        }

        .testimonio-next {
            right: 0;
        }

        .testimonio-prev:hover,
        .testimonio-next:hover {
            background: #6f7c32;
        }