    /* Estilos gerais
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f4f4f4;
        } */

        .container-depo {
            position: relative;
            width: 100%;
            height: 300px; /* Mantém a altura total da tela */
        }

        .depoimentos {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 600px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          }

        .depoimentos-conteudo {
            display: flex;
            transition: transform 0.5s ease-in-out;
            
        }

        .depoimento {
            min-width: 100%;
            box-sizing: border-box;
            padding: 20px;
            background-color: #fff;
            text-align: center;
        }

        .depoimento img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 15px;
        }

        .depoimento h3 {
            margin: 0;
            font-size: 1.5em;
            color: #333;
        }

        .depoimento p {
            font-size: 1em;
            color: #666;
            line-height: 1.5;
        }

        /* Navegação */
        .depoimentos-navegacao {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .depoimentos-navegacao label {
            width: 15px;
            height: 15px;
            background-color: #dfb789;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .depoimentos-navegacao label:hover {
            background-color: #745b41;
        }

        /* Esconder inputs */
        input[type="radio"] {
            display: none;
        }

        /* Lógica do carrossel */
        #depoimento1:checked ~ .depoimentos-conteudo {
            transform: translateX(0%);
        }

        #depoimento2:checked ~ .depoimentos-conteudo {
            transform: translateX(-100%);
        }

        #depoimento3:checked ~ .depoimentos-conteudo {
            transform: translateX(-200%);
        }

        #depoimento1:checked ~ .depoimentos-navegacao label[for="depoimento1"],
        #depoimento2:checked ~ .depoimentos-navegacao label[for="depoimento2"],
        #depoimento3:checked ~ .depoimentos-navegacao label[for="depoimento3"] {
            background-color: #745b41;
        }