* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    /* Fondo oscuro */
    color: #ffffff;
    /* Color de texto blanco */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.hero-section,
.hero-section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 10%;
    min-height: max-content;
}

.title-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.title-container h1 {
    margin: 0;
    padding: 0;
}

.hero-section {
    background-color: #141318;
    margin-top: 170px;
}

.hero-section-2 {
    background-color: black;
    flex-direction: column;
}

.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 40px;
    width: 100%;
}

.custom-table {
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;

    /* 🎨 fondo degradado */
    background: linear-gradient(90deg, #0a0a0a, #1a1a1a, #0a0a0a);
}

.custom-table thead th {
    padding: 14px;
    font-weight: bold;
    color: #f0a020;
    /* dorado/anaranjado */
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.custom-table td {
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
}

.hero-content {
    max-width: 500px;
}

.roadmap-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 40px;
    gap: 40px;
    width: 100%;
    position: relative;
}

.roadmap-img {
    height: 140%;
    position: absolute;
    bottom: -60px;
    left: -200px;
    z-index: 1;
}

/* Pines dorados posicionados sobre el camino */
.pin {
    position: absolute;
    width: 25px;
    /* ajusta al tamaño real */
    height: auto;
}

/* Ejemplo de posiciones (ajustar manualmente según imagen) */
.pin1 {
    top: 50px;
    left: -30px;
}

.pin2 {
    top: 100px;
    left: -30px;
}

.pin3 {
    top: 150px;
    left: -30px;
}

.pin4 {
    top: 200px;
    left: -30px;
}

/* Columna derecha con la tabla */
.roadmap-right {
    position: relative;
    flex: 1;
    width: 100%;
    z-index: 2;
    min-height: 300px;
}

.hero-content p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    margin-top: 20px;
}

.hero-btn {
    background: rgba(26, 26, 31, 0.8);
    color: #e2b36c;
    border: 2px solid #e2b36c;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    box-shadow:
        0 4px 20px rgba(226, 179, 108, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 rgba(0, 0, 0, 0.2) inset;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg) translateZ(0px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    background: rgba(226, 179, 108, 0.15);
    transform: perspective(1000px) rotateX(-5deg) translateZ(20px) translateY(-8px);
    box-shadow:
        0 15px 35px rgba(226, 179, 108, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    border-color: #f0c674;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-btn:active {
    transform: perspective(1000px) rotateX(-2deg) translateZ(10px) translateY(-4px) scale(0.98);
    box-shadow:
        0 8px 20px rgba(226, 179, 108, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-btn:focus {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(226, 179, 108, 0.4),
        0 15px 35px rgba(226, 179, 108, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
    background: rgba(226, 179, 108, 0.15);
}

.content-right {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.content-right img {
    position: relative;
    width: 400px;
    z-index: 2;
    transform: perspective(1200px) rotateX(5deg) rotateY(-15deg) translateZ(50px);
    animation: phoneFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 10px 20px rgba(226, 179, 108, 0.2));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.content-right img:hover {
    transform: perspective(1200px) rotateX(8deg) rotateY(-12deg) translateZ(80px) scale(1.05);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5)) drop-shadow(0 15px 30px rgba(226, 179, 108, 0.3));
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: perspective(1200px) rotateX(5deg) rotateY(-15deg) translateZ(50px) translateY(0px);
    }

    50% {
        transform: perspective(1200px) rotateX(5deg) rotateY(-15deg) translateZ(50px) translateY(-15px);
    }
}

/* Contenedor de la órbita */
.orbit-container {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Cada moneda es un circulito verde */
.coin {
    position: absolute;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 30% 30%, #4ade80, #15c584, #0f9f5f);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 -250px;
    animation: spin 8s linear infinite;
    box-shadow:
        0 4px 15px rgba(21, 197, 132, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
}

/* Cada moneda con un ángulo distinto */
.coin-1 {
    transform: rotate(0deg) translateY(-230px);
    animation-delay: 0s;
}

.coin-2 {
    transform: rotate(90deg) translateY(-230px);
    animation-delay: -2s;
}

.coin-3 {
    transform: rotate(180deg) translateY(-230px);
    animation-delay: -4s;
}

.coin-4 {
    transform: rotate(270deg) translateY(-230px);
    animation-delay: -6s;
}

@keyframes spin {
    from {
        transform: rotate(0deg) translateY(-230px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateY(-230px) rotate(-360deg);
    }
}

@keyframes spin-mobile {
    from {
        transform: rotate(0deg) translateY(-180px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateY(-180px) rotate(-360deg);
    }
}

.countdown-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background-color: #000;
    height: 100px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    min-width: 95px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.time-box span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.time-box small {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 500;
}

/* línea arriba como en tu ejemplo */
.time-box::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #db9b3b, #a88859);
}

#language-switcher {
    background: rgba(26, 26, 31, 0.8);
    color: #e2b36c;
    border: 2px solid #e2b36c;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 120px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(226, 179, 108, 0.15);
    text-align-last: center;
    direction: ltr;
}

#language-switcher:hover {
    background: rgba(226, 179, 108, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(226, 179, 108, 0.25);
    border-color: #f0c674;
}

#language-switcher:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(226, 179, 108, 0.3), 0 6px 25px rgba(226, 179, 108, 0.2);
    background: rgba(226, 179, 108, 0.15);
}

#language-switcher:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(226, 179, 108, 0.3);
}

/* Flecha personalizada para el select */
#language-switcher {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2b36c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Estilos profesionales para el dropdown menu */
#language-switcher option {
    background: #1a1a1f;
    color: #e2b36c;
    padding: 10px 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    border: none;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: left;
}

#language-switcher option:hover,
#language-switcher option:focus {
    background: rgba(226, 179, 108, 0.15);
    color: #fff;
}

#language-switcher option:checked {
    background: rgba(226, 179, 108, 0.25);
    color: #fff;
    font-weight: 600;
}

/* Estilos avanzados para navegadores que lo soportan */
@supports (backdrop-filter: blur(10px)) {
    #language-switcher {
        position: relative;
    }

    /* Crear un dropdown personalizado más profesional */
    .custom-dropdown {
        position: relative;
        display: inline-block;
    }

    .custom-dropdown-content {
        display: none;
        position: absolute;
        background: rgba(26, 26, 31, 0.95);
        backdrop-filter: blur(15px);
        border: 2px solid #e2b36c;
        border-radius: 15px;
        box-shadow: 0 8px 32px rgba(226, 179, 108, 0.2);
        z-index: 1000;
        min-width: 120px;
        top: 100%;
        right: 0;
        margin-top: 5px;
        overflow: hidden;
    }

    .custom-dropdown-item {
        color: #e2b36c;
        padding: 10px 16px;
        text-decoration: none;
        display: block;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
        font-weight: 400;
        font-size: 0.8rem;
        transition: all 0.2s ease;
        cursor: pointer;
        text-align: left;
    }

    .custom-dropdown-item:hover {
        background: rgba(226, 179, 108, 0.15);
        color: #fff;
        transform: translateX(5px);
    }

    .custom-dropdown-item.active {
        background: rgba(226, 179, 108, 0.25);
        color: #fff;
        font-weight: 600;
    }
}


header {
    background-color: #191a1f;
    padding: 20px 10%;
    border-bottom: 2px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 100px;
    left: 0;
    z-index: 1000;
    right: 0;
}

header img {
    width: 200px;
    height: auto;
}

.center-text {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.separator {
    width: 100%;
    height: 2px;
    background-color: rgb(141, 139, 139);
    margin: 50px auto;
    border-radius: 1px;
}

.features-section {
    width: 100%;
    padding: 60px 0;
    /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    flex-wrap: wrap;
}

.slider {
    width: 600px;
    /* ajusta al tamaño de tu mockup */
    height: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.slides {
    display: flex;
    width: 100%;
    /* 3 imágenes */
    height: 100%;
    animation: autoplay 6s infinite;
    /* 3 imágenes * 2s = 6s */
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
}

.gradient {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.08) 30%,
            /* centro muy suave */
            rgba(255, 255, 255, 0.04) 50%,
            /* transición intermedia */
            rgba(0, 0, 0, 1) 80%
            /* negro en los bordes */
        );
    position: absolute;
    bottom: -200px;
    left: 31%;
    right: 0;
    filter: blur(40px);
    /* 🔥 extra difuminado */
}

@keyframes autoplay {
    0% {
        transform: translateX(0%);
    }

    33% {
        transform: translateX(0%);
    }

    38% {
        transform: translateX(-100%);
    }

    71% {
        transform: translateX(-100%);
    }

    76% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

.features-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 50px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.features-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gradient-border {
    display: inline-block;
    padding: 12px 24px;
    width: 100%;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
    border-radius: 12px;
    background-image: linear-gradient(90deg, rgb(19, 19, 19), rgb(44, 44, 44));

    /* Truco para el borde en degrade */
    position: relative;
}

.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* Grosor del borde */
    border-radius: 12px;

    background: linear-gradient(90deg, rgb(141, 139, 139), rgb(31, 31, 31));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    /* El borde no interfiere con clics */
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(44, 32, 18, 0.85);
    border-radius: 16px;
    border: 2px solid #e2b36c;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(226, 179, 108, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    padding: 32px 40px 24px 40px;
    color: #fff;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('./img/Landing-page2_06.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 420px;
    transform: perspective(1000px) rotateX(0deg) translateZ(0px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: perspective(1000px) rotateX(-5deg) translateZ(30px) translateY(-10px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(226, 179, 108, 0.3),
        0 2px 0 rgba(255, 255, 255, 0.15) inset;
    border-color: #f0c674;
}

.feature-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 18px;
    margin-top: -80px;
}

.feature-card h3 {
    color: #e2b36c;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.feature-card p {
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    margin: 0;
    text-align: center;
    padding: 0 30px;
}

.form-section {
    padding: 40px 0 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whitelist-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(26, 26, 31, 0.6);
    border: 2px solid rgba(226, 179, 108, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(226, 179, 108, 0.1);
}

.whitelist-form input[type="text"],
.whitelist-form input[type="email"],
.whitelist-form input[type="tel"],
.whitelist-form select {
    background: rgba(35, 35, 35, 0.8);
    color: #fff;
    border: 2px solid rgba(226, 179, 108, 0.3);
    border-radius: 15px;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whitelist-form input[type="text"]:focus,
.whitelist-form input[type="email"]:focus,
.whitelist-form input[type="tel"]:focus,
.whitelist-form select:focus {
    outline: none;
    border-color: #e2b36c;
    box-shadow: 0 0 0 3px rgba(226, 179, 108, 0.2);
    background: rgba(35, 35, 35, 1);
}

.whitelist-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2b36c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.whitelist-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #fff;
    margin-top: 5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 4px;
    accent-color: #e2b36c;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox a {
    color: #e2b36c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.form-checkbox a:hover {
    color: #f0c674;
    text-decoration: underline;
}

.form-btn {
    background: rgba(26, 26, 31, 0.8);
    color: #e2b36c;
    border: 2px solid #e2b36c;
    border-radius: 30px;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(226, 179, 108, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-btn:hover {
    background: rgba(226, 179, 108, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(226, 179, 108, 0.25);
    border-color: #f0c674;
}

.form-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(226, 179, 108, 0.3);
}

.form-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(226, 179, 108, 0.3), 0 6px 25px rgba(226, 179, 108, 0.2);
    background: rgba(226, 179, 108, 0.15);
}

.form-footer {
    text-align: center;
    margin-top: 32px;
}


.footer-logo {
    width: 140px;
    margin-bottom: 10px;
}

.form-footer p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}

.title {
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: transparent;
    -webkit-text-stroke: 2px #e2b36c;
    text-stroke: 2px #e2b36c;
    line-height: 0.95;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    margin-top: -10px;
    display: inline-block;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg) translateZ(0px);
    text-shadow:
        0 1px 0 #d4a860,
        0 2px 0 #c49750,
        0 3px 0 #b48640,
        0 4px 0 #a47530,
        0 5px 5px rgba(0, 0, 0, 0.3),
        0 10px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Efecto de iluminación dinámica en los bordes */
.title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
    color: transparent;
    -webkit-text-stroke: 3px transparent;
    text-stroke: 3px transparent;
    background: linear-gradient(90deg,
            transparent 35%,
            rgba(240, 198, 116, 0.08) 45%,
            rgba(255, 215, 0, 0.12) 50%,
            rgba(240, 198, 116, 0.08) 55%,
            transparent 65%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;

}

/* Capa base con color sólido */
.title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
    color: #e2b36c;
    -webkit-text-stroke: 1px #d4a860;
    text-stroke: 1px #d4a860;
    pointer-events: none;
    z-index: 1;
}

/* Animación del efecto luminoso */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

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

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

/* Efecto adicional para títulos principales (hero) */
.hero-content .title {
    position: relative;
    filter: drop-shadow(0 0 4px rgba(226, 179, 108, 0.1));
    transform: perspective(1200px) rotateX(5deg) translateZ(20px);
    animation: floatTitle 6s ease-in-out infinite;
}

.hero-content .title:hover {
    transform: perspective(1200px) rotateX(8deg) translateZ(40px) scale(1.02);
}

@keyframes floatTitle {

    0%,
    100% {
        transform: perspective(1200px) rotateX(5deg) translateZ(20px) translateY(0px);
    }

    50% {
        transform: perspective(1200px) rotateX(5deg) translateZ(20px) translateY(-5px);
    }
}

.hero-content .title::before {
    animation: shimmer 7s ease-in-out infinite;
    background: linear-gradient(90deg,
            transparent 30%,
            rgba(255, 215, 0, 0.06) 40%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 215, 0, 0.06) 60%,
            transparent 70%);
    background-size: 300% 100%;
}

.ep-iFrameContainer {
    width: 100% !important;
    border-radius: 20px !important;
    border: 2px solid #e2b36c !important;
    box-shadow: 0 4px 20px rgba(226, 179, 108, 0.15) !important;
    backdrop-filter: blur(10px);
    overflow: hidden !important;
}

/* Intentar estilizar elementos del iframe (funciona solo si mismo dominio) */
.ep-iFrameContainer iframe {
    border-radius: 18px;
}

/* Estilos adicionales para el contenedor del formulario */
.hero-section-2 iframe {
    margin: 20px 0;
    min-height: 600px;
}

.modal {
    display: none;
    visibility: hidden;
    /* oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    /* negro semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenido del modal */
.modal-content {
    background-color: #1a1a1a;
    /* gris oscuro */
    color: #eee;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Título */
.modal-content h2 {
    color: rgb(226, 179, 108);
    margin-bottom: 20px;
}

/* Botón Telegram */
.telegram-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: rgb(226, 179, 108);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.telegram-btn:hover {
    background-color: #d0a95f;
}

/* Botón cerrar */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #eee;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: rgb(226, 179, 108);
}

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

    .feature-card {
        padding: 24px 32px 16px 32px;
    }

    .content-right {
        margin-top: 80px;
    }

    .content-right img {
        max-width: 100%;
        height: auto;
    }

    .orbit-container {
        width: 350px;
        height: 350px;
    }

    .hero-section,
    .hero-section-2 {
        flex-direction: column;
    }

    .feature-icon {
        width: 120px;
        height: 120px;
    }

    .form-section {
        padding: 20px 0 0 0;
        width: 100%;
    }

    .whitelist-form {
        max-width: 100%;
    }

    .form-btn {
        font-size: 1rem;
    }

    .footer-logo {
        width: 120px;
    }

    .coin {
        animation: spin-mobile 8s linear infinite;
    }

    .coin-1 {
        animation-delay: 0s;
    }

    .coin-2 {
        animation-delay: -2s;
    }

    .coin-3 {
        animation-delay: -4s;
    }

    .coin-4 {
        animation-delay: -6s;
    }

    .roadmap-container {
        flex-direction: column;
    }

    .roadmap-img {
        height: 38%;
        top: 0px;
        left: -80px;
    }

    .features-highlights {
        flex-direction: column;
    }

    .slider {
        width: 100%;
        height: auto;
    }

    .gradient {
        left: 25px;
        width: 350px;
        height: 350px;
        bottom: -80px;
    }

    header img {
        width: 150px;
        height: auto;
    }

}