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

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    background-color: #020611;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   1. NAVBAR HEADER
   ========================================== */
.navbar-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 80px;
    background: transparent;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 135px;
    width: auto;
    object-fit: contain;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #3b82f6;
    background: rgba(15, 30, 65, 0.7);
    border: none;
    box-shadow: none;
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.lang-selector:hover {
    color: #ffffff;
}

.globe-icon {
    font-size: 1rem;
}

.dropdown-arrow {
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-wallet {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 102, 255, 0.35);
    transition: all 0.25s ease;
}

.btn-wallet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.5);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ==========================================
   2. HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 580px;
    background-color: #020611;
    background-image: url('assets/hero.webp');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 60px 60px 0 80px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 620px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-title .highlight-blue {
    color: #0072ff;
    background: linear-gradient(135deg, #0088ff 0%, #0055ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 25px rgba(0, 114, 255, 0.5));
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.55);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.play-icon {
    font-size: 0.85rem;
    opacity: 0.9;
}

.hero-stats {
    position: absolute;
    bottom: 35px;
    left: 80px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 28px;
    z-index: 3;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 80, 220, 0.15);
    border: 1px solid rgba(0, 114, 255, 0.35);
    box-shadow: inset 0 0 10px rgba(0, 114, 255, 0.2), 0 0 12px rgba(0, 100, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: #64748b;
    margin-top: 2px;
    white-space: nowrap;
}

/* ==========================================
   COMMON SECTION STYLES (Alineadas con margen izquierdo de 80px)
   ========================================== */
.section-container {
    width: 100%;
    max-width: 100%;
    padding: 85px 80px;
}

.text-center {
    text-align: center;
}

.badge-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0088ff;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 30px;
}

.checklist {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0066ff;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

.card-banner {
    background: rgba(8, 18, 42, 0.65);
    border: 1px solid rgba(0, 102, 255, 0.22);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

/* ==========================================
   3. ¿QUÉ ES UBI NETWORK? (Imagen 'que es ubi network.png' como Background oficial)
   ========================================== */
.feature-banner {
    width: 100%;
    background-image: url('assets/que es ubi network.webp');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    padding: 75px 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-left {
    max-width: 580px;
    z-index: 2;
}

/* ==========================================
   4. NUESTRO ECOSISTEMA
   ========================================== */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.ecosystem-card {
    background: rgba(10, 22, 50, 0.55);
    border: 1px solid rgba(0, 114, 255, 0.18);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 136, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    background: rgba(12, 28, 64, 0.7);
}

.card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 100, 240, 0.12);
    border: 1px solid rgba(0, 120, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #60a5fa;
}

/* ==========================================
   5. BENEFICIOS PARA TODOS
   ========================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 80, 220, 0.12);
    border: 1px solid rgba(0, 120, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: inset 0 0 10px rgba(0, 114, 255, 0.15);
}

.benefit-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.45;
}

/* ==========================================
   6. UBI TOKEN
   ========================================== */
.token-banner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    align-items: stretch;
    padding: 60px 80px;
    gap: 40px;
    min-height: 480px;
}

.token-left {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.token-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-chart-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 45px rgba(0, 102, 255, 0.4));
}

.token-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.token-legend-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 360px;
    gap: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #e2e8f0;
    font-weight: 500;
}

.color-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 14px;
    flex-shrink: 0;
}

.dot-1 {
    background: #ffc400;
    box-shadow: 0 0 10px rgba(238, 255, 0, 0.616);
}

.dot-2 {
    background: #00b0ff;
    box-shadow: 0 0 10px rgba(0, 176, 255, 0.7);
}

.dot-3 {
    background: #199b08;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.dot-4 {
    background: #7c4dff;
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.7);
}

.dot-5 {
    background: #b388ff;
    box-shadow: 0 0 10px rgba(179, 136, 255, 0.7);
}

.legend-percent {
    font-weight: 800;
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.25rem;
}

.btn-whitepaper {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px 9px 18px;
    border: 1px solid rgba(0, 114, 255, 0.45);
    background: rgba(3, 10, 28, 0.75);
    border-radius: 8px;
    width: fit-content;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-whitepaper:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 136, 255, 0.65);
    transform: translateY(-2px);
}

.btn-doc-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.doc-icon {
    font-size: 1.05rem;
    margin-left: 4px;
}

/* ==========================================
   7. ROADMAP
   ========================================== */
.roadmap-wrapper {
    position: relative;
    margin-top: 45px;
    padding: 45px 25px 40px 25px;
    background: rgba(5, 15, 38, 0.45);
    border: 1px solid rgba(0, 102, 255, 0.18);
    border-radius: 20px;
}

.roadmap-line {
    position: absolute;
    top: 69px;
    left: 6%;
    width: 88%;
    height: 2px;
    background: rgba(0, 102, 255, 0.35);
    z-index: 1;
}

.roadmap-timeline {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.roadmap-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
    border: 2px solid #0088ff;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.roadmap-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.roadmap-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.roadmap-desc {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.35;
}

/* ==========================================
   8. ÚLTIMAS NOTICIAS
   ========================================== */
.section-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.link-see-all {
    font-size: 0.9rem;
    font-weight: 500;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-see-all:hover {
    color: #60a5fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    background: rgba(6, 16, 38, 0.75);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 136, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.news-left-col {
    position: relative;
    width: 140px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.news-img-box {
    width: 100%;
    height: 100px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
}

.news-card:hover .news-img {
    transform: scale(1.04);
}

.news-date {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
    padding: 8px 0 12px 14px;
    margin: 0;
}

.news-right-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 18px 12px 14px;
    flex: 1;
    width: 100%;
}

.news-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 6px;
    width: 100%;
}

.news-text {
    font-size: 0.82rem;
    color: #8292a6;
    line-height: 1.4;
    width: 100%;
}

.news-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 10px;
}

/* ==========================================
   9. SÉ PARTE DE LA REVOLUCIÓN (CTA BANNER)
   ========================================== */
.cta-banner {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 55px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 102, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.cta-left {
    max-width: 650px;
    z-index: 2;
}

.cta-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.4;
    white-space: nowrap;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 220px;
    z-index: 2;
}

.cta-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #0066ff;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    text-align: center;
    transition: all 0.25s ease;
}

.cta-btn-primary:hover {
    background: #0052cc;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.cta-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(4, 12, 32, 0.65);
    border: 1px solid rgba(0, 102, 255, 0.35);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
}

.cta-btn-secondary:hover {
    background: rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 136, 255, 0.6);
}

/* ==========================================
   10. FOOTER
   ========================================== */
.main-footer {
    width: 100%;
    background: #020716;
    border-top: 1px solid rgba(0, 102, 255, 0.15);
    padding: 45px 80px 25px 80px;
}

.footer-container {
    width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 20px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 135px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    margin-left: -10px;
}

.footer-brand-text {
    font-size: 0.78rem;
    color: #8292a6;
    line-height: 1.45;
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(12, 28, 56, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: rgba(0, 102, 255, 0.3);
    border-color: rgba(0, 136, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.8rem;
    color: #8292a6;
    text-decoration: none;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-bottom {
    padding-top: 16px;
    text-align: center;
    border-top: none;
}

.copyright-text {
    font-size: 0.78rem;
    color: #64748b;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1280px) {

    .navbar-header,
    .section-container,
    .main-footer {
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero-container {
        padding-left: 50px;
    }

    .hero-stats {
        left: 50px;
        gap: 20px;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {

    .navbar-header,
    .section-container,
    .main-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo-img {
        height: 135px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(2, 6, 17, 0.96);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        margin-left: 0;
    }

    .nav-menu-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 1.05rem;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-top: 10px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-wallet {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .lang-selector {
        justify-content: center;
    }

    .feature-banner,
    .token-banner,
    .cta-banner {
        flex-direction: column;
        padding: 40px 30px;
        gap: 35px;
    }

    .token-banner {
        grid-template-columns: 1fr;
    }

    .token-left,
    .token-center,
    .token-right {
        max-width: 100%;
        justify-content: center;
    }

    .roadmap-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        background-image: url('assets/hero-movil.png');
        background-position: center top;
        background-size: cover;
        padding-bottom: 50px;
    }

    .hero-container {
        padding: 175px 20px 30px 20px;
        justify-content: flex-start;
    }

    .hero-title {
        font-size: 2.3rem;
        margin-bottom: 18px;
    }

    .hero-description {
        color: #ffffff;
        font-weight: 500;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        margin-bottom: 35px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        width: 100%;
    }

    .stat-item {
        background: rgba(2, 6, 17, 0.7);
        backdrop-filter: blur(10px);
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ecosystem-grid,
    .benefits-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .roadmap-line {
        display: none;
    }

    .cta-banner {
        flex-direction: column;
        padding: 35px 20px;
        gap: 24px;
        text-align: center;
    }

    .cta-left {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .cta-title {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 12px;
        text-align: center;
    }

    .cta-title br {
        display: none;
    }

    .cta-desc {
        white-space: normal !important;
        font-size: 0.9rem;
        line-height: 1.45;
        text-align: center;
        color: #94a3b8;
    }

    .cta-right {
        width: 100%;
        max-width: 280px;
        gap: 12px;
        margin: 0 auto;
        align-items: stretch;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }

    .main-footer {
        padding: 40px 20px 20px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        height: 90px;
        margin-left: 0;
    }

    .footer-brand-text {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-heading {
        margin-bottom: 10px;
    }
}