/* styles.css */

/* Ajuste al footer para las imágenes */
footer img {
    margin-top: 10px;
}

/* Margen general del body */
body {
    margin: 20px;
}

/* Contenedor con ancho máximo */
.container {
    max-width: 600px;
}

/* Ajustes de la sección del logo */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

    .logo-container img {
        max-width: 100%;
        height: auto;
    }

/* Estilos del footer */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

/* Botón con color personalizado */
.custom-btn {
    background-color: #bf1539 !important;
    color: #fff !important; /* Texto en blanco */
    border-color: #bf1539 !important;
}

    /* Hover y focus opcionales para el botón */
    .custom-btn:hover {
        background-color: #2c4a57 !important;
        border-color: #2c4a57 !important;
    }

.img-resized {
    max-width: 60%;
    height: auto; /* Mantener la proporción */
}

.reviews-container {
    margin: 20px auto;
    max-width: 800px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.review {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

    .review h5 {
        margin: 0 0 5px;
        font-weight: bold;
    }

    .review p {
        margin: 0;
        font-style: italic;
    }

.rating {
    display: block;
    margin-top: 5px;
    color: #f39c12;
}
