body {
    padding-top: 70px;
    font-family: Arial, Helvetica, sans-serif;
}

.language-switch {
    display: flex;
    gap: 6px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
}

.lang-btn:hover {
    background: #fff;
    color: #000;
}


/* SLIDER */
/* DESKTOP / TABLET */
.slider {
    height: 60vh;
    min-height: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

/* MOBILE */
@media (max-width: 768px) {
    .slider {
        height: 35vh;          /* reduz MUITO o espaço */
        min-height: 220px;
        background-size: contain;
    }
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

@media (max-width: 768px) {
    #socials {
        margin-top: 10px !important;
    }
}

.social-btn {
    padding: 15px;
    border-radius: 30px;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.facebook { background: #1877f2; }
.instagram { background: #e1306c; }
.whatsapp { background: #25d366; }

.social-btn:hover {
    opacity: 0.85;
}

/* GALLERY */
.gallery-img {
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}