/* ==================== BASE ==================== */
:root {
    --aurora-green: #00a651;
    --aurora-green-light: rgba(0, 166, 81, 0.1);
    --aurora-green-mid: rgba(0, 166, 81, 0.3);
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #111111;
    --text-main: #111111;
    --text-muted: #666666;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
    --navbar-h: 90px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg-white);
    overflow-x: hidden;
}

.green { color: var(--aurora-green); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--navbar-h);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    height: 70px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 64px; width: auto; transition: var(--transition); }
.navbar.scrolled .logo-img { height: 52px; }

@media (max-width: 768px) {
    .logo-img { height: 70px; }
    .navbar.scrolled .logo-img { height: 55px; }
}
@media (max-width: 480px) {
    .logo-img { height: 56px; }
    .navbar.scrolled .logo-img { height: 44px; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
    color: var(--aurora-green);
    background: var(--aurora-green-light);
}

.nav-cta {
    background: var(--aurora-green) !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 0.6rem 1.4rem;
}

.nav-cta:hover { opacity: 0.9; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== SHARED SECTION STYLES ==================== */
.page-section {
    min-height: 100vh;
    padding: calc(var(--navbar-h) + 3rem) 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
}

.section-header h1,
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.section-header.light h1,
.section-header.light h2 { color: var(--bg-white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.7); }

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1.5px;
}

/* Animations */
.fade-up { animation: fadeUp 0.8s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--aurora-green);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--aurora-green);
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    border: 2px solid var(--aurora-green);
    transition: var(--transition);
}

.btn-secondary:hover { background: var(--aurora-green-light); }

/* ==================== SECTION 1: HERO ==================== */
.hero-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.hero-bg-shapes {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--aurora-green);
}

.shape-1 {
    width: 600px; height: 600px;
    top: -200px; right: -100px;
}

.shape-2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -100px;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--aurora-green);
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    background: var(--aurora-green-light);
    color: var(--aurora-green);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-url {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.hero-logo-big {
    height: 180px;
    width: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-coins {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.coin {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.coin-btc { background: #f7931a; }
.coin-eth { background: #627eea; }
.coin-sol { background: #9945ff; }
.coin-ada { background: #0d1e2c; }

.hero-tagline {
    background: var(--bg-dark);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    width: 100%;
    letter-spacing: 0.5px;
}

/* ==================== SECTION 2: RENDIMIENTOS ==================== */
.rendimientos-section {
    background: var(--bg-light);
    gap: 2rem;
}

.rend-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

.rend-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.card-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}

.big-green-val {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--aurora-green);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.card-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.mini-chart {
    height: 60px;
    margin-bottom: 1rem;
}
.mini-chart svg { width: 100%; height: 100%; }

.time-tabs {
    display: flex;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.time-tabs span {
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.time-tabs span.active {
    background: var(--aurora-green-light);
    color: var(--aurora-green);
}

.portfolio-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.donut-wrap { width: 140px; height: 140px; flex-shrink: 0; }

.portfolio-legend {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.leg-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 0.4rem;
}

.leg-item .val { margin-left: auto; font-weight: 400; color: var(--text-muted); padding-left: 1rem; }

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.btc { background: #00a651; }
.dot.eth { background: #1a1a1a; }
.dot.sol { background: #4caf50; }
.dot.otros { background: #d1d5db; }

/* Metrics Bar */
.metrics-bar {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.metric {
    flex: 1;
    padding: 1.2rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.metric:last-child { border-right: none; }

.metric-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.metric-val {
    font-size: 1.6rem;
    font-weight: 800;
}

.metric-val.green { color: var(--aurora-green); }
.metric-val.dark { color: var(--text-main); }

/* Rend Bottom */
.rend-bottom {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

.asset-list { display: flex; flex-direction: column; gap: 1.2rem; }

.asset-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.asset-row:last-child { border-bottom: none; padding-bottom: 0; }

.asset-info {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.a-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
}

.btc-ic { background: #f7931a; }
.eth-ic { background: #627eea; }
.sol-ic { background: #9945ff; }
.ada-ic { background: #0d1e2c; }

.a-name { font-size: 0.9rem; font-weight: 600; }

.asset-data { text-align: right; }
.a-price { font-weight: 700; font-size: 0.9rem; }
.a-change { font-size: 0.8rem; font-weight: 600; }
.a-change.green { color: var(--aurora-green); }

/* Chart Card */
.chart-card { display: flex; flex-direction: column; }

.chart-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.35rem 0.8rem;
    font-weight: 700;
    font-family: inherit;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--aurora-green-light);
    color: var(--aurora-green);
}

.ada-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #00a651, #005c2d);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.ada-stat { display: flex; flex-direction: column; align-items: center; flex: 1; }
.ada-label { font-size: 0.7rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; }
.ada-val { font-size: 1.2rem; font-weight: 800; color: #fff; }
.ada-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.3); }

.tv-container { flex-grow: 1; min-height: 220px; width: 100%; }

/* Why Card */
.why-list { display: flex; flex-direction: column; gap: 1.2rem; }

.why-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.why-icon { font-size: 1.3rem; flex-shrink: 0; }

.why-item div { display: flex; flex-direction: column; }
.why-item strong { font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.2rem; }
.why-item span { font-size: 0.8rem; color: var(--text-muted); }

/* ==================== SECTION 3: ESTRATEGIA ==================== */
.estrategia-page {
    background: linear-gradient(135deg, #070a13 0%, #0a1a11 50%, #030508 100%);
    color: #ffffff;
    min-height: 100vh;
    width: 100%;
}

.estrategia-page h1,
.estrategia-page h2 {
    color: #ffffff;
}

.estrategia-page .section-header.light h1,
.estrategia-page .section-header.light h2 {
    color: #ffffff;
}

.estrategia-page .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.estrategia-page .estrat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 166, 81, 0.15);
    backdrop-filter: blur(8px);
}

.estrategia-page .estrat-card h3 {
    color: #ffffff;
}

.estrategia-page .estrat-card p {
    color: rgba(255, 255, 255, 0.7);
}

.estrategia-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(0,166,81,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.estrategia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.estrat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,166,81,0.2);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.estrat-card:hover {
    background: rgba(0,166,81,0.1);
    border-color: var(--aurora-green);
    transform: translateY(-6px);
}

.estrat-icon { font-size: 3rem; margin-bottom: 1.2rem; }

.estrat-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.estrat-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.estrat-tag {
    display: inline-block;
    border: 1px solid var(--aurora-green);
    color: var(--aurora-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.blockchain-banner {
    display: flex;
    align-items: center;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid rgba(0,166,81,0.3);
    border-radius: var(--radius);
    padding: 1.5rem 2.5rem;
    gap: 2.5rem;
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.bb-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    flex: 1;
}

.bb-icon { font-size: 1.5rem; }
.bb-item strong { color: #fff; }
.bb-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ==================== SECTION 4: INVERTIR ==================== */
.invertir-section {
    background: var(--bg-white);
    gap: 3rem;
}

.invertir-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    width: 100%;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-logo { height: 80px; margin-bottom: 0.5rem; }

.contact-info-panel h3 { font-size: 1.5rem; font-weight: 800; }
.contact-info-panel p { color: var(--text-muted); font-size: 0.95rem; }

.contact-links { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-social {
    display: flex;
    gap: 1.2rem;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.contact-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
}

.contact-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }

.input-group { display: flex; flex-direction: column; gap: 0.4rem; }

.input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-main);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
    resize: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--aurora-green);
    box-shadow: 0 0 0 3px var(--aurora-green-light);
}

.btn-primary.full { width: 100%; text-align: center; font-size: 1rem; }

/* ==================== HOME PAGE LAYOUT STYLES ==================== */
.hero-page {
    width: 100%;
}

.hero-banner-section {
    position: relative;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    margin-top: var(--navbar-h);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-cta-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 20;
    white-space: nowrap;
}

.ticker-bar {
    background: var(--bg-dark);
    color: #fff;
    padding: 1.2rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.ticker-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.ticker-item img {
    width: 22px;
    height: 22px;
}

.ticker-sep {
    color: var(--aurora-green);
}

.icons-section {
    max-width: 100%;
    margin: 4rem auto;
    padding: 4rem 4rem;
    text-align: center;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.feat-icon-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border);
    object-fit: cover;
}

.icons-strip {
    margin-top: 4rem;
    width: 100%;
}

.icons-strip-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 100%;
    margin: 4rem auto;
    padding: 4rem 6rem;
    align-items: center;
}

.split-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.split-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--aurora-green);
    letter-spacing: 2px;
}

.coins-row {
    margin: 1rem 0;
}

.coins-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: var(--radius);
}

.split-stats {
    display: flex;
    gap: 3.5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.8rem 0;
}

.s-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.s-val {
    font-size: 2.2rem;
    font-weight: 800;
}

.s-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.security-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 4rem 0;
    padding: 0;
}

.security-full-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.security-overlay {
    position: absolute;
    bottom: 12%;
    left: 6%;
    z-index: 10;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    max-width: 100%;
    margin: 4rem auto;
    padding: 4rem 6rem;
    align-items: center;
}

.story-img-wrap {
    width: 100%;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.story-crypto-logos {
    display: flex;
    gap: 1.2rem;
}

.story-crypto-logos img {
    width: 36px;
    height: 36px;
}

.story-url {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .rend-top { grid-template-columns: 1fr; }
    .rend-bottom { grid-template-columns: 1fr; }
    .estrategia-grid { grid-template-columns: 1fr; }
    .invertir-grid { grid-template-columns: 1fr; }
    .metrics-bar { flex-wrap: wrap; }
    .metric { flex: 1 1 33%; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }

    .split-section, .story-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2.5rem;
    }
    .icons-section {
        padding: 3rem 2.5rem;
    }
    .icons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ticker-inner {
        padding: 0 2rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow globally */
    body, main { overflow-x: hidden; }

    /* Premium Mobile Menu Overlay */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(10, 15, 30, 0.96);
        backdrop-filter: blur(15px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        padding: 2rem;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.mobile-open {
        display: flex !important;
    }

    .nav-links .nav-link {
        font-size: 1.3rem;
        color: #fff;
        padding: 0.8rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 12px;
    }

    .nav-links .nav-cta {
        width: 80%;
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
        position: relative;
    }

    /* Animated hamburger lines */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: #fff;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: #fff;
    }

    .hero-text h1 { font-size: 2rem; }
    .section-header h1,
    .section-header h2 { font-size: 1.5rem; }
    .blockchain-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }

    /* Sections */
    .split-section, .story-section, .icons-section {
        padding: 2rem 1.25rem;
        margin: 1.5rem auto;
    }
    .security-section { margin: 1.5rem 0; }

    /* Metrics */
    .metrics-bar { padding: 1.5rem 1rem; gap: 1rem; }
    .metric { flex: 1 1 40%; }

    /* CTA overlay on hero image */
    .hero-cta-overlay {
        bottom: 6%;
        width: 88%;
        flex-direction: column;
        gap: 0.75rem;
        justify-content: center;
    }
    .hero-cta-overlay .btn-primary,
    .hero-cta-overlay .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        text-align: center;
    }

    /* Ticker */
    .ticker-inner { padding: 0 1rem; gap: 1rem; }
    .ticker-item { font-size: 0.82rem; }

    /* Stats */
    .split-stats { gap: 1rem; justify-content: space-between; }
    .s-val { font-size: 1.5rem; }
    .s-label { font-size: 0.68rem; }
    .coins-img { max-width: 100%; }

    /* Market prices strip */
    #market-prices-strip { flex-direction: column; align-items: center; gap: 1rem !important; }
    #market-prices-strip > div { min-width: unset !important; width: 90% !important; max-width: 340px; }

    /* News grid */
    .news-grid { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
    .news-widget-wrapper { padding: 1.25rem !important; }
}

/* ---- 480px and below ---- */
@media (max-width: 480px) {
    .split-section, .story-section, .icons-section { padding: 1.5rem 1rem; }
    .section-header h1,
    .section-header h2 { font-size: 1.3rem; }
    .hero-text h1 { font-size: 1.8rem; }
    .metrics-bar { flex-direction: column; align-items: center; }
    .metric { flex: 1 1 100%; text-align: center; }
    #market-prices-strip > div { width: 95% !important; }
}

/* ==================== LEAD GENERATION SECTION ==================== */
.lead-generation-section {
    max-width: 100%;
    margin: 4rem auto;
    padding: 4rem 6rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lead-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.lead-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lead-eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--aurora-green);
    letter-spacing: 2px;
}

.lead-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    background: var(--bg-white);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.benefit-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.benefit-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lead-story-img {
    width: 100%;
    max-width: 400px;
    margin-top: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lead-form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .lead-generation-section {
        padding: 3rem 2.5rem;
    }
    .lead-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lead-story-img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .lead-generation-section {
        padding: 2rem 1.25rem;
        margin: 1.5rem auto;
    }
    .lead-grid { gap: 2rem; }
    .lead-intro { font-size: 0.95rem; }
    .benefit-list { gap: 1rem; }
    .lead-form-container { padding: 1.5rem 1.25rem; }
}
@media (max-width: 480px) {
    .lead-generation-section { padding: 1.5rem 1rem; }
    .benefit-item strong { font-size: 0.9rem; }
    .benefit-item span { font-size: 0.8rem; }
}

/* ==================== SITE FOOTER ==================== */
.main-footer {
    width: 100%;
    background: #0b0f19; /* premium deep dark navy */
    color: #a0aec0;
    padding: 5rem 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem 4rem 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-col .footer-logo {
    height: 60px;
    width: auto;
    align-self: flex-start;
}

.footer-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #718096;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--aurora-green);
    margin-bottom: 0.5rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-list a {
    text-decoration: none;
    color: #a0aec0;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--aurora-green);
}

.footer-contact-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.footer-social-icons {
    display: flex;
    gap: 1.2rem;
}

.footer-social-icons a {
    font-size: 1.25rem;
    text-decoration: none;
    color: #a0aec0;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    color: var(--aurora-green);
}

.footer-bottom {
    background: #07090f;
    padding: 2.5rem 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #4a5568;
    text-align: justify;
}

.copy-text {
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        padding: 0 3rem 3rem 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1.25rem 2.5rem 1.25rem;
    }
    .footer-bottom {
        padding: 1.5rem 1.25rem;
    }
    .main-footer { padding: 3rem 0 0 0; }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 0 1rem 2rem 1rem;
    }
    .footer-bio { font-size: 0.82rem; }
    .disclaimer-text { font-size: 0.7rem; }
}

/* Strategy Page Pill Overrides */
.estrategia-page .crypto-pill {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(0, 166, 81, 0.25) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    backdrop-filter: blur(5px);
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 82vh;
    min-height: 520px;
    overflow: hidden;
    margin-top: var(--navbar-h);
    background: #0a0f1e;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.85s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Slide 1 — brand image wrapper fills entire slide */
.slide-1-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}
.slide-1-wrap picture {
    display: block;
    width: 100%;
    height: 100%;
}
.slide-1-wrap .hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.slide-1-wrap .desktop-only-img {
    display: block;
}
.slide-1-wrap .mobile-only-img {
    display: none;
}

/* Skip layout and paint work for sections that start below the fold. */
.page-inicio .news-section,
.page-inicio .lead-generation-section,
.main-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

@media (max-width: 768px) {
    .slide-1-wrap .desktop-only-img {
        display: none !important;
    }
    .slide-1-wrap .mobile-only-img {
        display: block !important;
    }
}

/* ---- Shared content panel (slides 2-4) ---- */
.slide-content-panel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 1rem;
    color: #fff;
}

.slide-metals  { background: linear-gradient(135deg, #0a1a10 0%, #0f2a14 40%, #0e1e0a 100%); }
.slide-indices { background: linear-gradient(135deg, #050d1a 0%, #0c1f3a 50%, #061428 100%); }
.slide-crypto  { background: linear-gradient(135deg, #10051a 0%, #1a0b35 50%, #12082a 100%); }

.slide-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00a651;
    text-transform: uppercase;
}

.slide-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin: 0;
    color: #fff;
    line-height: 1.15;
}

.slide-title .accent { color: #00a651; }

.slide-sub {
    font-size: 0.9rem;
    color: #94a3b8;
    text-align: center;
    margin: 0;
}

.slide-cta-row {
    margin-top: 1rem;
}

/* ---- Metals Slide ---- */
.metals-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.metal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    min-width: 200px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.metal-card:hover { transform: translateY(-6px); }

.gold-card  { background: linear-gradient(145deg, rgba(212,175,55,0.18), rgba(212,175,55,0.06)); border-color: rgba(212,175,55,0.35); }
.silver-card{ background: linear-gradient(145deg, rgba(192,192,192,0.18), rgba(192,192,192,0.06)); border-color: rgba(192,192,192,0.35); }

.metal-icon  { font-size: 2.2rem; }
.metal-name  { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; color: #94a3b8; text-transform: uppercase; }
.metal-symbol{ font-size: 0.72rem; color: #64748b; }
.metal-price { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.metal-change{ font-size: 1rem; font-weight: 700; }
.metal-label { font-size: 0.7rem; color: #475569; }

/* ---- Indices Slide ---- */
.indices-row {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 700px;
}

.index-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 2rem 3rem;
    flex: 1;
    min-width: 200px;
}

.index-separator {
    width: 1px;
    height: 120px;
    background: rgba(255,255,255,0.12);
}

.index-logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
}

.nasdaq-logo { background: linear-gradient(135deg,#2563eb,#1d4ed8); color:#fff; }
.sp-logo     { background: linear-gradient(135deg,#0891b2,#0e7490); color:#fff; }

.index-ticker { font-size: 0.72rem; color: #64748b; letter-spacing: 2px; font-weight: 700; }
.index-price  { font-size: 2.2rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.index-change { font-size: 1rem; font-weight: 700; }
.index-change.positive { color: #16a34a; }
.index-meta   { font-size: 0.7rem; color: #475569; text-align: center; }

/* ---- Crypto Slide ---- */
.crypto-row-slide {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.crypto-slide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.5rem 1.8rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 130px;
    transition: transform 0.3s, background 0.3s;
    backdrop-filter: blur(10px);
}

.crypto-slide-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.09);
}

.crypto-slide-icon  { width: 44px; height: 44px; border-radius: 50%; }
.crypto-slide-name  { font-size: 0.75rem; font-weight: 700; color: #94a3b8; letter-spacing: 1px; }
.crypto-slide-sym   { font-size: 0.65rem; color: #475569; font-weight: 700; letter-spacing: 2px; }
.crypto-slide-price { font-size: 1.25rem; font-weight: 800; color: #fff; }
.crypto-slide-chg   { font-size: 0.85rem; font-weight: 700; }
.crypto-slide-chg.positive { color: #16a34a; }

/* ---- Dots ---- */
.slide-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 20;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.slide-dot.active {
    background: #00a651;
    transform: scale(1.3);
}

/* ---- Arrows ---- */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.slide-arrow:hover { background: rgba(0,166,81,0.5); }
.slide-prev { left: 1.2rem; }
.slide-next { right: 1.2rem; }

/* ---- Responsive ---- */
/* ============================================================
   MOBILE RESPONSIVE — Slideshow
   ============================================================ */
@media (max-width: 768px) {
    /* Hero slideshow */
    .hero-slideshow { height: 100svh; min-height: 500px; }
    .slide-content-panel { padding: 1.25rem 1rem; gap: 0.65rem; }
    .slide-eyebrow { font-size: 0.6rem; letter-spacing: 1.5px; }
    .slide-title { font-size: clamp(1.2rem, 5.5vw, 1.9rem); }
    .slide-sub { font-size: 0.75rem; }
    .slide-cta-row { margin-top: 0.5rem; }

    /* Hero CTA on mobile */
    .hero-cta-overlay {
        flex-direction: column;
        gap: 0.75rem;
        bottom: 6%;
        width: 85%;
    }
    .hero-cta-overlay .btn-primary,
    .hero-cta-overlay .btn-secondary {
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.88rem;
    }

    /* Slide 2 — Metals */
    .metals-row { flex-direction: column; gap: 0.65rem; align-items: center; }
    .metal-card {
        padding: 0.9rem 1.25rem;
        min-width: unset;
        width: 90%;
        max-width: 310px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.15rem 0.75rem;
    }
    .metal-icon { display: none; }
    .metal-name { flex: 1; font-size: 0.72rem; }
    .metal-symbol { font-size: 0.62rem; }
    .metal-price { font-size: 1.4rem; width: 100%; }
    .metal-change { font-size: 0.8rem; }
    .metal-label { font-size: 0.6rem; width: 100%; }

    /* Slide 3 — Indices */
    .indices-row { flex-direction: column; gap: 0.65rem; }
    .index-separator { display: none; }
    .index-card { padding: 0.9rem 1.25rem; min-width: unset; width: 90%; max-width: 310px; }
    .index-logo { font-size: 0.9rem; padding: 0.3rem 0.7rem; }
    .index-price { font-size: 1.5rem; }
    .index-meta { font-size: 0.6rem; }

    /* Slide 4 — Crypto: 2x2 grid */
    .crypto-row-slide {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        width: 90%;
        max-width: 310px;
    }
    .crypto-slide-card { padding: 0.85rem 0.75rem; min-width: unset; }
    .crypto-slide-icon { width: 32px; height: 32px; }
    .crypto-slide-price { font-size: 0.95rem; }
    .crypto-slide-name { font-size: 0.65rem; }
    .crypto-slide-sym { font-size: 0.58rem; }

    .slide-arrow { display: none; }
    .slide-dots { bottom: 1rem; }
}

@media (max-width: 400px) {
    .hero-slideshow { min-height: 580px; }
    .slide-title { font-size: 1.15rem; }
    .metal-card { padding: 0.75rem 1rem; }
    .metal-price { font-size: 1.2rem; }
    .crypto-row-slide { max-width: 260px; gap: 0.5rem; }
    .crypto-slide-card { padding: 0.7rem 0.5rem; }
    .crypto-slide-price { font-size: 0.85rem; }
    .index-price { font-size: 1.3rem; }
}
