@talwind components;
@talwind utilities;
body {
  background-color: #000;
}

.brad .text {
  fill: white;
}
.brad .symbol {
  fill: white;
}

.test {
  @apply text-3xl text-space font-bold;
}

.join-btn {
  padding: 6px 16px;
  color: #0086E5;
  border-radius: 25px;
  border: 2px solid #0086E5;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.join-btn:hover {
  background-color: #0086E5;
  color: #fff !important;
}
.join-btn.alter {
  color: #fff;
  border: 2px solid #fff;
}
.join-btn.alter:hover {
  background-color: #fff;
  color: #01122d !important;
}

/* Botón de usuarios */
.user-btn {
  padding: 6px 16px;
  color: #7812EE;
  border-radius: 25px;
  border: 2px solid #7812EE;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.user-btn:hover {
  background-color: #7812EE;
  color: #fff !important;
}
.user-btn.alter {
  color: #fff;
  border: 2px solid #fff;
  margin-right: 10px;
}
.user-btn.alter:hover {
  background-color: #fff;
  color: #7812EE !important;
}

/* Contenedor de botones */
.buttons-container {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  margin-top: -10px;
}

.b24-widget-button-position-bottom-right {
  right: 0px !important;
  bottom: 10px !important;
}

/* The Modal (background) */
.modal {
  display: none;
  position: absolute;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 850px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/* Quotes */
.quote-end {
  transform: rotate(180deg);
  margin-top: -40px;
  float: right;
}

/*# sourceMappingURL=main.css.map */

/* titulos - parrafos*/
.item2 {
  margin-bottom: 20px;
}

.item2 h2 {
  margin-bottom: 20px; /* Ajusta según tus necesidades */
}

.item2 p {
  margin-bottom: 60px; /* Ajusta según tus necesidades */
}

/* Estilos adicionales para centrado perfecto de botones */
.navigation ul li:last-child {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Mejorar el espaciado en móviles */
#join-btn-container .buttons-container {
  justify-content: center;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 993px) {
  .buttons-container {
    gap: 8px;
  }
  
  .join-btn, .user-btn {
    padding: 5px 14px;
    font-size: 13px;
  }
}
