body {
  background-color: #e2e1e1;
}

.menu-opciones a,
.menu-dropdown a {
  text-decoration: none;
  color: #000;
}

.info-section img {
  width: 30%;
  height: auto;
}

.info-section table {
  width: 100%;
}

.footer-container {
  background-color: #f8f9fa;
  padding: 2rem 1rem;
}

.container-photo {
  background-image: url('4.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  width: 100%;
}

#pegar {
  margin-top: -50px;
}

.container-info {
  margin-top: -30px;
  padding-left: 30px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.popup-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
  width: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.popup-content p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#close-popup {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #efb810;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#close-popup:hover {
  background-color: #856c23;
}

.chatbot-container {
  position: relative;
}

.chatbot-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #53cf5f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.chatbot-button img {
  margin-left: 4px;
  width: 50px;
  height: 50px;
}

.modal {
  display: none;
  position: fixed;
  right: 60px;
  top: 320px; 
  z-index: 1001;
  width: 300px;
  height: 450px;
  max-height: 55vh;
  overflow: hidden;
  border: 1px solid #888;
  border-radius: 10px;
  background-color: white;
  transition: right 0.3s ease;
}
.modal-content {
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

#chatbot-container {
  flex: 0 1 auto;
  overflow-y: auto;
}

.close {
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  align-self: flex-end;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

.info-imagen1 {
  width: 60px;
  margin-bottom: 10px;
}

.info-imagen1 img {
  max-width: 100%;
  height: auto;
}

.message {
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
}

.bot-message {
  background-color: #f1f1f1;
}

.user-message {
  background-color: #d1e7dd;
  text-align: right;
}

.message:hover {
  cursor: pointer;
  border: 3px solid #0342b3;
}

.option {
  color: #0342b3;
  cursor: pointer;
  text-decoration: underline;
}

.form-a {
  color: #0342b3;
}
@media (min-width: 370px) and (max-width: 768px) {
  .modal{
    top: 280px

  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .modal{
    top: 280px

  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .modal{
    top: 280px

  }
}