/* ==========================================================================
   Configurações Globais e Reset
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --roxo-claro: #a793ff;
    --primary-color: #351e3b;
    --accent-color: #893bf6;
    --text-light: #f8fafc;
    --text-dark: #334155;
    --bg-light: #f1f5f9;
}

body {
    background-color: var(--primary-color);
    min-height: 100vh;
    overflow-x: hidden;
}


/* Container Principal utilizando Grid para dividir a tela em duas */

.container {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}


/* Quando a tela for maior que 768px (Desktop), divide em 2 colunas */

@media (min-width: 768px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
}


/* ==========================================================================
   Lado Esquerdo - Informações (Escuro)
   ========================================================================== */

.left {
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content {
    max-width: 450px;
    text-align: center;
}

@media (min-width: 768px) {
    .content {
        text-align: left;
    }
}

.logo-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .logo-img {
        margin: 0 auto;
    }
}

.title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 10px;
}

.construction h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #a793ff;
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.academic-footer {
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}


/* ==========================================================================
   Lado Direito - Painel da Imagem (Claro)
   ========================================================================== */

.right {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

@media (min-width: 768px) {
    .right {
        clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
        margin-left: -3vw;
        padding-left: 10%;
    }
}