/*
Theme Name: Jupiter Child
Theme URI: https://artbees.net
Description: Tema hijo para personalizar Jupiter X
Author: Tu Nombre
Author URI: Tu Sitio Web
Template: jupiterx
Version: 1.0
*/

/* Estilos personalizados */.reseñas-google {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reseña {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33.33% - 20px); /* Tres columnas */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.reseña:hover {
    transform: scale(1.05);
}

.autor-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.autor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #ddd;
}

.autor-nombre {
    font-size: 1.1em;
    font-weight: bold;
    color: #d13434;
    text-align: center;
}

.estrellas {
    color: #ffc107;
    margin: 5px 0;
}

.reseña-texto {
    font-size: 0.9em;
    text-align: center;
    color: #555;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .reseña {
        width: 100%; /* Una columna en dispositivos móviles */
    }
}



