@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');
@import url('../css/header.css');
/* ESTILO DO APRESENTAÇÃO */

html, body {
  overflow-x: hidden;
}

.apresentacao h1 {
    text-align: center;
    padding: 80px 8%;
    font-size: 50px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 900;
    color: #f6f3e8;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background-color: rgba(0, 0, 0, 0.2);
}

.apresentacao {
    position: relative;
    margin-top: -58px; 
    z-index: 1;
}

.apresentacao::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../imgs/header.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

@media screen and (max-width: 768px){
    .apresentacao {
        margin-top: 0;
    }

    .apresentacao h1 {
        font-size: 30px;
        margin: 80px auto;
        padding: 90px 10px;
    }

    .apresentacao::before{
    background-image: url(../imgs/header-mobile.png);
    }
}

/* ESTILO DO TEXTO 1 */

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

.text1 p{
    font-size: 18px;
    font-weight: 500;
    max-width: 850px;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.863);

    b{
      color: #E56C00;
      font-weight: 700;
    }

    i{
      color: #796050;
    }
}

@media screen and (max-width: 768px){
    .text1 p{
        font-size: 14px;
        padding: 0 10px;
    }
}

/* ESTILO DO SOBRE O SNAC */

.sobre-snac {
    text-align: center;
    padding: 0px 30% 1px 30%;
    margin: 20px 20px;
}

.sobre-snac h2{ 
    display: inline-block; 
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, #000 0%, #ff6200 50%, #000 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradient-move 6s linear infinite forwards;
  }

  @keyframes gradient-move{
        0%{
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
 }

.sobre-snac p {
    font-size: 1rem;
    font-weight: 500;
    text-align: justify;
    line-height: 1.3;
    color: var(--corCinza-Escuro);
    white-space: pre-line;
    margin: 30px 0 80px 0;
}

@media screen and (max-width: 768px){
    .sobre-snac p {
        font-size: 0.85rem !important;
        padding: 0 5%;
        margin: 20px 0 50px 0;
    }
}

/* ESTILO DO HISTORIA */

.historia {
  padding: 80px;
  margin-top: 80px;
  text-align: center;
  background: #E56C00;
  overflow: hidden;
}
.historia h2 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 900;
    color: #f6f3e8;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.historia p {
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    max-width: 850px;
    line-height: 1.3;
    margin: 20px auto;
    color: #f6f3e8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    white-space: pre-line;
}

.historia li {
    text-align: start;
    list-style-position: inside;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px auto;
    color: #f6f3e8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    white-space: pre-line;
}

.historia ul {
    margin: 0 0 0 200px;
    margin-bottom: 50px;
    max-width: 850px;
}

.imagens {
    display: flex;
    justify-content: center;
    min-width: 100vh;
    margin: 0 auto 30px auto;
    filter: grayscale(100%);
}

.imagens:hover {
    filter: grayscale(0%);
}

.duas-imagens {
    display: flex;
    gap: 10px;
    justify-content: center;
    min-width: 100vh;
    margin: 70px auto;
    filter: grayscale(100%);
}

.duas-imagens:hover {
        filter: grayscale(0%);
}

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

@media screen and (max-width: 768px){
    .historia {
        padding: 40px;
        margin-top: 40px;
    }

    .historia h2{
        font-size: 20px;
        padding: 10px auto;
    }
    
    .historia p {
        font-size: 14px !important;
        padding: auto;
        margin: auto;
        width: 100%;
    }

    .historia li {
    font-size: 14px;
    }

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

