/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #121212;
    color: #fff;
}

/* Menu Bar */
.menu-bar {
    width: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 15px;
}

.menu-bar .logo img {
    max-width: 220px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    color: white;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    display: flex;
    justify-content: flex-start; /* Align to the left */
    align-items: center;
    height: 100%;
    text-align: left; /* Align text to the left */
    padding-left: 50px; /* Offset to move the content to the left */
}

.cta-box {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 30px;
    border-radius: 10px;
    width: 70%;
    max-width: 600px;
    margin-left: 50px; /* Move the box to the left */
    text-align: left; /* Align the text to the left */
}

.cta-box .title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-box .subtitle {
    font-size: 18px;
    color: #8858ed;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #fff;
    color: #8858ed;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #8858ed;
    color: #fff
}

/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
    background-color: #1a1a1a;
    margin-bottom: 0px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #8858ed;
    margin-bottom: 15px;
}

.section-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}


/* ------------------------------ ABOUT -----------------------------------*/
.about {
    background-color: #000;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: #000;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.about .section-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #a970ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about .section-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #ddd;
    text-align: justify;
}


/*-------------------------------------------------------------------------------------------------------*/
.image-slider {
    width: 100%; /* Cambiado de 100vw a 100% para evitar desbordamiento */
    overflow: hidden;
    position: relative;
    background-color: #000;
    height: 60px;
    display: flex;
    align-items: center;
}

.slider {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.slider .slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 20s linear infinite;
    /* Eliminamos la regla fija de ancho ya que el JS la actualizará dinámicamente */
    /* width: calc(200px * 20); */
}

.slider .slide {
    width: 200px;
    flex-shrink: 0;
}

.slider .slide img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-200px * 7));
        transform: translateX(calc(-200px * 7));
    }
}



/*-------------------------------------------------------------------------------------------------------*/
/* Contenedor exterior con fondo negro */
.mystery-swap-container {
    background-color: #000;
    padding: 40px 20px;
    display: flex;
    justify-content: center; /* Centra el recuadro horizontalmente */
    align-items: center;
    min-height: 200px;       /* Altura mínima para el contenedor */
  }
  
  /* Recuadro interior con fondo púrpura */
  .mystery-swap-box {
    background-color: #8858ed;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    max-width: 600px;
    width: 100%;
  }
  
  /* Línea 1: Título */
  .swap-line1 {
    font-size: 65px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  /* Línea 2: Descripción */
  .swap-line2 {
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 20px;
  }
  
  /* Línea 3: Llamado a la acción */
  .swap-line3 {
    font-size: 16px;
    margin-bottom: 25px;
    margin-top: 20px;
  }
  
  /* Botón */
  .swap-button {
    background-color: #fff;
    color: #8858ed;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .swap-button:hover {
    background-color: #5f1eec;
    color: #fff;
  }
  
  
  




/*-------------------------------------------------------------------------------------------------------*/
/* Join Community Section */
.join {
    position: relative;
    text-align: center;
    background-color: #000; /* Color de respaldo */
    color: white;
    min-height: 70vh; /* Reducimos la altura */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Evita cualquier desbordamiento */
}

/* Imagen de fondo con efecto de zoom al hacer scroll */
.join-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* La imagen cubre toda la sección */
    z-index: 0; /* Se ajusta para que quede detrás del contenido sin ocultarse */
    display: block;
    opacity: 1; /* Asegura que la imagen sea visible */
    transition: transform 0.5s ease-out; /* Suaviza el efecto */
}

/* Efecto de zoom en el fondo cuando se hace scroll */
.join.scrolled .join-bg-img {
    transform: scale(1.8); /* Aumenta el tamaño al 110% */
}

/* Capa oscura sobre la imagen de fondo */
.join::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Opacidad al 70% para oscurecer más la imagen */
    z-index: 1; /* Se coloca sobre la imagen pero debajo del contenido */
}

/* Join Content */
.join-content {
    position: relative;
    max-width: 600px;
    margin: auto;
    z-index: 2; /* Mantiene el contenido sobre la imagen */
    /*background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente opcional */
    padding: 40px;
    border-radius: 10px;
}

/* Aumentar tamaño del título h2 */
.join-content h2 {
    font-size: 60px; /* Aumentamos el tamaño */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}



/*-------------------------------------------------------------------------------------------------------*/
/* Steps Section */
.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: #000; /* Fondo negro */
    padding: 80px 20px;
    width: 100%;
}

.step-number-right {
    margin-left: auto; /* Empuja el número hacia la derecha */
    text-align: right; /* Asegura alineación del texto */
    display: block; /* Asegura que el elemento ocupe su propia línea */
}



/* Contenedor de cada paso */
.step {
    display: flex;
    flex-direction: column; /* Ahora los elementos se apilan verticalmente */
    align-items: flex-start;
    max-width: 600px; /* Ajustamos el ancho */
    margin-bottom: 60px;
    width: 100%;
    padding: 0 20px; /* Evita que se peguen a los bordes */
}

/* Números grandes */
.step-number {
    font-size: 110px; /* Tamaño grande */
    font-weight: 700;
    color: #8858ed; /* Color púrpura */
    line-height: 1;
}

/* Contenido del paso */
.step-content {
    flex: 1;
}

/* Título del paso */
.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

/* Texto del paso */
.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Desalineación de pasos */
.step:nth-child(odd) {
    align-self: center;
    text-align: left;
}

.step:nth-child(even) {
    align-self: center;
    text-align: right;
}

/*-------------------------------------------------------------------------------------------------------*/
/* Investors Section */
.investors {
    position: relative;
    text-align: center;
    background-color: #000;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0;
}

/* Imagen de fondo */
.investors-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

/* Capa oscura sobre la imagen de fondo */
.investors-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Contenedor de contenido */
.investors-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    background: none;
    padding: 0 30px;
    text-align: center;
}

/* Título general */
.investors-content h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.investors-content h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Texto general */
.investors-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Párrafo específico de la venta privada */
.investors-sale-text {
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    font-size: 24px !important;
    line-height: 1.6;
    margin: 20px auto 30px auto;
    width: 90vw;
    max-width: 1000px;
    display: block;
}

.highlight-brand {
    color: #ffd900 !important; /* o el color que desees */
    font-weight: 600;
}


/* Formulario */
.investors-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: auto;
}

/* Input + Button Group */
.input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}

/* Input */
.investors-form input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 2px solid white;
    background: transparent;
    color: white;
    outline: none;
    text-align: center;
    border-radius: 25px 25px 0 0;
}

.investors-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Botón Submit */
.investors-form .cta-button {
    width: 100%;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 0 25px 25px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    border-top: 2px solid white;
}

.investors-form .cta-button:hover {
    background-color: #8858ed;
}



/*-------------------------------------------------------------------------------------------------------*/
.faq {
    background-color: #000;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: #000;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    text-align: left;
}

.faq .section-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #a970ff;
    text-align: center;
    text-transform: uppercase;
    word-wrap: break-word;
    line-height: 1.2;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .faq .section-title {
        font-size: 3.0rem;
    }
}

@media (max-width: 480px) {
    .faq .section-title {
        font-size: 2.8rem;
    }
}


.faq details {
    margin-bottom: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
}

.faq summary {
    font-weight: 600;
    font-size: 1.30rem;
    color: #fff;
    outline: none;
}

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

.faq p {
    margin-top: 10px;
    font-size: 1.20rem;
    color: #ccc;
    line-height: 1.6;
}


/*-------------------------------------------------------------------------------------------------------*/
/* Payment Methods and Logo Separator */
.payment-methods-separator {
    background-color: #000;
    color: white;
    /*padding: 150px 30px;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content: center;
    width: 100%;
    min-height: 100px;
    padding-bottom: 100px;
}

/* Logo centrado */
.logo-center {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-center img {
    max-width: 180px;
    height: auto;
}

/* Contenedor de Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding-left: 5px;
}


/* Línea separadora blanca */
.separator-line {
    width: 98%; /* Ajuste de ancho de la línea */
    height: 1px;
    background-color: white;
    margin: 5px auto; /* Centrado y con margen */
}

/* Texto "Payment Methods" */
.payment-methods p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: white;
    display: block;
}

/* Íconos de Métodos de Pago */
.payment-icons {
    display: flex;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
    padding-left: 3px;
}
.payment-icons img {
    height: 20px;
    width: auto;
    display: block;
}

/*-------------------------------------------------------------------------------------------------------*/
/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #121212;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9999;
}

.footer p {
    font-size: 14px;
}

/* Social Icons */
.social-icons {
    margin-bottom: 10px;
}

.social-btn {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: white;
    transition: color 0.3s ease;
}

.social-btn:hover {
    color: #8858ed; /* Cambia a púrpura en hover */
}

/* Responsive */
@media screen and (max-width: 768px) {
    .cta-box .title {
        font-size: 36px;
    }
    .cta-box .subtitle {
        font-size: 16px;
    }
    .cta-button {
        padding: 12px 25px;
    }
}


/* Responsive generalizado */
@media screen and (max-width: 1024px) {
    /* Ajustes para tablets */
    body { font-size: 0.9rem; }
    .cta-box { width: 90%; margin-left: auto; margin-right: auto; }
    /* Otros ajustes generales pueden incluir márgenes y paddings */
  }
  
  @media screen and (max-width: 768px) {
    /* Ajustes para móviles medianos */
    body { font-size: 0.8rem; }
    .cta-box { width: 95%; padding: 20px; }
    /* Centrar contenedores */
    .menu-bar, .section, .investors, .mystery-swap-container { padding: 20px; }
    .mystery-swap-box, .investors-content, .cta-box { margin: 0 auto; }
  }
  
  @media screen and (max-width: 480px) {
    /* Ajustes para móviles pequeños */
    body { font-size: 0.75rem; }
    .cta-box { width: 100%; padding: 15px; }
    .menu-bar { padding: 10px; }
    .section { padding: 40px 10px; }
    .investors, .mystery-swap-container { padding: 20px 10px; }
    /* Puedes ajustar tamaños de fuente específicos para títulos y textos */
    .section-title { font-size: 28px; }
    .section-text { font-size: 16px; }
  }
  
  @media screen and (max-width: 1024px) {
    .cta-box {
      width: 90%;
      margin: 0 auto;  /* Centra el cuadro */
      padding: 20px;   /* Ajusta el padding si es necesario */
    }
  }
  
  @media screen and (max-width: 768px) {
    .cta-box {
      width: 95%;
      margin: 0 auto;
      padding: 15px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .cta-box {
      width: 100%;
      margin: 0 auto;
      padding: 10px;
    }
  }
  