:root {
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --black: #0d0d0d;
    --dark-lighter: #1a1a1a;
}

body {
    background-color: var(--black);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-dark-lighter {
    background-color: var(--dark-lighter) !important;
}

.border-gold {
    border: 1px solid var(--gold) !important;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hover-gold:hover {
    color: var(--gold) !important;
}

.transition {
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('../i/hero.jpg') no-repeat center center/cover;
    position: relative;
    background-attachment: fixed; /* Parallax effect */
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Services List */
.services-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.services-list li:last-child {
    border-bottom: none;
}

/* Slideshow */
.slideshow-container {
    width: 100%;
    position: relative;
    padding: 10px 0;
}
.slideshow-track {
    display: flex;
    width: calc(250px * 8); /* Adjust based on image count * 2 */
    animation: scroll 20s linear infinite;
}
.slideshow-track a {
    margin: 0 10px;
    flex-shrink: 0;
}
.slideshow-track img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--gold);
    transition: transform 0.3s ease;
}
.slideshow-track img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 4 - 80px)); } /* 4 images + margins */
}

/* Reviews Canvas Section */
#avaliacoes {
    min-height: 500px;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-lighter) 50%, var(--black) 100%);
}

.reviews-canvas {
    height: 350px;
    overflow: hidden;
}

.review-item {
    position: absolute;
    background: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 1s ease;
    white-space: nowrap;
    border-left: 5px solid var(--gold);
}

.review-item.bg-element {
    filter: blur(2px) brightness(0.6);
    z-index: 1;
    transform: scale(0.8);
}

.review-item.fg-element {
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #ccc;
    display: flex; justify-content: center; align-items: center;
    font-weight: bold; color: #fff;
}

.review-content {
    display: flex; flex-direction: column;
}

.review-stars {
    color: #fbbc04; /* Google yellow */
    font-size: 12px;
}

/* Location Title Animation */
.location-title {
    position: relative;
}
.location-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
    transition: width 0.5s ease;
}
.location-title:hover::after {
    width: 100%;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    z-index: 999;
    background-color: #25d366;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: scale(1.05);
}

.whatsapp-btn i {
    font-size: 30px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .whatsapp-btn {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .whatsapp-btn {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 50px;
        border-radius: 25px;
    }
    .whatsapp-btn:hover {
        transform: translateX(-50%) scale(1.02);
    }
    .wpp-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
}
