/* --- CONFIGURAÇÕES GERAIS --- */
:root {
    --gold: #C5A059;
    --gold-hover: #d4af37;
    --black: #050505;
    --dark-gray: #121212;
    --light-gray: #1e1e1e;
    --text-gray: #cccccc;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--black);
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* --- ANIMAÇÕES DE SCROLL --- */
.hidden-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.hidden-element.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- SISTEMA DE CARROSSEL --- */
.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 5%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
}

.carousel-container::-webkit-scrollbar { display: none; }

.carousel-item {
    flex: 0 0 auto;
    width: 85%;
    max-width: 320px;
    scroll-snap-align: center;
    position: relative;
}

@media (min-width: 769px) {
    .carousel-container {
        justify-content: center;
        flex-wrap: wrap; 
    }
    .carousel-item { width: 300px; }
}

/* --- BOTÕES --- */
.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    padding: 14px 35px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.4s;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--gold);
    letter-spacing: 1px;
}
.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.btn-gold-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    border: 2px solid #bfa15f;
    color: #bfa15f;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: 0.3s;
    background: transparent;
}
.btn-gold-outline:hover {
    background-color: #bfa15f;
    color: #fff;
}

/* --- BOTÃO WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { background-color: #1ebe57; transform: scale(1.1); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- CABEÇALHO & NAVEGAÇÃO COMPLETA --- */
.top-bar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.social-icons a { color: var(--white); font-size: 1.2rem; transition: 0.3s; }
.social-icons a:hover { color: var(--gold); }

/* Botão Menu Hambúrguer */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.menu-toggle:hover { color: var(--gold); }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%), url('hero-desktop.jpg'); 
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center; 
    text-align: left;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    max-width: 650px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}
.hero h1 span { color: var(--gold); }

.hero-moved-text {
    font-size: 1.1rem;
    max-width: 500px;
    margin-top: 30px;
    color: #eee;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.google-badge {
    margin-top: 30px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.stars { color: #f4c542; }

/* --- TITULOS --- */
.section-title { font-family: 'Anton', sans-serif; font-size: 3rem; margin-bottom: 30px; text-transform: uppercase; line-height: 1.1; }
.section-subtitle { color: var(--gold); font-weight: bold; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; display: block;}

/* --- CARDS --- */
.choose-style { padding: 100px 0 80px 0; background-color: var(--dark-gray); text-align: center; }

.card {
    height: 350px;
    background-size: cover; background-position: center;
    border: 1px solid #333; cursor: pointer; transition: 0.5s;
    display: block;
    border-radius: 8px;
    position: relative;
}

.card-corte { background-image: linear-gradient(to top, rgba(0,0,0,0.95), transparent), url('corte.jpeg'); }
.card-barba { background-image: linear-gradient(to top, rgba(0,0,0,0.95), transparent), url('barba.jpeg'); }
.card-combo { background-image: linear-gradient(to top, rgba(0,0,0,0.95), transparent), url('combo.jpeg'); }

.card:hover { transform: scale(1.02); border-color: var(--gold); }
.card-content { position: absolute; bottom: 0; width: 100%; padding: 30px; text-align: left; }
.card h3 { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--white); margin-bottom: 5px; }
.card span { color: var(--gold); font-size: 0.9rem; text-transform: uppercase; }

/* --- CLUBE DE ASSINATURA --- */
.club-section {
    padding: 100px 0;
    background-color: var(--black);
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

.plan-card {
    background-color: #151515;
    border: 1px solid #333;
    padding: 40px 20px;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.plan-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.plan-card.highlight { border: 2px solid var(--gold); background-color: #1a1a1a; }
.badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background-color: var(--gold); color: #000; padding: 5px 15px;
    font-weight: bold; text-transform: uppercase; font-size: 0.8rem; border-radius: 20px;
}
.plan-name { font-size: 1.5rem; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; display: block; }
.plan-price { font-family: 'Anton', sans-serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; display: block; }
.plan-features { list-style: none; margin-bottom: 30px; text-align: left; padding: 0 10px; }
.plan-features li { margin-bottom: 10px; color: #aaa; font-size: 0.9rem; }
.plan-features li i { color: var(--gold); margin-right: 10px; }

.gold-emphasis { color: var(--gold); font-weight: 800; text-transform: uppercase;}

/* --- SEÇÃO TOUR VIRTUAL 360° --- */
.tour-section {
    padding: 100px 0;
    background-color: var(--dark-gray);
    text-align: center;
}
.tour-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.tour-wrapper {
    position: relative;
    border: 2px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    background: #000;
}
.tour-wrapper iframe {
    display: block;
    width: 100%;
    transition: 0.3s;
}

/* Nova máscara para cobrir a logo no Tour 360 */
.mascara-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px; 
    height: 45px;
    background-color: var(--black); 
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 8px; 
    border-right: 1px solid var(--gold); 
    border-bottom: 1px solid var(--gold);
    pointer-events: none; 
}

.mascara-logo img {
    height: 25px; 
    width: auto;
}

/* --- EQUIPE --- */
.team-section { padding: 80px 0; background-color: var(--black); text-align: center; }

.barber-card { background-color: var(--light-gray); border-radius: 10px; overflow: hidden; transition: 0.4s; border: 1px solid #333; height: 100%; }

/* Nova formatação da imagem para acessibilidade (Tag img invés de div com background) */
.barber-img { 
    width: 100%; 
    height: 350px; 
    object-fit: cover; 
    object-position: top; 
    filter: grayscale(100%); 
    transition: 0.4s; 
    display: block;
}
.barber-card:hover .barber-img { filter: grayscale(0%); }

.barber-info { padding: 20px; text-align: left; }
.barber-name { color: var(--white); font-weight: 700; font-size: 1.2rem; display: block; }
.barber-role { color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.barber-bio { color: var(--text-gray); font-size: 0.85rem; line-height: 1.5; }

/* --- SERVIÇOS --- */
.services-section { padding: 100px 0; background-color: var(--dark-gray); }

.service-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 380px;
}

.service-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.icon-box { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.service-card h3 { font-family: 'Anton', sans-serif; font-size: 1.5rem; color: #fff; margin-bottom: 15px; letter-spacing: 1px; }
.service-card p { color: #999; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; font-family: 'Montserrat', sans-serif; }
.price-tag { font-weight: bold; color: var(--gold); font-size: 1.3rem; margin-bottom: 20px; display: block; }
.btn-service { padding: 10px 25px; border: 1px solid #333; color: #fff; text-transform: uppercase; font-size: 0.8rem; font-weight: bold; transition: 0.3s; display: inline-block; }
.service-card:hover .btn-service { background-color: var(--gold); color: #000; border-color: var(--gold); }
.highlight-card { border-color: var(--gold); background: linear-gradient(145deg, #151515, #0a0a0a); }

/* --- LOCALIZAÇÃO --- */
.location-section { background-color: #f5f5f5; color: #111; padding: 80px 5%; border-top: 5px solid var(--gold); }
.location-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.location-info { flex: 1; min-width: 300px; }
.location-map { flex: 1; min-width: 300px; height: 400px; background: #ddd; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.2); border: 2px solid var(--gold); }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.loc-title { font-family: 'Anton', sans-serif; font-size: 3rem; text-transform: uppercase; line-height: 1; margin-bottom: 20px; color: #222; }
.loc-desc { font-size: 1.1rem; color: #666; margin-bottom: 40px; font-weight: 500; }
.contact-row { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-row i { font-size: 1.5rem; color: #bfa15f; margin-top: 5px; }
.contact-row p { font-size: 1rem; color: #333; line-height: 1.6; font-weight: 600; }

/* --- DEPOIMENTOS --- */
.reviews-section { padding: 60px 5%; background-color: var(--black); text-align: center; }
.review-card { background: #111; padding: 20px; border-radius: 8px; max-width: 300px; text-align: left; border: 1px solid #333; height: 100%; }
.review-stars { color: #f4c542; font-size: 0.8rem; margin-bottom: 10px; }
.review-text { font-style: italic; color: #ccc; font-size: 0.9rem; }
.review-author { display: block; margin-top: 15px; font-weight: bold; color: var(--gold); font-size: 0.9rem; }

/* --- FOOTER --- */
footer { background-color: #000; padding: 50px 5%; text-align: center; border-top: 3px solid var(--gold); }
.footer-logo { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--gold); }

/* --- RESPONSIVIDADE & MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(5, 5, 5, 0.98);
        padding: 20px 0;
        border-bottom: 2px solid var(--gold);
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        background: 
            linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%),
            linear-gradient(to top, var(--dark-gray) 0%, rgba(18,18,18,0.8) 15%, transparent 40%),
            url('hero-mobile.jpg');
        background-size: cover;
        background-position: center bottom;
        align-items: flex-start;
        text-align: center;
        padding-top: 140px; 
    }

    .hero-content {
        align-items: center;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem; 
        margin-bottom: 40px; 
    }

    .hero-moved-text { max-width: 100%; font-size: 1rem; }
    
    .barber-img { filter: grayscale(0%) !important; }
    
    .tour-section { padding: 60px 0; }
    .tour-wrapper iframe { height: 450px; }

    .loc-title { font-size: 2.2rem; text-align: center; }
    .location-container { flex-direction: column-reverse; }
    .location-map { width: 100%; height: 300px; }
    .location-info { text-align: center; }
    .contact-row { justify-content: center; text-align: left; }
    
    .section-title { padding: 0 5%; }
    .section-subtitle { padding: 0 5%; }
    .club-section p { padding: 0 5%; }
}