:root {
    --bg: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --primary: #f97316;
    --primary-soft: #fff4ea;
    --navy: #002e5d;
    --border-soft: #e5e7eb;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

/* ================= HEADER ================= */

.site-header {
    border-bottom: 1px solid var(--border-soft);
    background: #ffffffee;
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    height: 34px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text-main);
}

/* ================= HERO IA ================= */

.hero {
    padding: 3.5rem 0 2.5rem;
    background: linear-gradient(180deg, #fff4ea 0%, #ffffff 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.5rem;
}

.hero-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary);
}

.hero-title {
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 32rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.4rem 0 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-radius: 999px;
    padding: 1rem 1.6rem;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary:hover {
    filter: brightness(0.95);
}

.btn-secondary {
    border: 1px solid var(--border-soft);
    padding: 1rem 1.6rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #f9fafb;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
}

.hero-card {
    border-radius: 26px;
    border: 1px solid var(--border-soft);
    padding: 2rem;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero-card-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-example {
    font-size: 0.95rem;
    margin-top: 0.6rem;
}

.hero-example span {
    font-weight: 600;
}

.hero-example+.hero-example {
    border-top: 1px dashed var(--border-soft);
    padding-top: 0.6rem;
}

/* ================= DESTAQUES ================= */

.section {
    padding: 2.5rem 0;
}

.section-header {
    margin-bottom: 1.8rem;
}

.section-title {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.pill {
    border-radius: 16px;
    line-height: 1.5;
    padding: 1rem;
    background: #fafafa;
    border: 1px solid #ececec;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.pill strong {
    display: block;
    margin-bottom: 0.25rem;
}

.pill:hover {
    background: #fff5eb;
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* ================= ORGANIZER ================= */

.organizer-section {
    margin-top: 3rem;
    /* descola das pills */
    padding: 3.2rem 0 3.2rem;
    border-top: 1px solid var(--border-soft);
    background: #f8fafc;
}

.organizer-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
}

.organizer-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.organizer-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.organizer-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.organizer-badges {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.organizer-card {
    background: linear-gradient(135deg, #002e5d, #0b3f73);
    color: white;
    padding: 1.2rem 1.6rem 1rem;
    /* menos espaço azul */
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.organizer-card-title {
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.organizer-card-list {
    padding-left: 1.2rem;
    margin: 0;
    line-height: 1.7;
    /* mais espaçamento */
}

.organizer-card-list li:not(:last-child) {
    margin-bottom: 0.6rem;
    /* espaçamento entre bullets */
}

/* ================= FOOTER ================= */

.site-footer {
    border-top: 1px solid var(--border-soft);
    padding: 1.3rem 0;
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: #ffffff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* ================= RESPONSIVO ================= */

@media (max-width: 900px) {

    .site-header-inner {
        padding: 0.9rem 0;
    }

    .hero-grid,
    .organizer-grid,
    .pill-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 2.8rem 0 2.3rem;
    }

    .hero-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .logo-img {
        height: 30px;
    }

    .site-header-inner {
        gap: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .organizer-section {
        padding: 2.4rem 0 2.6rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }
}