/* ================= RESET & BÁSICO ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; } /* Rolagem suave nativa */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #d4af37; }

body { font-family: 'Montserrat', sans-serif; background: #0a0a0a; color: #f4f4f4; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ================= NAVBAR ================= */
#navbar { position: fixed; top: 0; width: 100%; background: rgba(10, 10, 10, 0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 900; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s ease; }
#navbar.scrolled { padding: 10px 0; background: rgba(10, 10, 10, 0.95); box-shadow: 0 5px 20px rgba(0,0,0,0.5); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 20px;}
.nav-logo { font-size: 1.5rem; font-weight: 800; color: #fff; }
.nav-logo span { color: #d4af37; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #ccc; font-weight: 600; font-size: 0.9rem; transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: #d4af37; transition: width 0.3s ease; }
.nav-links a:hover { color: #d4af37; }
.nav-links a:hover::after { width: 100%; }

/* ================= HERO REFORMULADO (100vh + Parallax) ================= */
.hero { 
    position: relative;
    min-height: 100vh; /* Ocupa 100% da tela */
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    /* Imagem de fundo premium com Parallax */
    background: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat fixed;
}

/* Camada escura por cima da imagem para dar contraste no texto */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    width: 100%; 
    max-width: 800px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px; /* Compensa a navbar */
}

/* Badge de Localização */
.hero-badge {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 25px;
}

/* Novo Título H1 */
.hero-title { 
    font-size: 3.8rem; 
    font-weight: 800; 
    color: #fff; 
    line-height: 1.1; 
    margin-bottom: 20px; 
    letter-spacing: -1px;
}
.hero-title span { color: #d4af37; }

/* Subtítulo */
.hero-subtitle { 
    font-size: 1.15rem; 
    color: #ddd; 
    max-width: 600px; 
    margin: 0 auto 35px auto; 
    line-height: 1.6;
}

/* Botões da Hero */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.btn-agendar { background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%); color: #121212; padding: 15px 35px; font-weight: 800; text-transform: uppercase; border-radius: 50px; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 0.95rem; letter-spacing: 1px;}
.btn-agendar:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); filter: brightness(1.1); }

.btn-outline { display: inline-block; padding: 14px 35px; border: 2px solid #fff; color: #fff; font-weight: 700; text-transform: uppercase; border-radius: 50px; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.btn-outline:hover { background: #fff; color: #121212; transform: translateY(-3px); }

/* Confiança (Estrelas) */
.hero-stats { margin-top: 10px; }
.hero-stats .estrelas { color: #d4af37; font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 5px; }
.hero-stats p { font-size: 0.85rem; color: #aaa; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Animação do Mouse Scroll */
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0.7; transition: 0.3s; }
.scroll-indicator:hover { opacity: 1; }
.mouse { width: 26px; height: 42px; border: 2px solid #fff; border-radius: 15px; position: relative; }
.mouse::before { content: ''; width: 4px; height: 8px; background: #d4af37; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); border-radius: 4px; animation: scroll-anim 1.5s infinite; }
@keyframes scroll-anim { 0% { top: 8px; opacity: 1; } 100% { top: 24px; opacity: 0; } }

/* Animações de Entrada (Hero) */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUpAnim 0.8s ease forwards; }
.fade-in-down { opacity: 0; transform: translateY(-20px); animation: fadeInDownAnim 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeInUpAnim { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDownAnim { to { opacity: 1; transform: translateY(0); } }


/* ================= SERVIÇOS, EQUIPE E RESTANTE (MANTIDO INTACTO) ================= */
.anima-scroll { opacity: 0; visibility: hidden; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.anima-scroll.ativo { opacity: 1; visibility: visible; transform: none; }
.fade-up { transform: translateY(40px); }
.zoom-in { transform: scale(0.9); }
.scale-up { transform: scale(0.95) translateY(20px); }

.servicos { padding: 100px 0; text-align: center; background: #0a0a0a;}
.servicos h2 { font-size: 2.5rem; color: #d4af37; margin-bottom: 50px; }
.menu-tabela { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(8px); border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 16px; padding: 50px; text-align: left; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.menu-titulo-categoria { color: #d4af37; font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; border-bottom: 1px solid rgba(212,175,55,0.3); padding-bottom: 10px; }
.mt-40 { margin-top: 40px; }
.menu-item { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; }
.item-info-texto h4 { color: #fff; font-size: 1.1rem; font-weight: 500; margin: 0; letter-spacing: 0.5px; }
.item-info-texto p { color: #888; font-size: 0.75rem; margin: 0; font-style: italic; }
.linha-pontilhada { flex-grow: 1; border-bottom: 1px dotted #444; margin: 0 15px 6px 15px; opacity: 0.5; }
.item-preco-tabela { color: #d4af37; font-size: 1.2rem; font-weight: 600; }

.equipe { padding: 100px 0; text-align: center; background-color: #0d0d0d; }
.equipe h2 { font-size: 2.5rem; color: #d4af37; margin-bottom: 50px; }
.grid-equipe { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; justify-content: center; }
.card-equipe { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid rgba(212, 175, 55, 0.1); transform-style: preserve-3d; }
.card-equipe img { width: 100%; height: 400px; object-fit: cover; filter: grayscale(60%); transition: 0.5s; }
.card-equipe:hover img { filter: grayscale(0%); }
.info-equipe { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%); padding: 30px 20px 20px; text-align: left; transform: translateZ(40px); }
.info-equipe h3 { color: #d4af37; font-size: 1.5rem; margin-bottom: 5px; }
.info-equipe p { color: #ddd; font-size: 0.95rem; }

.galeria { padding: 100px 0; text-align: center; background-color: #111; }
.galeria h2 { color: #d4af37; font-size: 2.5rem; margin-bottom: 50px; }
.grid-galeria { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.grid-galeria img { width: 100%; height: 350px; object-fit: cover; border-radius: 12px; filter: grayscale(80%) contrast(1.2); transition: 0.5s; }
.grid-galeria img:hover { filter: grayscale(0%) contrast(1); transform: scale(1.03); z-index: 2; position: relative; }

.localizacao { padding: 100px 0; text-align: center; background: #0a0a0a;}
.localizacao h2 { color: #d4af37; font-size: 2.5rem; margin-bottom: 15px; }
.mapa-container { border: 2px solid #333; border-radius: 12px; overflow: hidden; margin-top: 30px; }

.rodape { text-align: center; padding: 80px 0; background-color: #050505; border-top: 1px solid #1a1a1a; }
.rodape h2 { margin-bottom: 15px; font-size: 2.2rem; }
.rodape p { color: #aaa; }

/* ================= WHATSAPP & TOAST ================= */
.btn-whatsapp-flutuante { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; border-radius: 50px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 999; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.btn-whatsapp-flutuante img { width: 34px; height: 34px; filter: brightness(0) invert(1); }
.btn-whatsapp-flutuante:hover { transform: scale(1.1) rotate(5deg); background-color: #20b858; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }

#toast-container { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background-color: #1a1a1a; border-left: 4px solid #d4af37; color: #fff; padding: 15px 25px; border-radius: 8px; font-weight: 600; opacity: 0; transform: translateY(20px); transition: 0.4s; }
.toast.mostrar { opacity: 1; transform: translateY(0); }
.toast.erro { border-left-color: #e74c3c; }

/* ================= MODAL PREMIUM ================= */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); backdrop-filter: blur(10px); }
.premium-modal { background-color: #1a1a1a; margin: 5% auto; padding: 0; border-radius: 16px; width: 95%; max-width: 500px; position: relative; animation: slideUpModal 0.4s; overflow: hidden; border: 1px solid rgba(212, 175, 55, 0.2); }
@keyframes slideUpModal { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-header { background: #222; padding: 25px; text-align: center; border-bottom: 1px solid #333; }
.modal-header h2 { color: #d4af37; font-size: 1.5rem; }
.modal-header p { color: #888; font-size: 0.9rem; margin-top: 5px; }
.close-btn { position: absolute; top: 15px; right: 20px; color: #fff; font-size: 28px; cursor: pointer; transition: 0.3s; }
.close-btn:hover { color: #d4af37; transform: rotate(90deg); }

.form-premium { padding: 30px; }
.form-section { margin-bottom: 25px; }
.input-group { position: relative; margin-bottom: 20px; }
.input-group input, .select-premium { width: 100%; padding: 16px; background-color: transparent; border: 1px solid #444; color: #fff; border-radius: 8px; font-size: 1rem; font-family: 'Montserrat', sans-serif; outline: none; transition: 0.3s; }
.input-group label { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); background-color: #1a1a1a; padding: 0 5px; color: #666; pointer-events: none; transition: 0.3s; }
.input-group input:focus, .input-group input:not(:placeholder-shown), .select-premium:focus { border-color: #d4af37; }
.input-group input:focus + label, .input-group input:not(:placeholder-shown) + label { top: 0; font-size: 0.8rem; color: #d4af37; font-weight: bold; }

.select-wrapper { position: relative; }
.select-premium { appearance: none; -webkit-appearance: none; cursor: pointer; background-color: #1a1a1a; color: #d4af37; font-weight: 600; }
.select-premium option, .select-premium optgroup { background-color: #1a1a1a; color: #fff; }
.select-arrow { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #d4af37; pointer-events: none; font-size: 0.8rem; }

.data-group input { color: #d4af37; font-weight: bold; }
::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(1) hue-rotate(10deg) saturate(300%); cursor: pointer; }
.grade-horarios-premium { display: grid; grid-template-columns: repeat(auto-fit, minmax(75px, 1fr)); gap: 10px; margin-top: 15px; }
.btn-horario { background-color: transparent; color: #fff; border: 1px solid #444; padding: 10px; border-radius: 6px; cursor: pointer; font-size: 0.95rem; font-weight: bold; transition: 0.2s; font-family: 'Montserrat', sans-serif; }
.btn-horario:hover { border-color: #d4af37; color: #d4af37; background: #222; }
.btn-horario.selecionado { background-color: #d4af37; color: #121212; border-color: #d4af37; }

.btn-confirmar { width: 100%; background: #d4af37; color: #121212; padding: 16px; border: none; border-radius: 8px; font-size: 1rem; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.3s; margin-top: 10px; }
.btn-confirmar:hover { background: #c5a028; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); }

/* Responsividade Hero */
@media(max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; padding: 0 15px; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px;}
    .btn-agendar, .btn-outline { width: 100%; }
    .menu-tabela { grid-template-columns: 1fr; padding: 30px; gap: 40px; }
}