/* --- estilo geral --- */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #111;
    color: #fff;
    text-align: center;
}

header {
    background: #000;
    padding: 20px;
    border-bottom: 4px solid #c5a059;
}

header img {
    max-width: 120px;
    display: block;
    margin: 0 auto;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #c5a059;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 40px 20px;
}

h2 {
    color: #c5a059;
}

footer {
    background: #000;
    padding: 20px;
    border-top: 4px solid #c5a059;
}

/* --- carrossel --- */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
    overflow: hidden;
    border: 3px solid #c5a059;
    border-radius: 10px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
   
 width: 100%;
    height: 400px;       /* deixa todas na mesma altura */
    object-fit: cover;   /* corta o excesso e centraliza */
    display: block;
    border-radius: 10px;
}

/* Botões */
.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #c5a059;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

.carousel button:hover {
    background: #c5a059;
    color: #000;
}
