@charset "utf-8";

:root {
    color-scheme: dark;
    --background: #0a0b0d;
    --surface: #14161a;
    --accent: #f26a1b;
    --accent-strong: #ff8333;
    --text: #f5f5f5;
    --muted: #a8b0bd;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at top, rgba(242, 201, 76, 0.12), transparent 55%), var(--background);
    color: var(--text);
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 20px 10px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.35));
}

main {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 20px;
}

.hero {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.eyebrow {
    font-family: "Sora", "Inter", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 18px;
    margin: 0;
}

h1 {
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
}

.subheadline {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--muted);
    margin: 0;
}

.actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    border-radius: 999px;
    border: 1px solid rgba(245, 245, 245, 0.2);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    background: transparent;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.button.primary {
    background: var(--accent);
    color: #1b1b1b;
    border-color: transparent;
    font-weight: 700;
}

.button.primary:hover {
    background: var(--accent-strong);
}

.authority {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
}

.cta {
    max-width: 820px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, rgba(245, 213, 106, 0.18), rgba(20, 22, 26, 0.9));
    border-radius: 32px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta h2 {
    font-family: "Sora", "Inter", sans-serif;
    text-transform: uppercase;
    font-size: clamp(28px, 4vw, 42px);
    margin: 0;
}

.cta p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

footer {
    background-color: transparent;
    padding: 28px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

#direitos {
    margin: 0;
}

@media (max-width: 768px) {
    header {
        padding-top: 20px;
    }

    main {
        gap: 60px;
        padding: 10px 16px 40px;
    }

    .menu img {
        max-width: 160px;
    }

    .cta {
        padding: 32px 20px;
    }
}
