@font-face {
    src: url(fonts/Barlow-SemiBold.ttf);
    font-family: 'Barlow-Medium';
}
@font-face {
    src: url(fonts/Ubuntu-Medium.ttf);
    font-family: 'Ubuntu-Medium';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f1e9;
    color: #333;
    font-family: 'Ubuntu-Medium', sans-serif;
}

header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 4px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 120px;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    padding: 2px;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-height: 80vh;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: #D4AF37;
    color: #000;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.dots-container {
    text-align: center;
    padding: 15px 0;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: #D4AF37;
}
.middle {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #D4AF37;
}

.left, .right {
    width: 50%;
    padding: 2rem;
}

.left p {
    font-size: 2rem;
    color: #000000;
    line-height: 1.5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.right iframe {
    width: 100%;
    height: 100%;
    border: 2px solid #D4AF37;
}

.moto {
    background-color: #D4AF37;
    padding: 3rem 0;
    text-align: center;
}

.moto ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.moto li {
    font-size: 2rem;
    color: #000000;
}

.moto li span {
    color: #ffffff;
    font-weight: bold;
}

footer {
    background-color: #000000;
    color: #D4AF37;
    text-align: center;
    padding: 2rem 0;
    font-size: 1.5rem;
}

footer a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff;
}

.socials i {
    font-size: 2.5rem;
    margin: 0 1rem;
}

@media (max-width: 992px) {
    .logo { height: 100px; }
    .slider button { font-size: 1.5rem; padding: 0.8rem; }
    .middle { flex-direction: column; }
    .left, .right { width: 100%; padding: 1.5rem; }
    .left p { font-size: 1.6rem; }
    .moto li { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .left p { font-size: 1.3rem; }
    .moto li { font-size: 1.3rem; }
    footer { font-size: 1.2rem; }
    .socials i { font-size: 2rem; }
}