@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --gold: #d4af37;
    --orange: #ff7b00;
    --border-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--orange);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

/* Header & Logos */
header {
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.logo-small {
    width: 60px;
    height: auto;
}

.btn-voltar {
    position: absolute;
    left: 2rem;
    top: 2.5rem;
    color: var(--orange);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Home Section */
.hero-title {
    text-align: center;
    margin-top: 2rem;
}

.hero-title h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.hero-title p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-title .highlight {
    color: var(--orange);
    font-weight: 600;
}

/* Cards (Home) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    height: 60px;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 0.8rem 3rem;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--bg-color);
}

/* Text Content Pages (Missão & Diretrizes) */
.page-title {
    color: var(--orange);
    margin-bottom: 2rem;
    text-align: center;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    color: var(--orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.content-list {
    list-style: none;
    margin-left: 1rem;
}

.content-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.content-list li::before {
    content: "🔸";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 3px;
}

/* Compliance / Whistleblower Box */
.alert-box {
    border: 1px solid var(--orange);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    background: rgba(255, 123, 0, 0.05);
}

.alert-box h3 {
    color: var(--orange);
    margin-bottom: 1rem;
}

.alert-box ul {
    list-style: none;
    margin-top: 1.5rem;
}

.alert-box ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}