html,
body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

li {
  text-align: start;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #c4d4d3;
  color: #333;
}

header {
  display: flex;
  align-items: center;
  background-color: #00c6a9;
  padding: 10px;
  color: white;
  height: 30px;
  cursor: pointer;
}

header img {
  height: 30px;
  margin-right: 10px;
}

p,li,h3 {
  padding-left: 40px;
  padding-right: 40px;
}

.chat-container {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  height: 100dvh;
}


.bubble {
  max-width: 75%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  line-height: 1.4;
}

.bot {
  background-color: #d2f4f1;
  align-self: flex-start;
}

.legal {
  background-color: #d2f4f1;
  /* font-size: 0.9em; */
}


.input-container {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-top: 1px solid #ccc;
  background-color: white;
  flex-shrink: 0;
}

.black-rectangle {
  height: 75px;
  background-color: black
}

.send-button {
  background-color: #00c6a9;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
}

.info-button {
  position: absolute;
  top: 7px;
  right: 15px;
  background-color: #00c6a9;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 30px;
  cursor: pointer;
}

.modal {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
}

.accept-button {
  background-color: #00c6a9;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

.close-modal-button {
  color: black;
  background-color: white;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  padding: 5px;
  cursor: pointer;
  position: fixed;
  margin-right: 6px;
}

.modal-scroll {
  overflow-y: auto;
  max-height: 90vh;
  width: 95%;
  border-radius: 10px;
  padding: 20px;
}

.full-section {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.full-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
}

.card-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-around;
}

@media (min-width: 768px) {
  .card-container {
    flex-direction: row;
    justify-content: center;
  }
}


.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f2f2f2;
  padding: 15px;
  border-radius: 10px;

}

@media (min-width: 768px) {
  .profile-card {
    width: 50%
  }
}

.profile-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

#contact-form input,
#contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

#contact-form button {
  background-color: #00c6a9;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.modal-link {
  color: #0077cc;
  /* Azul profesional */
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease-in-out, text-shadow 0.2s ease-in-out;
}

.modal-link:hover {
  color: #005fa3;
  text-shadow: 0 0 2px rgba(0, 119, 204, 0.4);
}

.modal-link:focus {
  outline: 2px solid #005fa3;
  outline-offset: 2px;
  border-radius: 2px;
}

#faq {
  padding: 20px;
  background: #fff;
}

#faq h2 {
  margin: 0 0 10px;
}

.faq-item {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #fafafa;
  margin: 8px 0;
  padding: 0 12px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item h3 {
  display: inline;
  font-size: 1rem;
  margin: 0;
}

.faq-content {
  padding: 0 0 14px 0;
}

.faq-content p,
.faq-content ol {
  margin: 8px 0;
}