@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    list-style: none;
    text-decoration: none;
}

:root {
    --white: #fff;    
    --dark: #1e1c2a;
    --orange: #f58634;
    --yellow: #ffc915;
    --blue_top: #3b4367;
}

html, body {
    height: 100%;
}

body {
    color: var(--dark);
    background: var(--white);
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px;
    width: 100%;
    background: var(--white);
    transition: all 0.5s;
}

.navigation ul {
    display: flex;
    align-items: center;
    gap: 5rem;
    height: 100%;
    margin: 0;
}

.navigation ul li a{
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.5s;
}

.navigation ul li a:hover {
    color: var(--orange);
}

.menu {
    cursor: pointer;
    display: none;  
}

.menu .bar {
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background-color: var(--dark);
    margin: 5px auto;
    transition: all 0.3s;
}


/* estilização do banner topo -> fundo da div e altura */
.banner-topo {
   background-image: url(https://guiacal.com.br/img/fundo_banner_topo.png);
   height: 140px;
}

.titulo-top {
    background: #424A48;
    height: 10px;
}

.titulo {
    margin: 0px auto;
    background: #445760;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    height: 22px;
}

.titulo-bottom {
    background: #424A48;
    height: 10px;
}

.div-aviso {
    margin-top: 18px;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
    font-size: 4rem;
}

.text-home {
    margin-top: 22px;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
}

.text-links-uteis {
    margin-top: 50px;
    margin-bottom: 5px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
}

.text-monumentos-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
}

.div-table-links {
    width: 100%;
    background: #ffc915;
    padding-top: 18px;
    padding-bottom: 18px;
}

/* estilização dos links para as páginas com 
   os dados dos fornecedores */

.table-suppliers a
  {
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.5s;
  }

.table-suppliers a:hover 
  {
    color: var(--orange);
    font-weight: 700;
  }


  .links-uteis {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 2px;
    width: 50%;
    background: var(--white);
    transition: all 0.5s;
}

.fotos-monumentos1 {
    width: 100%;
    background: var(--white);
    transition: all 0.5s;
}

.fotos-monumentos2 {
    width: 100%;
    padding-top: 30px;
    background: var(--white);
    transition: all 0.5s;
}

.fotos-monumentos3 {
  width: 100%;
  padding-top: 30px;
  background: var(--white);
  transition: all 0.5s;
}

.div-footer {
    width: 100%;
    margin-top: 40px;
    background-color: #dcdcdc;
}

.text-footer-title {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #1e1c2a;
    font-size: 1.8rem;    
}

.div-footer-text {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: #1e1c2a;
    font-size: 1.4rem;    
}

.text-footer-copyrigth {
    width: 100%;

}

.text-quemsomos {
    padding-top: 18px;
    padding-bottom: 10px;    
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    width: 58%;
    font-size: 1.8rem;    
}

.text-faleconosco {
    padding-top: 18px;
    padding-bottom: 18px;    
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    width: 58%;
    font-size: 2.0rem;
}

.div-texto-fornecedores {
    width: 800px;
}


.text-fornecedores-geral {
    padding-top: 10px;
    padding-bottom: 6px;    
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    width: 58%;
    font-size: 1.4rem;    
}

.div-texto-fornecedores-geral {
    width: 800px;
}

.link-topo {
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.5s;
}