* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #101522;
    color: #fff;
}

/* NAVBAR */

.navbar {
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
}

/* botón hamburguesa */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* menú escritorio */
.menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu a {
    text-decoration: none;
    color: #cfd3db;
    font-size: 0.95rem;
}

.menu a:hover {
    color: #fff;
}

/* botón contratar */
.btn-hire {
    padding: 10px 20px;
    border-radius: 25px;
    background: #4263eb;
    color: #fff !important;
    transition: 0.3s;
}

.btn-hire:hover {
    background: #364fc7;
}

/* HERO */

.hero {
    display: flex;
    align-items: center;
    padding: 60px 8%;
    position: relative;
    gap: 60px;
    min-height: calc(100vh - 90px);
}

.hero-text h2 {
    font-size: 1.4rem;
    color: #cfd3db;
}

.hero-text h1 {
    font-size: 3.4rem;
    margin: 10px 0;
}

.hero-text p {
    font-size: 1rem;
    margin-top: 12px;
    color: #9ea3b0;
}

.hero-buttons {
    margin-top: 22px;
    display: flex;
    gap: 18px;
}

.btn {
    padding: 12px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.primary {
    background: #4263eb;
    color: #fff;
}

.primary:hover {
    background: #364fc7;
}

.secondary {
    color: #cfd3db;
    border: 1px solid #cfd3db;
}

.secondary:hover {
    background: #364fc7;
    border-color: #364fc7;
    color: #fff;
}

/* IMG */

.hero-img img {
    width: 340px;
    border-radius: 12px;
}

/* SOCIAL */

.social {
    position: absolute;
    right: 8%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social a {
    width: 42px;
    height: 42px;
    border: 1px solid #4c5262;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
}

.social a:hover {
    background: #4263eb;
    border-color: #4263eb;
}

/* Secciones de relleno */
.section {
    padding: 20px 8%;
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 16px 10px 24px;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    /* navbar */
    .nav-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        padding: 12px 8%;
        background: #111827;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-top: 1px solid #1f2937;
        display: none;
    }

    .menu--open {
        display: flex;
    }

    .btn-hire {
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }

    /* hero */
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 8% 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img img {
        width: 230px;
    }

    .social {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.4rem;
    }
}
