
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b0e1a;
    color: #fff;
    overflow-x: hidden;
}

/* Partículas de fondo (efecto sutil) */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(145deg, #0a0c17 0%, #141b2b 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ===== HEADER ===== */
header {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.logo-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.logo span {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.tagline-header {
    background: rgba(255,255,255,0.05);
    padding: 8px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255,215,0,0.3);
    font-weight: 400;
    backdrop-filter: blur(5px);
}

.tagline-header i {
    color: gold;
    margin-right: 8px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 50px 0 80px;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .gradient-text {
    background: linear-gradient(120deg, #f6d365, #fda085, #fda085, #f6d365);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero p {
    font-size: 1.2rem;
    color: #b0b7d3;
    margin-bottom: 35px;
    max-width: 550px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(145deg, #f6d365, #fda085);
    color: #0b0e1a;
    box-shadow: 0 10px 25px rgba(253, 160, 133, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(253, 160, 133, 0.6);
}

.btn-outline {
    border: 2px solid rgba(255,215,0,0.6);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,215,0,0.1);
    border-color: gold;
    transform: translateY(-5px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 45px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f6d365;
}

.stat-label {
    font-size: 0.9rem;
    color: #9aa1b9;
}

.hero-image {
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    padding: 30px 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.6);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-image i {
    font-size: 5rem;
    background: linear-gradient(145deg, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-image h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.hero-image .badge-soon {
    background: rgba(255,215,0,0.2);
    padding: 6px 15px;
    border-radius: 30px;
    display: inline-block;
    color: gold;
    border: 1px dashed gold;
}

/* ===== CONTADOR (próximo lanzamiento) ===== */
.countdown-section {
    text-align: center;
    padding: 40px 0 50px;
}

.countdown-title {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 25px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 20px 30px;
    min-width: 130px;
    border: 1px solid rgba(255,215,0,0.15);
    backdrop-filter: blur(4px);
}

.countdown-item span {
    font-size: 3rem;
    font-weight: 700;
    color: #f6d365;
    display: block;
    line-height: 1;
}

.countdown-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9fa6c1;
}

/* ===== SECCIÓN “QUÉ OFRECEMOS” ===== */
.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(135deg, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    text-align: center;
    color: #a0a9c5;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: rgba(20, 27, 45, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 30px;
    padding: 40px 30px;
    transition: 0.3s;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.3);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: gold;
    box-shadow: 0 30px 45px -10px gold(0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, rgba(246, 211, 101, 0.1), rgba(253, 160, 133, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid gold;
}

.feature-icon i {
    font-size: 2.5rem;
    background: linear-gradient(145deg, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #b1b9d6;
}

/* ===== PASOS PARA EL LANZAMIENTO ===== */
.steps {
    background: rgba(0,0,0,0.2);
    border-radius: 80px 20px 80px 20px;
    padding: 50px 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item:not(:last-child):after {
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 20px;
    color: gold;
    font-size: 1.8rem;
    opacity: 0.4;
}

.step-number {
    width: 60px;
    height: 60px;
    background: gold;
    color: #0b0e1a;
    font-weight: 800;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 0 25px gold;
}

.step-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step-item p {
    color: #b7c0dd;
    font-size: 0.95rem;
}

/* ===== MENSAJE ALENTADOR ===== */
.message-big {
    background: linear-gradient(145deg, #1e253b, #0f1422);
    border-radius: 70px 10px 70px 10px;
    padding: 60px 40px;
    text-align: center;
    border-left: 6px solid gold;
    margin: 40px 0;
}

.message-big h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.message-big .quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #f6d365;
}

.message-big .author {
    color: #9fa6c1;
    margin-top: 25px;
}

/* ===== SECCIÓN FINANZAS / BLOG ===== */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.preview-card {
    background: #1b2335;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #333c56;
}

.preview-card:hover {
    border-color: gold;
    transform: scale(1.03);
}

.preview-img {
    height: 170px;
    background: linear-gradient(145deg, #2f3b5a, #1f2740);
    display: flex;
    align-items: center;
    justify-content: center;
    color: gold;
    font-size: 3rem;
}

.preview-content {
    padding: 25px;
}

.preview-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.preview-content p {
    color: #a4aecb;
    font-size: 0.9rem;
}

.badge {
    background: rgba(255,215,0,0.15);
    color: gold;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 15px;
}

/* ===== FOOTER ===== */
footer {
    background: #070a12;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #1f2a3f;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #cbd5e0;
    margin-left: 25px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: gold;
}

.footer-links i {
    margin-right: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-item:not(:last-child):after {
        display: none;
    }
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2.4rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links a { display: inline-block; margin: 10px; }
}
