/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* HEADER TRANSPARENTE */
.topbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(40px, 4vw, 80px);
    color: #fff;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1920px;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.15);
}

.logo {
    font-size: clamp(15px, 1.4vw, 17px);
    letter-spacing: 2px;
    font-weight: 700;
    color: #b8897b;
}

.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.9vw, 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 i {
    margin-right: 6px;
}

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

/* HERO */
.hero-wrapper {
    min-height: 100vh;
    padding-top: 70px;
    background: url('../images/733.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}
     

.brand-right {
    position: absolute;
    right: clamp(45px, 4.5vw, 85px);
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    width: clamp(200px, 10vw, 350px); /* Tamanho fixo da linha = altura do título principal */
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    color: #b8897b;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: clamp(40px, 5vw, 60px);
}

.section-label {
    font-size: clamp(56px, 10vw, 90px);
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 18px;
    text-transform: none;
    font-weight: 300;
}

.title {
    font-size: clamp(56px, 10vw, 90px);
    line-height: 1.05;
    margin-bottom: 26px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 6px 30px rgba(0,0,0,0.7);
    letter-spacing: -1px;
}

.title span {
    font-weight: 300;
    color: #b8897b;
    font-style: italic;
}

.subtitle {
    font-size: clamp(15px, 1.35vw, 18px);
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 22px;
    line-height: 1.7;
    font-weight: 300;
}

.exclusividade {
    font-size: clamp(13px, 1.15vw, 15px);
    color: #c81f3b;
    max-width: 600px;
    margin: 0 auto 45px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-descobrir {
    display: inline-block;
    background: transparent;
    border: 1px solid #b8897b;
    color: #fff;
    padding: clamp(14px, 1.55vw, 17px) clamp(32px, 4vw, 40px);
    font-size: clamp(13px, 1.15vw, 14px);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.25);
}

.btn-descobrir::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.6s;
}

.btn-descobrir:hover {
    background: #b8897b;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184,137,123,0.35), inset 0 -2px 0 rgba(0,0,0,0.25);
}

.btn-descobrir:hover::before {
    left: 100%;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .hero-wrapper {
        background-attachment: scroll;
    }
    .hero-content {
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .topbar {
        height: auto;
        flex-direction: column;
        gap: 14px;
        padding: 16px 28px;
    }
    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
    .brand-right {
        right: 14px;
        transform-origin: right center;
        width: clamp(180px, 12vw, 280px);
    }
    .hero-content {
        padding: 60px 32px;
        max-width: 100%;
    }
    .title {
        font-size: clamp(64px, 13vw, 80px);
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 14px 20px;
    }
    .hero-content {
        padding: 50px 24px;
    }
    .brand-right {
        right: 10px;
        transform-origin: right center;
        width: clamp(160px, 14vw, 240px);
    }
    .title {
        font-size: 64px;
    }
}

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