/* Splash */
#splash {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
#splash img {
    max-width: 300px;
}
#body{
    display: none;

    width: 100%;
}
h1 {
    color: var(--red);
    text-align: left;
    margin: 20px;
}

h1#marcador {
    text-align: center;
}

p {
    color: white;
    text-align: left;
}

.linkmenu {
    color: var(--letra);
    text-decoration: none;
}

header {
    width: 100%;
    background-color: var(--black);
    color: var(--letra);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header {
    width: 100%;
    margin-bottom: 60px;
    height: 20vw;
    display: flex;
    justify-content: center;


}
#header > img{
  height: 400px
}

#barra-navegacao {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    border-top: solid 2px var(--red);
    background-color: var(--black);
    z-index: 100;
}

#barra-navegacao button {
    width: 100%;
    height: 100%;
    background-color: var(--black);
    color: var(--letra);
    border: 0;
    cursor: pointer;
}

#barra-navegacao button:hover {
    background-color: var(--red);
}

#corpo {
    width: 100%;
    text-align: center;
}

#map {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

#faixada {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    background-color: var(--red);
    color: white;
}
#faixada h1{
  color: white;
}

.carrosel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 60px;
}

#carrosel {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px;
    width: 100%;
    transition: transform 0.5s ease;
    -webkit-overflow-scrolling: touch;
}

#carrosel::-webkit-scrollbar {
    display: none;
}

#carrosel article {
    flex: 0 0 auto;
    width: 250px;
    height: auto;
    background: #2b2b2b;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(43, 42, 42, 0.555);
    text-align: center;
    color: white;
}

.imgCarrosel {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: solid 1px #ccc;
}

#carrosel article p {
    margin-top: 10px;
    font-weight: bold;
    color: white;
    text-align: center;
    background: none;
}


.carrosel-control {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    z-index: 10;
    font-size: 20px;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carrosel-control:hover {
    background-color: var(--red);
}
#faixadaH1{
color: white;
}

footer {
    margin-top: 60px;
    background-color: #353535;
    height: 400px;
    width: 100%;
    color: white;
}
