body {
    background-color: #333;
    color: #fff;
}
.contenido {
    margin-top: 10rem;
}
.header {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: beige;
}
.modal-content{
    color: #333;
}
.nav-wrapper {
    background-color: #333;
    padding-right: 20px;
}
.brand-logo {
    margin-left: 10px;
}
.nav-wrapper .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: calc(100% - 40px);
}
.nav-wrapper ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.nav-wrapper ul li {
    margin: 0 15px;
}
@media only screen and (max-width: 992px) {
    .nav-wrapper ul {
        display: none;
    }
    .sidenav {
        width: 250px;
    }
}
.container {
    margin-bottom: 30px;
    margin-top: 20px;
}
.search-form {
    margin-bottom: 30px;
}
.search-form input {
    margin-bottom: 10px;
}
.search-form .input-field {
    margin: 0;
}
.search-form .btn {
    margin-right: 10px;
}
.reset-button {
    background-color: red;
    color: white;
}
.contact-info {
    margin-top: 30px;
    background-color: #444;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}
.contact-info h2 {
    margin-bottom: 20px;
}
.contact-info .info-item {
    margin-bottom: 15px;
}
.contact-info .info-item h5 {
    margin: 0;
    color: #f5f5f5;
}
.contact-info .info-item p {
    margin: 0;
}
.page-footer {
    background-color: #222;
    color: beige;
    padding: 40px 0;
}
.page-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-footer h5 {
    margin-bottom: 20px;
}
.page-footer ul {
    list-style: none;
    padding: 0;
}
.page-footer ul li {
    margin-bottom: 10px;
}
.page-footer ul a {
    color: beige;
    text-decoration: none;
}
.page-footer ul a:hover {
    text-decoration: underline;
}
.footer-copyright {
    background-color: #111;
    padding: 10px 0;
    text-align: center;
}
.card-content p {
    color: #333;
}
.card {
    background-color: #fff;
    color: #333;
    height: auto; /* Ajustar la altura según sea necesario */
    margin-bottom: 20px;
}
.card .card-image img {
    height: 100%;
    object-fit: cover;
}
.card .card-image {
    width: 150px; /* Ancho fijo para la imagen */
    height: 200px; /* Ajusta la altura automáticamente */
    display: flex;
}
.card-action {
    text-align: right;
}
.card.horizontal .card-stacked {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Color verde característico de WhatsApp */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
}