body {
  font-family: Montserrat, sans-serif;
  color: var(--color-text);
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

::-webkit-resizer {
  display: none;
}



*,
::after,
::before {
  box-sizing: border-box;
}
* {
  margin: 0;
}


.install-buttons {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.install-buttons:not(.is-active) {
  display: none;
}
.install-buttons-wrapper {
  animation: 0.5s zoomInBounce;
  position: relative;
  border-radius: 1rem;
  max-width: 600px;
  text-align: center;
  padding: 2rem;
  color: #fff;
  background-color: #1c1c1c;
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.install-buttons-wrapper h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.install-buttons-wrapper p {
  margin-bottom: 1rem;
}
.close-install {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  padding: 0.5rem;
}
/* styles.css */

/* Botón de chat flotante */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #6d09e5;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adaptación para dispositivos móviles */
@media (max-width: 600px) {
    .chat-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Estilos para el modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1; /* Sitúa el modal sobre otros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0); /* Color de fondo */
    background-color: rgba(0,0,0,0.4); /* Fondo con opacidad */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilos para el iframe del chat */
.modal iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}
