
/* ==================== Layout Principal ==================== */
body {
    margin: 0;
    min-height: 100vh;
    background-image: url('img/Designer1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

main {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    box-sizing: border-box;
}

.left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.right-section {
    flex: 3;
    padding: 20px;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    .left-section, .right-section {
        flex: 1;
    }
}

/* ==================== Tipografia e Conteúdo ==================== */
.text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.right-section p {
    font-size: 1.4em;
    font-family: sans-serif;
    line-height: 1.5; /*espaçamente entre linhas*/
    margin: 15px 0;
    color: #ffffffe7; /* Cor padrão do conteúdo principal */
    text-shadow: 4px 4px 6px #000000; /* Sombra azul com deslocamento e desfoque */
    
}

.right-section h3:first-child {
    font-weight: bold;
    font-size: 2.2em;
    color: #006affad; /* Cor do primeiro parágrafo */
    text-shadow: 4px 4px 6px #000000; /* Sombra azul com deslocamento e desfoque */
}

/* ==================== Logo e Branding ==================== */
.title-container {
    text-align: center;
}

h1 {
    color: #b03f0a;
    font-size: 5em;
    font-family: sans-serif;
    font-weight: bolder;
    margin: 10px 0;
    text-shadow: 4px 4px 6px #343434; /* Sombra azul com deslocamento e desfoque */
}

h2 {
    color: #ffffff;
    font-size: 3em;
    font-family: sans-serif;
    font-weight: bolder;
    margin: 0;
    text-shadow: 4px 4px 6px #343434; /* Sombra azul com deslocamento e desfoque */
}

/* ==================== Seção da Equipe ==================== */
.team {
    text-align: center;
    margin-top: 40px;
}

.team p {
    font-size: 1.5em;
    font-family: sans-serif;
    margin: 5px 0;
    color: #ffffff; /* Cor personalizada (marrom do logo) */
    font-weight: bold;
}
/* ==================== Rodapé ==================== */
footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    footer p {
        font-size: 0.9rem; /* Reduz o tamanho da fonte */
    }
}