@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

/* ESTILO + CONFIGURAÇÕES GERAIS */

:root {
    --corBranca: #F9F9F9;
    --corLaranja: #FF7A00;
    --corBordas: #cecece;
    --corCinza-Claro: #666666;
    --corCinza-Medio: #4b4b4b;
    --corCinza-Escuro: #172026;

    --fontePadrao: "Montserrat", sans-serif;
    --fonteDestaque: "Playfair Display", serif;
}


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

html {
  scroll-behavior: smooth;
}

h1,h2,h3,h4 {
    color: var(--corCinza-Medio);
    font-family: var(--fontePadrao);
}

body {
    background-color: var(--corBranca);
    font-family: var(--fontePadrao);
    color: var(--corCinza-Claro);
}

/* ESTILO DO APRESENTAÇÃO */

.apresentacao h1 {
    text-align: center;
    padding: 80px 8%;
    font-size: 5rem;
    font-weight: 600;
    color: var(--corBranca);
    background-color: rgba(0, 0, 0, 0.678);
}

.apresentacao {
    background-image: url(../imgs/ultimos-eventos1.jpeg);
    background-position: center;
}

/* ESTILO DO TEXTO 1 */

.text1 {
    text-align: justify;
    padding: 30px 8%;
    margin: 0px auto;
    font-size: 1rem;
    font-weight: 400;
    text-indent: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.text1 p {
    color: var(--corCinza-Escuro);
    white-space: pre-line;
}

/* ESTILO DO SOBRE O SNAC */

.sobre-snac {
    text-align: center;
    background-color: #F3F3F7;
    padding: 0px 30% 1px 30%;
}

.sobre-snac h2 {
    padding: 30px 0px;
    font-size: 2rem;
    font-weight: bolder;
    color: var(--corLaranja);
}

.sobre-snac p {
    font-size: 1rem;
    font-weight: 400;
    text-indent: 20px;
    line-height: 1.3;
    color: var(--corCinza-Escuro);
    white-space: pre-line;
    margin-bottom: 80px;
}

/* ESTILO DO HISTORIA */

.historia h2 {
    text-align: center;
    padding: 30px 0px;
    font-size: 2rem;
    font-weight: bolder;
    color: var(--corLaranja);
}

.historia p {
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0px 8%;
    margin-bottom: 30px;
    color: var(--corCinza-Escuro);
    white-space: pre-line;
}

.historia li {
    list-style-position: inside;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--corCinza-Escuro);
    white-space: pre-line;
}

.historia ul {
    margin: 0px 8%;
    margin-bottom: 50px;
}

.imagens {
    display: flex;
    justify-content: center;
    background-color: #f1f1fd;
    min-width: 100vh;
    margin: 0px auto 30px auto;
}

.duas-imagens {
    display: flex;
    gap: 10px;
    justify-content: center;
    background-color: #f1f1fd;
    min-width: 100vh;
    margin: 0px auto 30px auto;
}

.historia #ciclismo {
    max-height: 500px;
    max-width: 650px;
}

#lista {
    margin: 0px 8%;
}