/* Variáveis de Cores - Paleta Executiva e Minimalista */
:root {
    --primary: #000000; /* Preto Absoluto */
    --secondary: #b8860b; /* Ouro Escuro / Cobre */
    --accent: #ffffff; /* Branco Puro */
    --text: #a1a1aa;
    --white: #ffffff;
    --bg-dark: #09090b;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.text-white { color: var(--white); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 120px 0; }
.bg-dark { background-color: var(--bg-dark); }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 45px;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid var(--primary);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-full { width: 100%; }

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span { color: var(--secondary); }

.nav-links { display: flex; }
.nav-links li { margin-left: 45px; }
.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover { color: var(--secondary); }

/* Hero */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content { width: 100%; }
.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    color: #d1d1d6;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Peak List */
.peak-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-weight: 600;
    color: var(--primary);
}

.peak-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 1px;
    background-color: var(--secondary);
}

/* Program Cards */
.program-card {
    background: #18181b;
    padding: 60px 40px;
    border: 1px solid #27272a;
    transition: var(--transition);
}

.program-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
}

.program-card h3 { margin-bottom: 20px; font-size: 1.8rem; color: var(--white); }
.program-card p { font-size: 0.95rem; color: #71717a; margin-bottom: 30px; }

.link-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Formulário */
.peak-form input, 
.peak-form select,
.peak-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid #e4e4e7;
    background: #fafafa;
    font-family: inherit;
    outline: none;
    border-radius: 0;
}

.peak-form input:focus { border-color: var(--primary); }

/* Footer */
footer {
    background: #000000;
    color: #52525b;
    padding: 100px 0 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #18181b;
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.footer-links a { margin-left: 40px; font-size: 0.8rem; font-weight: 600; }

.copyright { font-size: 0.75rem; }

/* Mobile Menu Icon */
.mobile-menu-icon { display: none; cursor: pointer; }
.mobile-menu-icon div {
    width: 25px;
    height: 1px;
    background-color: var(--primary);
    margin: 8px;
    transition: var(--transition);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }

    .nav-links li { margin: 25px 0; }
    .mobile-menu-icon { display: block; }
    .nav-active { transform: translateX(0); }
    .footer-grid { flex-direction: column; text-align: center; }
    .footer-links { margin-top: 40px; }
}
