@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

/* Definição de rotas padrão */

.root {
    --bg-color: #FFFF;
    --secondary-color: #E30613;
    --third-color: #a12720;



    /*Tipografia*/
    --font-text: "Montserrat", sans-serif;
    --h1-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1rem;
}

/* Header */

.container_header {
    background-color: #E30613;
    height: 7rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem;
}

.img_header {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.img_header img {
    width: 100%;
    height: 58%;
}

.division_header {
    background-color: white;
    width: 0.2%;
    height: 53%;
    display: flex;
}

.header-nav{
    list-style: none;
    display: flex;
    margin-left: 15rem;
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav li{
    height: 50px;

}

nav a{
    font-family: "Montserrat", sans-serif;
    font-size: larger;
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
  }

nav a:hover{
    background-color: rgba(255, 255, 255, 0.2);
}

/* nav li:first-child{
    margin-right: auto;
} */

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0px 10px rgba(53, 53, 53, 0.9);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;
}

sidebar a{
    width: 100%;
}

@media(max-width: 800px){
    .hideOnMobile{
        display: none;
    }
}

@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}
/*Banner Sobre*/
.banner-site {
    position: relative;
    padding: 0;
    width: 100%;
    height: 55rem;
    background-image: linear-gradient(to Left, rgba(0, 0, 0, 0.848), rgba(0, 0, 0, 0.634)), url('../media/img/disciplinas-banner.png');
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    filter: brightness(70%);
}

.banner-text {
    font-family: "Montserrat", sans-serif;
    color: white;
    font-size: var(--h1-font);
    font-weight: 400;
    line-height: 2rem;
    margin-left: 20rem;
}

.btn {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: var(--p-font);
    padding: 10px 45px;
    background: var(--secondary-color);
    font-size: 15px;
    font-weight: 750;
    line-height: 30px;
    color: #ffff;
    border-radius: 40px;
    transition: all .50s ease;
    cursor: pointer;
    margin-left: 80px;
}

/* Estilos do Menu */
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

.menu {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Remove as margens e espaçamentos desnecessários */
.menu ul {
    list-style-type: none;
    display: flex;
    gap: 10px;
    margin: 0;
    /* Remover qualquer margem ao redor da lista */
    padding: 0;
    /* Remover qualquer padding ao redor da lista */
}

/* Ajuste para os itens do menu */
.menu ul li {
    margin: 0;
    /* Garantir que os itens não tenham margem */
    padding: 0;
}

/* Garantir que os links dentro dos itens também estejam bem ajustados */
.menu ul li a {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #f2f2f2;
    border-radius: 5px;
    display: inline-block;
    /* Garantir que o link ocupe o espaço do botão */
}

.menu ul li a:hover {
    background-color: #ddd;
    color: black;
}

/* Garantir que não há um item adicional "fantasma" */
.botao-sobre {
    background-color: #a12720;
    color: #fff;
}


/* Division Content */
.division-content {
    flex: 1;
    margin-left: 20px;
}


.materia-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.materia-text {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    margin-top: 5%;
}

.materia-start {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20%;
    padding: 2rem;
}

.materia-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20%;
    padding: 2rem;
}

.materia-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20%;
    padding: 2rem;
}


.icon-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.icon-item img {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
}


h2 {
    font-weight: bold;
}

hr {
    width: 800px;
    border: 2px solid #8B0000;
    /* cor da linha */
    margin: 10px auto;
}

.image-grid div {
    background-color: rgb(211, 211, 211);
    width: 12rem;
    height: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Layout grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.div1 {
    grid-area: 1 / 1 / 2 / 2;
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.div3 {
    grid-area: 1 / 3 / 2 / 4;
}

.div4 {
    grid-area: 1 / 4 / 2 / 5;
}

.div5 {
    grid-area: 2 / 1 / 3 / 2;
}

.div6 {
    grid-area: 2 / 2 / 3 / 3;
}

.div7 {
    grid-area: 2 / 3 / 3 / 4;
}

.div8 {
    grid-area: 2 / 4 / 3 / 5;
}

.div9 {
    grid-area: 3 / 1 / 4 / 2;
}

.div10 {
    grid-area: 3 / 2 / 4 / 3;
}

.div11 {
    grid-area: 3 / 3 / 4 / 4;
}

.div12 {
    grid-area: 3 / 4 / 4 / 5;
}

.img-class {
    width: 60px;
    height: 60px;
}

p {
    margin-top: 10px;
    font-weight: bold;
}

.div-grid-section {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;

}

footer {
<<<<<<< HEAD
  background-color: #a12720;
  padding: 0;
  margin: 0;
  text-align: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;

  .social-media-container {
    background-color: #D71920;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: -5px;
  }
  .social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
  }

  .addresses {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
  }

  .address {
    flex: 1;
    max-width: 300px;
=======
    background-color: #a12720;
    padding: 0;
    margin: 0;
>>>>>>> 0910194c90666ec3c044e3abc1e3266089346cec
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;

    .social-media-container {
        background-color: #D71920;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: -5px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-icon img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .addresses {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
    }

    .address {
        flex: 1;
        max-width: 300px;
        text-align: center;
        padding: 10px;
    }

    .divider {
        width: 2px;
        height: 60px;
        background-color: white;
        margin-left: 10px;
        margin-right: 10px;
    }
}