/* ─── Reset & Base (Mesmo da Principal) ─────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fafafa;
    /* Fundo ligeiramente mais claro para a página sobre */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --purple-dark: #4a1a8a;
    --purple: #6b2fa0;
    --purple-mid: #8b3fc0;
    --pink: #c0306a;
    --orange: #f7931e;
    --orange-light: #ffb347;
    --blue: #1565c0;
    --blue-mid: #1e88e5;
    --blue-light: #42a5f5;
    --white: #ffffff;
    --gray-bg: #f5f5f7;
    --text-dark: #1a1a2e;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ─── Header (Mesmo da Principal) ───────────────────────── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.logo-text {
    line-height: 1.1;
}

.logo-text span:first-child {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--purple-dark);
    letter-spacing: -0.3px;
}

.logo-text span:last-child {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #444;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--purple);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--purple);
    font-weight: 600;
}

.btn-entrar {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 16px rgba(107, 47, 160, 0.35);
}

.btn-entrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 47, 160, 0.5) !important;
}

.btn-entrar::after {
    display: none !important;
}

/* ─── Hero Interno (Sobre) ──────────────────────────────── */
.hero-internal {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
    min-height: 350px;
    padding: 120px 5% 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-internal::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fafafa;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-internal h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.hero-internal p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Conteúdo Sobre ────────────────────────────────────── */
.about-content {
    max-width: 1000px;
    margin: 60px auto 100px;
    padding: 0 5%;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 2rem;
    color: var(--purple-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Grid de Missão, Visão e Valores */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mvv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

/* Card de Valores centralizado */
.mvv-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 350px;
    margin: 0 auto;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

/* Linhas decorativas no topo de cada card */
.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.mvv-card:nth-child(1)::before {
    background: var(--orange);
}

.mvv-card:nth-child(2)::before {
    background: var(--pink);
}

.mvv-card:nth-child(3)::before {
    background: var(--blue-mid);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon svg {
    width: 32px;
    height: 32px;
}

.mvv-card:nth-child(1) .mvv-icon svg {
    stroke: var(--orange);
}

.mvv-card:nth-child(2) .mvv-icon svg {
    stroke: var(--pink);
}

.mvv-card:nth-child(3) .mvv-icon svg {
    stroke: var(--blue-mid);
}

.mvv-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.mvv-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Seção de Público (Para quem é) */
.target-audience {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.target-text {
    flex: 1;
}

.target-text h3 {
    font-size: 1.8rem;
    color: var(--purple-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.target-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.target-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.target-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* Placeholder caso não tenha imagem */
.target-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
}

/* ─── Footer (Mesmo da Principal) ───────────────────────── */
footer {
    background: linear-gradient(135deg, var(--purple-dark), #2d0a5a);
    padding: 32px 5%;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

footer p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
    .target-audience {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    nav {
        gap: 16px;
    }

    nav a {
        font-size: 0.78rem;
    }

    .hero-internal {
        padding: 100px 5% 40px;
    }

    .hero-internal h1 {
        font-size: 2rem;
    }
}

.logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    /* Garante que a imagem não fique esticada */
    border-radius: 12px;
    /* Mantém as bordas arredondadas do design original */
    flex-shrink: 0;
}

.nav-img-link {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.nav-icon {
    height: 35px;
    /* Ajuste essa altura para combinar com o tamanho da sua fonte */
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Efeito de aumentar levemente ao passar o mouse */
.nav-icon:hover {
    transform: scale(1.1);
}

/* Ajuste para dispositivos móveis (opcional) */
@media (max-width: 768px) {
    .nav-icon {
        height: 30px;
    }
}

/* Estilização ajustada para a imagem ficar menor */
.nav-img-link {
    display: flex;
    align-items: center;
    padding: 0 8px;
    /* Reduzi um pouco o espaçamento lateral */
}

.nav-icon {
    height: 20px;
    /* Mude aqui: 25px deixa a imagem bem discreta e alinhada ao texto */
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: contain;
    /* Garante que a imagem não distorça */
}

/* Efeito de destaque ao passar o mouse */
.nav-icon:hover {
    transform: scale(1.1);
}