@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave+Display&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --gold: #c9a24d;
    --dark-bg: #000000;
    --card-bg: #0a0a0a;
    --text-muted: #a0a0a0;
    --glass: rgba(0, 0, 0, 0.8);
}

html, body { height: 100%; }
body { display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding-top: 90px;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 110px;
}

.haze-navbar {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 162, 77, 0.2);
    padding: 0.8rem 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.haze-navbar .titulo {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.haze-navbar .subtitulo {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.haze-navbar .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.haze-navbar .nav-link:hover {
    color: var(--gold) !important;
}

.btn-agendar {
    background-color: #C9A24D !important;
    background: #C9A24D !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    isolation: isolate !important;
    color: #000 !important;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: none !important; 
}

.btn-agendar:hover {
    background: #ffffff !important;
    transform: scale(1.05);
}

.hero {
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.hero-logo-bg {
    position: absolute;
    width: 60%;
    max-width: 700px;
    opacity: 0.05;
    pointer-events: none;
}

.grafite {
    font-family: 'Sedgwick Ave Display', cursive;
    line-height: 1.1;
}

.hero-content h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
.hero-content h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--gold);
    margin-bottom: 20px;
}

.service-item {
    transition: 0.4s;
    cursor: default;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px !important;
}

.service-item h3 {
    margin-top: auto;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.15);
    background-color: #0d0d0d;
}

.img-service {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: grayscale(1);
    transition: 0.4s;
    margin-bottom: 20px;
}

.service-item:hover .img-service {
    filter: grayscale(0);
    transform: scale(1.1);
}

.card-equipe {
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2rem;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer {
    background: #050505;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #111;
    color: var(--text-muted);
}

.cta {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0a0a0a, #000);
    text-align: center;
    border-top: 1px solid rgba(201, 162, 77, 0.1);
}

.cta h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 18px 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.cta-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 162, 77, 0.2);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #128c7e;
}

.text-gold { color: var(--gold); }

@media (max-width: 768px) {
    .haze-navbar { background: #000; }
    .hero-content h1 { font-size: 2.5rem; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

@media (max-width: 600px) {
    .subtitulo {
        display: block !important;
        white-space: normal !important;
        text-align: center !important;
        font-size: 14px !important;
        overflow: visible !important;
        width: 100% !important;
        padding: 0 10px !important;
    }
}