﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: radial-gradient(circle at 25% 25%, #1b44e0, #0b1444 70%, #070826 100%);
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(8, 10, 44, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.8rem 4rem;
}

.navbar-brand {
    font-weight: 600;
    color: white;
    font-size: 1.3rem;
}

    .navbar-brand i {
        color: #8c5fff;
        margin-right: 5px;
        font-size: 1.4rem;
    }

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        color: #00bfff;
    }

.btn-login {
    background: linear-gradient(90deg, #ff007f, #a63ce0);
    border: none;
    border-radius: 25px;
    padding: 8px 18px;
    font-weight: 500;
    color: white;
}

.hero {
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 580px;
}

    .hero-text h1 {
        font-weight: 700;
        font-size: 2.7rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-text p {
        color: #cfd3ff;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

.btn-started {
    background: linear-gradient(90deg, #e91e63, #a63ce0);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    color: white;
    margin-right: 10px;
    box-shadow: 0 4px 15px rgba(166, 60, 224, 0.3);
}

.btn-watch {
    background: #1e1b3b;
    border: 1px solid #333;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    color: white;
    transition: background 0.3s;
}

    .btn-watch:hover {
        background: #2a2750;
    }

.hero img {
    width: 480px;
    border-radius: 10px;
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.4));
}

.features {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-box {
    background: linear-gradient(180deg, rgba(16, 17, 72, 0.95), rgba(9, 10, 44, 0.95));
    border-radius: 20px;
    padding: 1.8rem;
    width: 340px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 1.8rem;
    padding: 15px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-blue .feature-icon {
    background: linear-gradient(145deg, #00b3ff, #0061ff);
}

.feature-red .feature-icon {
    background: linear-gradient(145deg, #ff512f, #dd2476);
}

.feature-green .feature-icon {
    background: linear-gradient(145deg, #00c851, #007e33);
}

.feature-text h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.feature-text p {
    color: #c7c9ff;
    margin-top: 6px;
    font-size: 0.9rem;
}
.texto-blanco {
    color: white;
}