html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Chat estilo WhatsApp */
.chat-box {
    max-height: 60vh;
    overflow-y: auto;
    padding: 15px;
    background-color: #f4f6f9;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.bubble {
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 20px;
    max-width: 75%;
    display: inline-block;
    word-wrap: break-word;
}

.user-msg {
    background-color: #dcf8c6;
    align-self: flex-end;
    text-align: right;
    margin-left: auto;
}

.bot-msg {
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-right: auto;
}

.chat-container {
    display: flex;
    flex-direction: column;
}


.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

    .privacy-policy section {
        margin-bottom: 30px;
    }

    .privacy-policy h2 {
        color: #333;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }