       
        body {
            background-color: #333;
            color: #fff; 
        }
        .contenido{
            margin-top:10rem;
        }
        .header{
            top: 0;
            position: fixed; 
            width: 100%;
            z-index: 1000; 
            color: beige;
        }
        .nav-wrapper {
            background-color: #333;
            padding-right: 20px; /* Espacio a la derecha */
        }
        .brand-logo {
            margin-left: 10px;
        }
        .nav-wrapper .container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            max-width: calc(100% - 40px); /* Asegura que haya margen en pantallas grandes */
        }
        .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; /* Espacio entre los botones */
        }
        .reset-button {
            background-color: red;
            color: white;
        }
        .contact-info {
            margin-top: 30px;
            background-color: #444; /* Fondo ligeramente más claro que el del body */
            color: #fff; /* Texto blanco para contraste */
            padding: 20px;
            border-radius: 8px; /* Bordes redondeados para un diseño más suave */
        }
        .contact-info h2 {
            margin-bottom: 20px;
        }
        .contact-info .info-item {
            margin-bottom: 15px;
        }
        .contact-info .info-item h5 {
            margin: 0;
            color: #f5f5f5; /* Color de los subtítulos */
        }
        .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;
}
.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;
        }