/* --- Configurações Globais --- */
:root {
    /* Cores mantidas apenas para a caixa de prompt */
    --c-cyan: #00e0ff;
    --c-pink: #d9006c;
    --c-dark: #333333;
    --f-main: 'Montserrat', Arial, sans-serif;
}

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

body, html {
    width: 100%;
    min-height: 100vh;
    font-family: var(--f-main);
    background-color: #ffffff; /* Fundo branco */
    color: var(--c-dark);      /* Texto escuro padrão */
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-theme {
    background-color: #0f172a;
    color: #f8fafc;
}

body.dark-theme .blue-section-top h2,
body.dark-theme .who-we-are .subtitle {
    color: #94a3b8;
}

body.dark-theme .blue-section-top h1,
body.dark-theme .who-we-are h3,
body.dark-theme .white-section h3 {
    color: #f8fafc;
}

body.dark-theme .blue-section-bottom {
    border-top: 2px solid #334155;
}

body.dark-theme .prompt-box {
    background-color: #1e293b;
    border-left-color: #3b82f6;
}

body.dark-theme a {
    color: #60a5fa;
}

/* --- Container Principal --- */
.page-container {
    /* Centraliza o conteúdo e define uma largura máxima */
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* --- Seções (agora são apenas blocos) --- */
.content-section {
    margin-bottom: 3rem; /* Espaço entre as "seções" */
}

/* --- Seção 1 (Header) --- */
.blue-section-top h2 {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
}

.blue-section-top h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    line-height: 1.3;
    margin-top: 0.5rem;
    color: #000;
}

/* --- Seção 1 (Quem Somos) --- */
.blue-section-bottom {
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #eee; /* Linha divisória sutil */
}

.ai-logo img {
    width: 60px;
}

.who-we-are h3 {
    color: #000; /* Texto preto */
    font-size: 1.1rem;
    font-weight: 700;
}

.who-we-are .subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.who-we-are h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.who-we-are p {
    font-size: 0.9rem;
    line-height: 1.5;
}


/* --- Seção 2 (Nossa Equipe) --- */
.white-section-top {
    margin-bottom: 3rem;
}

.white-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-info {
    overflow: hidden; /* Contém o float */
}

.robot-mascot {
    width: 80px;
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-info ul {
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* --- Seção 2 (Prompt) --- */
.white-section-bottom {
    margin-top: 2rem;
}

.prompt-box {
    background-color: #f4f8fc; /* Fundo claro sutil */
    border-left: 4px solid var(--c-cyan);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.prompt-box p span {
    font-weight: 700;
    color: var(--c-pink);
}

/* --- Responsividade --- */
@media (max-width: 600px) {
    .page-container {
        padding: 1rem;
    }

    .blue-section-bottom {
        flex-direction: column;
    }

    .robot-mascot {
        float: none;
        display: block;
        margin: 0 auto 1rem auto;
    }

    .team-info ul {
        text-align: center;
    }
}

/* ==============================================
   ===== BOTÃO VOLTAR HOME =====
   ============================================== */

.home-button-container {
    /* Espaço abaixo do botão, antes do conteúdo principal */
    margin-bottom: 2rem; 
}

.btn-home {
    display: inline-block; /* Faz o padding funcionar */
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
    background-color: #007bff; /* Azul primário (padrão do seu app) */
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-home:hover {
    background-color: #0056b3; /* Azul mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}