:root {
    --bg-main: #090d16;
    --bg-card: #131926;
    --brand-primary: #10b981;
    --brand-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --text-pure: #ffffff;
    --text-muted: #94a3b8;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius-lg: 24px;
    --radius-md: 14px;
    --smooth-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-pure);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- NAVEGAÇÃO --- */
.navigation-bar {
    background-color: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
}

.navigation-bar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-pure);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-identity span {
    color: var(--brand-primary);
}

.navigation-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.navigation-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--smooth-transition);
}

.navigation-menu a:hover {
    color: var(--brand-primary);
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--smooth-transition);
    text-decoration: none;
}

.action-btn-main {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.25);
}

.action-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.45);
    filter: brightness(1.1);
}

.logo {
    width: 150px;
    display: flex;
}

.logo img {
    width: 100%;
}

/* --- CONTEÚDO PRINCIPAL (INSTITUCIONAL) --- */
.about-hero {
    padding-top: 220px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 10% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-statement h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.about-statement h1 span {
    background: linear-gradient(120deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-statement p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-media-container {
    position: relative;
}

.about-showcase-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
}

/* --- DIRETRIZES E VALORES --- */
.guidelines-section {
    padding: 100px 0;
    background-color: #060910;
    border-top: 1px solid var(--border-subtle);
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.guideline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    transition: var(--smooth-transition);
}

.guideline-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.25);
}

.guideline-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--brand-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.guideline-card h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-align: center;
}

.guideline-card p {
    color: var(--text-muted);
    font-size: 16px;
    text-align: center;
}

/* --- RODAPÉ --- */
.main-footer {
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-subtle);
    background: #0b111e;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about p {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 15px;
    max-width: 320px;
}

.footer-group h4 {
    margin-bottom: 28px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-pure);
}

.footer-group ul {
    list-style: none;
}

.footer-group ul li {
    margin-bottom: 16px;
}

.footer-group ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--smooth-transition);
}

.footer-group ul li a:hover {
    color: var(--brand-primary);
    padding-left: 4px;
}

.footer-credits {
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* --- BOTÃO WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 10px;
    background-color: #10b981;
    color: white;
    width: 60px;
    height: 60px;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .about-statement h1 {
        font-size: 42px;
    }

    .about-showcase-img {
        max-width: 550px;
        margin: 0 auto;
    }

    .navigation-menu {
        display: none;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        width: 150px;
    }

    .footer-about p {
        text-align: center;
    }

}