body {
    box-sizing: border-box;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.window-notice {
    background: rgba(33, 41, 52, .85);
    bottom: 0;
    display: flex;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    transition: background .6s;
}

.window-notice .content {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(33, 41, 52, .75);
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 600px;
    min-width: 320px !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem;
    font-size: 1.3rem;
}

.content-buttons {
    text-align: center;
    margin-top: 1rem;
}

.content-buttons a {
    text-decoration: none;
    display: inline-block;
    padding: 1rem;
    background-color: #0080DE;
    color: #FFF;
    text-transform: uppercase;
}

.content-buttons a:hover {
    background-color: #006AB8;
}

.content-text a {
    color: #0080DE;
    text-decoration: none;
}

.content-text a:hover {
    color: #006AB8;
    text-decoration: underline;
    text-align: justify;
}

.float-wa {
    position: fixed; /* Permite que el botón esté fijo en la pantalla */
    width: 60px;
    height: 60px;
    bottom: 40px; /* Distancia desde la parte inferior */
    right: 100px; /* Distancia desde la parte derecha */
    background-color: #25d366; /* Color verde de WhatsApp */
    color: #fff; /* Color blanco para el icono */
    border-radius: 50px; /* Para que sea circular */
    text-align: center;
    font-size: 30px; /* Tamaño del icono */
    box-shadow: 2px 2px 3px #999; /* Sombra para dar profundidad */
    z-index: 100; /* Asegura que el botón esté sobre otros elementos */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease; /* Transición suave al pasar el mouse */
    }
  
    .float-wa:hover {
    background-color: #128c7e; /* Color de fondo al pasar el mouse */
    }
  
    .whatsapp-icon {
    margin: 0;
    width: 60px; /* Ajusta el tamaño de la imagen del icono */
    height: 60px;
    }