:root {
    --gold: #c5a059;
    --bg: #05070a;
}

body, html {
    margin: 0; padding: 0;
    background: var(--bg);
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* EFEITO DE MOVIMENTO NA IMAGEM */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.image-wrapper {
    position: relative;
    border: 1px solid var(--gold);
    padding: 10px;
    background: rgba(197, 160, 89, 0.1);
}

.main-img {
    width: 100%;
    display: block;
    filter: grayscale(0.5) contrast(1.2);
}

/* GRID DO SITE */
.grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .grid-content { grid-template-columns: 1fr; }
}

/* FORMULÁRIO GLASSMORPHISM */
.glass-form-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 40px;
    border-radius: 4px;
}

.field { margin-bottom: 20px; }
.field label { 
    display: block; 
    color: var(--gold); 
    font-size: 0.7rem; 
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: white;
    padding: 10px 0;
    font-family: 'JetBrains Mono', monospace;
}

.field input:focus { outline: none; border-bottom-color: var(--gold); }

/* BOTÃO COM BRILHO */
.glow-button {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: black;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
    transition: 0.3s;
}

.glow-button:hover {
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.6);
    transform: scale(1.02);
}

/* EMENTA CARDS */
.ementa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 80px;
}

.ementa-card {
    border: 1px solid #1a1a1a;
    padding: 20px;
    background: rgba(255,255,255,0.01);
}

.ementa-card h3 { color: var(--gold); font-size: 0.9rem; }
.ementa-card p { font-size: 0.8rem; line-height: 1.6; color: #ccc; }

/* --- FAQ STYLE --- */
.faq-section {
    margin-top: 80px;
    width: 100%;
    clear: both;
}

.terminal-header-small {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--gold);
    font-family: 'JetBrains Mono', monospace;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-node {
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: rgba(10, 15, 20, 0.6);
    transition: all 0.3s ease;
}

.faq-trigger {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.node-id {
    color: var(--gold);
    font-family: 'JetBrains Mono', monospace;
    margin-right: 15px;
}

.question-text {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-icon {
    color: var(--gold);
    transition: transform 0.3s ease;
}

/* Conteúdo Escondido */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.3);
}

.faq-internal {
    padding: 0 20px 20px 55px;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Estado Ativo */
.faq-node.active {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
}

.faq-node.active .faq-content {
    max-height: 300px; /* Ajuste conforme o tamanho do texto */
}

.faq-node.active .faq-icon {
    transform: rotate(45deg);
    color: #ff4444; /* Muda para um 'X' vermelho ao abrir */
}