/* ========================================
   CSS Variables - Paleta de Cores
   ======================================== */
:root {
    --cor-principal: #007bff;
    --cor-principal-escuro: #0056b3;
    --cor-secundaria: #ff8c00;
    --cor-secundaria-escuro: #e07b00;
    --fundo-claro: #f5f7fa;
    --fundo-branco: #ffffff;
    --txt-principal: #2d2d2d;
    --txt-secundario: #5a5a5a;
    --borda: #dde4eb;
    --sombra: 0 2px 8px rgba(0, 0, 0, 0.06);
    --sombra-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
    --transicao: all 0.3s ease;
}

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

html{
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--fundo-claro);
    color: var(--txt-principal);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

p, a {
    font-family: Arial, Helvetica, sans-serif;
}

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

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transicao);
}

.header.scrolled {
    height: 60px;
    box-shadow: var(--sombra);
}

.logo {
    height: 70px;
    width: auto;
    transition: var(--transicao);
}

.header .hhh a{
    display: flex;
    align-items: center;
}

.header .hhh a .vozes{
    line-height: 16px;
    margin-top:-6px;
}

.header.scrolled .logo {
    height: 50px;
    width: 50px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    font-size: 15px;
    color: var(--txt-principal);
    font-weight: 500;
    transition: var(--transicao);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-principal);
    transition: var(--transicao);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover {
    color: var(--cor-principal);
}

.nav a.active {
    font-weight: 700;
    color: var(--cor-principal);
}


.hhh{
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========================================
   Destaque Section
   ======================================== */
.destaque-section {
    width: 100%;
    min-height: 100vh;
    background: url("img/untitled.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 10% 80px;
}

.destaque-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.destaque-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--txt-secundario);
    margin-bottom: 20px;
    display: block;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.destaque-title {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--txt-principal);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.destaque-title .highlight {
    color: var(--cor-principal);
}

.destaque-subtitle {
    font-size: 18px;
    color: var(--txt-secundario);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 550px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.destaque-btns {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transicao);
    border: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--cor-principal);
    color: white;
}

.btn-primary:hover {
    background: var(--cor-principal-escuro);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--borda);
    color: var(--txt-principal);
}

.btn-outline:hover {
    background: var(--fundo-branco);
    border-color: var(--txt-principal);
    transform: translateY(-2px);
}

/* ========================================
   Main
   ======================================== */
.container {
    padding: 0 10%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   Cards
   ======================================== */
.cards-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--txt-principal);
}

.section-subtitle {
    color: var(--txt-secundario);
    font-size: 18px;
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.card {
    background: var(--fundo-branco);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    border-left: 4px solid var(--cor-secundaria);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-hover);
    border-left: 4px solid var(--cor-principal);
}

.card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--txt-principal);
}

.card-text {
    font-size: 15px;
    color: var(--txt-secundario);
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--cor-secundaria);
    font-weight: 600;
    font-size: 14px;
}

.card-link:hover {
    text-decoration: underline;
}

/* ========================================
   Mission Section
   ======================================== */
.mission-section {
    background: var(--fundo-branco);
    padding: 60px 0;
}

.mission-section .section-title {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 10px;
    color: var(--txt-principal);
    text-align: center;
}

.mission-section .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--txt-secundario);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-item {
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mission-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--txt-principal);
}

.mission-item p {
    font-size: 14px;
    color: var(--txt-secundario);
    line-height: 1.6;
}

/* Citação final */
.story-cta {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
    padding: 25px;
    background: #f5f8ff;
    border-radius: 10px;
}

.story-cta blockquote {
    font-size: 16px;
    color: var(--txt-principal);
    font-style: italic;
    margin-bottom: 8px;
}

.story-cta cite {
    font-size: 13px;
    color: var(--txt-secundario);
}

/* Responsive */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

/* ========================================
   All Rights Section (Expandable)
   ======================================== */
.all-rights-section {
    padding: 60px 0;
}

.all-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.toggle-btn-container {
    text-align: center;
    margin-top: 30px;
}

.btn-toggle {
    padding: 14px 32px;
    background: var(--cor-principal);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transicao);
}

.btn-toggle:hover {
    background: var(--cor-principal-escuro);
    transform: translateY(-2px);
}

.extra-content {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background: var(--fundo-branco);
    border-radius: 12px;
    box-shadow: var(--sombra);
}

.extra-content.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Game Section
   ======================================== */
.game-section {
    padding: 60px 0;
    text-align: center;
    background: var(--fundo-branco);
    border-radius: 12px;
    margin: 40px 0;
}

.game-title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--txt-principal);
}

.game-section .section-subtitle {
    font-size: 16px;
    color: var(--txt-secundario);
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 500px;
    margin-inline: auto;
}

.btn-game {
    display: inline-block;
    padding: 12px 28px;
    background: var(--cor-principal);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transicao);
}

.btn-game:hover {
    background: var(--cor-principal-escuro);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #050509;
    color: #f5f5f5;
    padding: 60px 48px 24px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info {
    max-width: 450px;
}

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: white;
}

.footer-info p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
    transition: var(--transicao);
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 280px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #aaaaaa;
}

.footer-bottom span:first-child {
    font-style: italic;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 5%;
    }
    
    .destaque-section {
        padding: 100px 5% 60px;
    }
    
    .footer-top {
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        height: 60px;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav {
        gap: 16px;
    }
    
    .nav a {
        font-size: 14px;
    }
    
    .destaque-title {
        font-size: 36px;
    }
    
    .destaque-subtitle {
        font-size: 16px;
    }
    
    .destaque-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .all-rights-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav {
        gap: 12px;
    }
    
    .nav a {
        font-size: 13px;
    }
    
    .destaque-section {
        padding: 90px 4% 50px;
    }
    
    .destaque-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
