* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #fff;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo span img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #0b5ed7;
    color: #0b5ed7;
    font-weight: 700;
}

.menu {
    display: flex;
    gap: 28px;
}

.menu a {
    text-decoration: none;
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
}

.menu a.active {
    color: #0b5ed7;
}

.btn-header {
    background: #0B5681;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
}

/* HERO */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    background: linear-gradient(135deg, #0b2c5f, #0aa2c0);
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #2fd3ff;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 35px;
}

/* BOTÕES */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #1d7df2;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    border: 1.5px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #0b5ed7;
    }

    .hero h1 {
        font-size: 36px;
    }
}
/* MOBILE */
@media (max-width: 900px) {

    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0B5681;
        backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 0;
        overflow: hidden;
        transition: height 0.35s ease;
        z-index: 9999;
    }

    .menu a {
        padding: 18px 0;
        font-size: 16px;
        width: 100%;
        text-align: center;
        color:#fff;
    }

    .menu.open {
        height: calc(100vh - 80px);
    }

    .menu-toggle {
        display: block;
        z-index: 10000;
    }

    .desktop-only {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }
}