.cabecalho {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ECE8DA;
    position: relative;
    z-index: 5;
    color: darkslategray;
}

nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin: 0;
    color: #315C65;
    margin: 20px;
}

section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 60px;
    padding: 10px 0;
    margin: 0 auto;
}

iframe{
    width: 99vw;
    height: 99vh;
    /*position: relative;*/
    margin: 0 auto;
}

p {
    text-align: center;
}

hr{
    border-top:2px solid #315C65;
}

body {
    background-color: #ECE8DA;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer{
    padding:15px 0;
    color: #315C65;
    text-align:center;
    font-size:.9rem;
}

.section-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 60px;
    padding: 10px 0;
    background-color: #ECE8DA;
}

.container-cantos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
}

.texto-esquerda {
    flex: 1;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: large;
    font-weight: bolder;
    color: #A49344;
}

.footer-esquerda {
    flex: 1;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: small; 
    font-weight: bolder;
}

.imagem-direita {
    max-width: 50px;
    height: auto;
    padding-right: 20px;
}

.banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: black;
    border-radius: 10px;
    width: 100%;
    color: #ECE8DA;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: large;
    padding: 10px;
}

.titulo {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: large;
    font-weight: bolder;
    text-align: center;
    color: #A49344;
}

.texto {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: medium;
    color: #ECE8DA;
}

.figura {
    border-radius: 8px;
    width:auto;
    height: 20%;
    max-height: 150px;
    margin: 5px;
}

.figura2 {
    width: auto;
    border-radius: 8px;
    height: 100%;
    max-height: 200px;
    margin: 5px;
}

.figura3 {
    width: auto;
    height: 20%;
    max-height: 50px;
    margin: 5px;
    display: flex;
    margin-left: auto;
    margin-right: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.carousel-figura {
    height: 100%;
    max-height: 150px;
    margin: 0px;
}

/* Cores locais para simular imagens sem usar a web */
.slide-1 {
    background-color: #ECE8DA;
}

.slide-2 {
    background-color: #ECE8DA;
}

.slide-3 {
    background-color: #ECE8DA;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.);
}

.btn-prev {
    left: 10px;
}

.btn-next {
    right: 10px;
}