body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    color: #1e1e2f;
    background-color: #f9fafc;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 50px;
    height: 50px;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
}

/* Nav */
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.nav-links a:hover {
    color: #5a31f4;
}

.btn-cta {
    background: #5a31f4;
    color: white !important;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Hero */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 10%;
    flex-wrap: wrap;
}

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

.hero-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.highlight {
    color: #5a31f4;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-primary {
    background: #5a31f4;
    color: white;
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary {
    background: #eee;
    color: #333;
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.hero-image img {
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Secciones scroll */
.section {
    padding: 5rem 10%;
    text-align: center;
}

.section.alt {
    background: #f0f2f8;
}

/* Footer */
.footer {
    background: #1e1e2f;
    color: #ddd;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.cursorDef{
    cursor: default;
}
