body, html {
    background-color: black;
    color: white;
    font-family:RedHatDisplay;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo img {
    height: 75px;
    padding-left: 5rem;
    padding-top: 1rem;
}

.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 2;
    padding-right: 5rem;
}

.menu-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 2;
    font-size: 1.3rem;

}

.menu a, .menu .cta-button {
    margin: 0 30px;
    color: white;
    text-decoration: none;
}

.menu .cta-button {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.whatsapp-button {
    display: block;
    position: fixed;
    right: 20px; /* Ajusta el valor según tu preferencia */
    bottom: 20px; /* Ajusta el valor según tu preferencia */
    z-index: 1000; /* Asegura que el botón esté por encima de otros elementos */
}

.whatsapp-button a {
    display: block;
    color: #fff; /* Color del texto */
    border-radius: 50%;
    width: 60px; /* Tamaño del botón */
    height: 60px; /* Tamaño del botón */
    text-align: center;
    font-size: 30px; /* Tamaño del ícono */
    line-height: 60px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-button a:hover {
    background-color: #128c7e; /* Cambia el color de fondo al pasar el cursor por encima */
}
/*Fuentes*/

@font-face {
    font-family: "RedHatDisplay";
    src: url('../fonts/RedHatDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "RedHatDisplay";
    src: url('../fonts/RedHatDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "RedHatDisplay";
    src: url('../fonts/RedHatDisplay-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}