/* ===== INDEX CON POPPINS E INTER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== TIPOGRAFÍA ===== */
body, p, span, div, button, input, a {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

body {
    background: #fbfaf7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #161616;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo-img {
    height: 45px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #59d2ec;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 60px 60px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 50px;
    flex: 1;
}

.hero-left {
    flex: 1;
}

.badge {
    display: inline-block;
    background: #59d2ec20;
    color: #029e99;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 800;
    color: #161616;
    line-height: 1.1;
}

.hero-left h1 span {
    color: #029e99;
}

.hero-left p {
    font-size: 18px;
    color: #555;
    margin: 20px 0 35px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.primary-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, #029e99, #59d2ec);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(2, 158, 153, 0.35);
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.master-title {
    font-size: 42px;
    font-weight: 900;
    color: #029e99;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 100px 30px 40px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left p {
        margin: 20px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .master-title {
        font-size: 32px;
    }

    .navbar {
        padding: 15px 30px;
    }

    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .hero-left h1 {
        font-size: 30px;
    }

    .primary-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-menu a {
        font-size: 13px;
    }
}