/* Estilos Generales */
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(45deg, #d2b48c, #f4e3c0, #681714);
  background-size: 200% 200%;
  animation: backgroundAnimation 6s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes backgroundAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 248, 220, 0.95);
  padding: 20px;
  width: 90%;
  max-width: 350px;
  border-radius: 20px;
  margin: 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.logo {
  width: 100%;
  max-width: 170px;
  height: auto;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  padding: 12px 10px;
  background-color: #681714;
  color: #fff8dc;
  border: 2px solid #681714;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 25px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-button:hover {
  background-color: #8A1F1B;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  text-decoration: none;
  /* Sin subrayado */
}

.menu-button i {
  margin-right: 8px;
  font-size: 18px;
}

/* Logo de Instagram en la parte inferior */
.instagram-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #681714;
  border: 2px solid #681714;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  text-decoration: none;
  /* Sin subrayado */
}

.instagram-logo i {
  color: #fff8dc;
  font-size: 28px;
  transition: transform 0.3s;
}

.instagram-logo:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.instagram-logo:hover i {
  transform: scale(1.1);
}

@media only screen and (max-width: 600px) {
  .wrapper {
    width: 95%;
    margin: 0 5px;
    padding: 15px 10px;
  }

  .logo {
    max-width: 140px;
  }

  .menu-button {
    font-size: 14px;
    padding: 10px 0;
    text-decoration: none;
  }

  .instagram-logo {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .instagram-logo i {
    font-size: 24px;
  }
}

.select2-container--default .select2-selection--single {
  background-color: #681714;
  border: 2px solid #8b4513;
  border-radius: 25px;
  padding: 12px;
  height: auto;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  color: #fff8dc;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff8dc !important;
  line-height: 1.5;
  text-align: center;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #fff8dc;
  opacity: 0.8;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.select2-container--default.select2-container--open .select2-selection--single {
  background-color: #8b4513;
}

.select2-dropdown {
  border-radius: 10px;
  font-family: "Arial", sans-serif;
}

.select2-results__option--highlighted {
  background-color: #681714 !important;
  color: #fff8dc !important;
}

.select2-results__option {
  text-align: left;
}

.select2-results__message {
  color: #681714;
  font-weight: bold;
  text-align: center;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #c98d65 !important;
  border: 2px solid #681714 !important;
  border-radius: 25px !important;
  color: #fff8dc !important;
  cursor: not-allowed;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.select2-container--default.select2-container--disabled .select2-selection__rendered {
  color: #fff8dc !important;
  font-weight: bold;
  text-align: center;
}