* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #fff;
}

body {
    font-family: Segoe UI, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

/* TOPBAR (mantido igual ao original) */
.topbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(40px, 4vw, 80px);
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.logo {
    font-size: clamp(16px, 1.5vw, 18px);
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff;
}

.menu {
    display: flex;
    gap: clamp(24px, 2.5vw, 32px);
}

.menu a {
    color: #ccc;
    text-decoration: none;
    font-size: clamp(12px, 1vw, 14px);
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.menu a i {
    margin-right: 6px;
    width: 14px;
    opacity: 0.8;
}

.menu a.active,
.menu a:hover {
    color: #fff;
}

.menu a.active i,
.menu a:hover i {
    opacity: 1;
}

.btn-agendar {
    position: relative;
    z-index: 1;
    background: #c81f3b;
    border: none;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    font-size: clamp(11px, 0.8vw, 12px);
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(200, 31, 59, 0.4);
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(200, 31, 59, 0.6);
}

/* HERO WRAPPER NOVO - Layout da imagem */
.hero-wrapper {
    min-height: calc(100vh - 70px);
    position: relative;
    background: #000;
}

.hero-section {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 1920px;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 80px);
    gap: 60px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: #c8a940;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.title {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.title span {
    color: #ffd700;
    font-style: italic;
    font-weight: 400;
}

.subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.5;
}

/* GALERIA GRID - 1 grande esquerda + 6 thumbs direita */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 40px auto;
}

.gallery-main {
    position: relative;
    height: 500px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 240px);
    gap: 20px;
}

.gallery-thumbs img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s;
}

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

/* RESPONSIVO */
@media (max-width: 1024px) {
    .hero-section {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        height: auto;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 16px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        height: auto;
    }

    .logo {
        order: 1;
    }
    
    .menu {
        gap: 12px;
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-agendar {
        order: 3;
        margin-top: 8px;
    }
    
    .hero-section {
        height: auto;
        padding: 20px;
    }
    
    .title {
        font-size: 36px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c81f3b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a81932; }
