:root {
    --primary-color: #d4af37;
    /* Gold */
    --secondary-color: #1a1a1a;
    /* Dark Gray */
    --bg-color: #0f0f0f;
    /* Black */
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 60px;
    /* Resize logo */
    width: auto;
    margin-right: 1rem;
    border-radius: 50%;
    /* Optional: make it circular if square */
    mix-blend-mode: screen;
    /* Attempt to remove black background */
    /* Note: If background is white, use 'multiply' instead of 'screen' */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.music-control:hover {
    transform: scale(1.1);
    background: transparent;
    color: var(--primary-color);
}

.music-control.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    /* Focus more on the top part (heads) */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
}

.hero-content {
    z-index: 1;
    padding: 0 1rem;
    animation: fadeIn Up 1s ease forwards;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content .highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: var(--bg-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-hero:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu to be implemented */
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.1rem;
        /* Reduced from 1.5rem */
    }

    .nav-logo-img {
        height: 40px;
        /* Resize logo for mobile */
    }
}

/* About /* Business Hours Section */
.hours-section {
    padding: 5rem 5%;
    background-color: #0a0a0a;
    /* Very dark background */
    text-align: center;
    color: #fff;
}

.hours-header {
    margin-bottom: 3rem;
}

.hours-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.hours-subtitle {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

.hours-container {
    max-width: 500px;
    margin: 0 auto 3rem;
    background: #111;
    /* Dark card background */
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time {
    font-weight: 400;
    color: #ccc;
}

.time.closed {
    color: var(--primary-color);
    font-weight: 600;
}

.hours-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.schedule-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-white {
    background-color: #fff;
    color: #000;
    padding: 1rem 3rem;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-white:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* About / Before & After Section */
.about-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    /* Space between content and slider */
}

.about-text {
    margin-bottom: 3rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text .highlight {
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.about-video {
    flex: 1;
    min-width: 300px;
}

.about-video video {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Mobile adjustments for About Video */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
    }

    .about-video {
        width: 100%;
        margin-bottom: 2rem;
    }

    .about-video video {
        max-height: 500px;
        width: auto;
        max-width: 100%;
    }
}

/* Comparison Slider */
.comparison-slider {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 4px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    /* padding-bottom removed to let image define height */
    overflow: hidden;
}

.slider-spacer {
    display: block;
    width: 200%;
    /* Full width of the collage */
    visibility: hidden;
    /* Invisible but takes up space */
    pointer-events: none;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-container img {
    display: block;
    width: 200%;
    /* Double width to match collage size */
    height: 100%;
    object-fit: cover;
    /* Ensure it fills height */
    pointer-events: none;
}

.before-image {
    z-index: 1;
}

.before-image img {
    transform: translateX(-50%);
    /* Shift left to show right half (Before) */
}

.after-image {
    z-index: 2;
    width: 100%;
    border-right: none;
}

.after-image img {
    transform: translateX(0);
    /* Show left half (After) */
}

.label {
    position: absolute;
    top: 20px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    z-index: 3;
}

.before-image .label {
    right: 20px;
}

.after-image .label {
    left: 20px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: transparent;
    z-index: 4;
    cursor: ew-resize;
    transform: translateX(-50%);
    pointer-events: none;
    /* Let input handle events */
}

/* Smooth transition class for auto-animation */
.slider-animating .after-image,
.slider-animating .slider-handle {
    transition: all 2s ease-in-out;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    margin: 0;
}

/* Serviços */
.services-section {
    padding: 5rem 5%;
    background-color: #0a0a0a;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.services-section .highlight {
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
    flex: 0 1 calc(25% - 2rem);
    /* 4 items per row minus gap */
    min-width: 250px;
    /* Prevent getting too small */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .service-card {
        flex: 0 1 calc(33.33% - 2rem);
        /* 3 items per row on tablet */
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 1 100%;
        /* 1 item per row on mobile */
    }
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 4px;
    font-size: 1.2rem;
}

/* Premium Section */
.premium-section {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.premium-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    /* Align to top to keep video higher */
}

.premium-text {
    flex: 1;
    min-width: 300px;
}

.premium-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.premium-desc {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.premium-note {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

.premium-list {
    margin-bottom: 2rem;
}

.premium-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.premium-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.amenities {
    margin-bottom: 2rem;
}

.amenities h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.amenities ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.amenities li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.amenities li i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.btn-premium {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.premium-video {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-video video {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    /* Limit height */
    display: block;
    margin: 0 auto;
    /* Centralizar se for mais estreito que o contêiner */
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.premium-video iframe {
    width: 100%;
    max-width: 360px;
    /* Vertical video width */
    height: 640px;
    /* Vertical video height */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    /* Adding the frame seen in the screenshot */
}

/* Mobile adjustments for Premium Video */
@media (max-width: 768px) {
    .premium-content {
        flex-direction: column-reverse;
        /* Colocar o vídeo em cima ou embaixo? O usuário disse que está "muito grande". Vamos manter a coluna padrão, mas ajustar o tamanho. */
    }

    .premium-video {
        width: 100%;
        margin-bottom: 2rem;
    }

    .premium-video iframe {
        max-width: 100%;
        height: 500px;
        /* Slightly shorter for mobile but still vertical */
        width: 280px;
        /* Approximate width for mobile vertical */
    }
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Interactive Video for Team Card */
.interactive-video-container {
    position: relative;
    overflow: hidden;
}

.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Focus on face */
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass through if needed, but we want hover */
}

.interactive-video-container:hover .hover-video {
    opacity: 1;
}

.interactive-video-container .static-img {
    position: relative;
    z-index: 1;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.7);
    /* Gold with opacity */
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button--left {
    left: 10px;
}

.carousel-button--right {
    right: 10px;
}

.carousel-button.is-hidden {
    display: none;
}

.interactive-video-container {
    cursor: pointer;
    /* Indicate clickable */
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    animation: zoomIn 0.3s ease;
}

.modal-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Transform Section Layout */
.transform-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    /* Use gap for equal spacing around divider */
    margin-top: 3rem;
    flex-wrap: wrap;
    /* Stack on mobile */
}

.comparison-slider {
    flex: 0 1 400px;
    /* Flex-basis 400px, can shrink */
    /* Standardize dimensions */
    width: 100%;
    /* For mobile */
    max-width: 400px;
    height: 600px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /* Fill the container */
    overflow: hidden;
}

.slider-spacer {
    display: none;
    /* No longer needed as we force height */
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fill the container */
    overflow: hidden;
}

.image-container img {
    width: 200%;
    /* Restore to 200% for collage logic */
    height: 100%;
    object-fit: cover;
    /* Ensure it fills without distortion */
    display: block;
    pointer-events: none;
}

.transform-divider {
    width: 3px;
    /* Thicker for visibility */
    height: 500px;
    /* Slightly shorter than content */
    background: var(--primary-color);
    /* Solid color for visibility */
    opacity: 0.6;
    /* Slight transparency for elegance */
    display: block;
    margin: 0;
    /* Reset margin, use gap */
    flex: 0 0 auto;
    /* Don't stretch */
    border-radius: 2px;
    /* Rounded ends */
}

/* Video Carousel */
.video-carousel {
    flex: 0 1 400px;
    /* Match slider flex */
    position: relative;
    height: 600px;
    /* Match slider height */
    width: 100%;
    max-width: 400px;
    /* Match slider width */
    margin: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 950px) {

    /* Increased breakpoint for better wrapping */
    .transform-divider {
        display: none;
    }

    .transform-content {
        gap: 2rem;
        /* Restore gap for stacked layout */
    }

    .video-carousel {
        margin-top: 0;
    }

    /* On mobile, let them be full width but max 400px */
    .comparison-slider,
    .video-carousel {
        width: 100%;
        flex: 0 0 auto;
        max-width: 400px;
        /* Keep max-width on mobile too for consistency */
        margin: 0 auto;
        /* Center on mobile */
    }
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    display: flex;
    /* Use Flexbox */
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    /* position: absolute;  <-- Removed */
    top: 0;
    bottom: 0;
    min-width: 100%;
    /* Each slide takes full width of container */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Or contain, depending on preference. Cover looks better for gallery */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--primary-color);
    /* Gold border */
    color: var(--primary-color);
    font-size: 1.2rem;
    /* Smaller icon */
    cursor: pointer;
    width: 40px;
    /* Fixed width */
    height: 40px;
    /* Fixed height */
    border-radius: 50%;
    /* Circular */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.7;
    /* Slightly transparent */
}

.carousel-button:hover {
    background: var(--primary-color);
    color: #000;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button--left {
    left: 20px;
    /* Inside the container */
}

.carousel-button--right {
    right: 20px;
    /* Inside the container */
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 10px;
}

.carousel-indicator {
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background: var(--primary-color);
}

.is-hidden {
    display: none;
}

@media (max-width: 768px) {
    .video-carousel {
        width: 100%;
        height: 400px;
    }

    .carousel-button--left {
        left: 10px;
    }

    .carousel-button--right {
        right: 10px;
    }
}

.gallery-section .highlight {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.1) translateY(-5px);
    /* Move slightly and zoom */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.reviews-section .highlight {
    color: var(--primary-color);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.stars {
    color: #f4c542;
    /* Star yellow */
    font-size: 0.9rem;
}

.google-icon {
    width: 24px !important;
    height: 24px !important;
    margin-left: auto;
    margin-right: 0 !important;
    border-radius: 0 !important;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* Scheduling Section */
.scheduling-section {
    position: relative;
    padding: 8rem 5%;
    background: url('https://via.placeholder.com/1920x600/111/333?text=Background') no-repeat center center/cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-scheduling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.scheduling-content {
    position: relative;
    z-index: 1;
}

.scheduling-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.scheduling-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.btn-scheduling {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.btn-scheduling:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-color);
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.team-section .highlight {
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.team-img {
    height: 350px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: left;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.role {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #fff;
}

.description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn-agendar {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #f4c542;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.btn-agendar:hover {
    background-color: #0f0f0f;
    transform: translateY(-2px);
}

.btn-agendar i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Google Reviews Section */
.reviews-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
    text-align: center;
    position: relative;
}

/* Rating Summary */
.rating-summary {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.average-rating {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rating-stars {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.total-reviews {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Reviews Carousel */
.reviews-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0.5rem;
    /* Added horizontal padding */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 100%;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.review-card {
    flex: 0 0 350px;
    /* Fixed width for cards */
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: left;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    /* For absolute positioning of icon */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
    /* Space for the icon */
}

.profile-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.review-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.stars {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.google-icon-link {
    position: absolute;
    top: 2rem;
    right: 2rem;
    transition: transform 0.3s ease;
}

.google-icon-link:hover {
    transform: scale(1.1);
}

.google-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.review-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    /* Limit lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-time {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
}

.loading-reviews {
    color: var(--text-muted);
    font-style: italic;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 85%;
        /* Wider on mobile */
    }
}

/* Units Section */
.units-section {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    /* Match Hours Section */
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.units-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    line-height: 1;
    color: #fff;
    position: relative;
    display: inline-block;
}

/* Divider */
.units-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.units-subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 600;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.unit-card {
    position: relative;
    height: 500px;
    border-radius: 12px;
    /* Rounded corners like other cards */
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.unit-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 10%, transparent 80%);
    opacity: 0.7;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.unit-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.unit-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.unit-address {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
    text-align: center;
}

.unit-address p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.btn-unit {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    /* Gold */
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.2s;
}

.btn-unit:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

/* Hover Effects */
.unit-card:hover .unit-bg {
    transform: scale(1.1);
}

.unit-card:hover .unit-overlay {
    opacity: 0.9;
    background: linear-gradient(to top, #000 40%, rgba(0, 0, 0, 0.6) 100%);
}

/* Services Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--primary-color);
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

#modal-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #252525;
    transform: translateX(5px);
    border-left: 3px solid var(--primary-color);
}

.service-info {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.service-time {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.2rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.btn-service-details {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-service-details:hover {
    background: var(--primary-color);
    color: #000;
}

.service-category-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 1.5rem 0 0.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.service-category-title:first-child {
    margin-top: 0;
}

.unit-card:hover .unit-content h3 {
    transform: translateY(-10px);
    color: var(--primary-color);
}

.unit-card:hover .unit-address {
    height: auto;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 1rem;
}

/* Footer Redesign */
.main-footer {
    background-color: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.developer-credit a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.developer-credit a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}