.playfair-display-igon {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  .gemunu-libre-igon {
    font-family: "Gemunu Libre", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  } 

html, body {
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
    width:100%;

}

h1, h2 {
    color:#163A5F;
    font-family: "Gemunu Libre", sans-serif;
}

h1 {
    font-size: 4rem;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-top: 5px;
    }

h2 {
    font-size: 2.3rem;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin-top: 5px;
}

h3 {
    font-size: 1.2rem;
    font-family: "gemunu-libre-igon", sans-serif;
}

h4 {
    font-size:1.5rem;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    margin-bottom:0px;
    color:#6491b0;
}

h5 {

    font-size:1.7rem;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    margin: 20px;
    color:#163A5F;
}

p {
    font-size:1.1rem;
    font-family: Arial, sans-serif;
    text-align: justify;
    color:#242424;
}

a {
    text-decoration:none;
    color: inherit;
}

i {
    font-size:1.5rem;
    color:#163A5F
}

body button {
    background-color: #6491b0;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
}

#box-icons {
    font-size: 4rem;
}

.azul {
    color:#6491b0;
    padding: 2rem 0 0 2rem;

}

.espacador {
    height:50px;
}

header {
    width: 100%;
    background-color: #6491b0;
}

#header-items {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

}

.divlogo {
    max-width:200px;
}

.divlogo img {
    width:100%;
    height:auto;
    padding: 30px;
}

nav ul {
    display:flex;
    list-style:none;
}

nav li {
    padding: 2rem;
    color:#ffffff;
}

nav h3:hover {
    color: #163A5F;
    transition: 0.3s;
}

#burger-menu {
    display:none;
}

#menu-mobile {
    position:fixed;
    top:0;
    left: -300px;
    width:250px;
    height:100%;
    background-color:#ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease-in-out;
    
}

#menu-mobile h3 {
    color:black;
}

#menu-mobile ul {
    list-style:none;
    margin: 60px 50px 0 0;
}

#menu-mobile.ativo {
    left:0;
}


#fechar-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size:30px;
}

#banner {
    background-image:url(images/banner.jpeg);
    background-size: cover;
    background-position:center;
    height: 650px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

#inner-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}

#breadcrumbs {
    background-image:url(images/banner.jpeg);
    background-size: cover;
    background-position:center;
    height: 250px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

#inner-breadcrumbs {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items:center;
    padding-left: 50px;
    box-sizing: border-box;
}

#inner-breadcrumbs h2 {
   
    font-weight: 700;
}

main {
    width:100%;
    max-width: 1200px;
    background-color: #ffffff;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width:100%;
    gap: 20px;
}

.contain {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width:100%;
    gap: 20px;
    border-top:#163A5F solid 1px;
    border-bottom: #163A5F solid 1px;  
}
.item {
    flex: 1;
    width:100%;
    min-width: 150px;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.item a {
    text-align: left;
}

.cards {
    text-align: center;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 50px;
}

.missao {
    flex:1;
    padding-bottom: 30px;
    text-align: center;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing:border-box;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    display: block;
}

.carousel-navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bullet.active {
    background-color: #6491b0;
}

footer {
    background-color: #163A5F;
    padding-top: 50px;
    margin-top: 50px;
}

.grelha-produtos {
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.produto {
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.produto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.produto h4{
    font-size: 1.2rem;
    margin: 15px 15px 5px;
}

.produto p {
    text-align: center;
}

.contatos {
    color:#163A5F;
}

footer .container {
    width:100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

footer i, a {
    color:#fff;
    font-size:1.3rem;
}

td {
    padding: 10px 10px 10px 0px;
}

footer h3 {
    color:#ffffff;
    font-size: 2rem;
    font-family: "Gemunu Libre", sans-serif;
    font-weight: 500;
    margin-top: 0px;;
    }

footer ul {
    list-style:none;
    padding:0px;
    margin:0px;
}

.nome {
    text-align: right;
}

#footer-bottom {
    background-color: #163A5F;
    padding: 20px 0px 20px 0px;
    margin-top: 50px;
}

#footer-bottom p, a{
    color:#ffffff;
    font-size:1rem;
    text-align: center;;
}

@media (max-width:768px) {
    
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.3rem;
    }
    
    header {
        display:flex;   
    }

    .divlogo {
        max-width:150px;
    }
    
    nav ul {
        display:none;
        flex-direction:column;
    }

    #burger-menu {
        display:block;
        width: 60px;
        height: 60px;
        margin: 30px;
        font-size: 2rem;
    }

    #fechar-menu {
        display:block;
        width: 30px;
        height: 30px;
        font-size: 2rem;
        background-color: transparent;
        color: #163A5F;
    }
    
    #breadcrumbs {
        height: 150px;
    }

    .container {
        flex-direction:column;
        width: 100%;
    }

    .contain {
        flex-direction:row;
        width: 100%;
    }

    .cards {
        max-width: 300px;
    }

    .nome {
        text-align: center;
    }

    .grelha-produtos {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}


