#frentesalao {
    width: 100%; max-width: 500px;
    text-align: center; border-radius: 50%;
}
#frentesalao img { width: 100%; height: auto; }

.ficha-container {
    background-color: #ffffff;
    padding: 2.5rem; margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
}
.ficha-container h2 {
    color: #350303; padding-bottom: 1rem; margin-bottom: 1.5rem;
    border-bottom: 2px solid #B77D00; font-size: 1.8rem;
}

/* --- Hero Section --- */
.hero-welcome {
    position: relative; width: 100%;
    height: 70vh; min-height: 450px;
    background-image: url('/images/foto-salao-hero.jpg');
    background-size: cover; background-position: center;
    background-attachment: fixed;
    display: flex; justify-content: center; align-items: center;
    padding: 0 30px; box-sizing: border-box;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); z-index: 1;
}

.hero-content {
    position: relative; z-index: 2; max-width: 700px;
}
.hero-content h1 {
    color: #ffffff; font-size: 3.5rem; font-weight: bold; margin-bottom: 1rem;
}
.hero-content .lead {
    color: #f0f0f0; font-size: 1.25rem; margin-bottom: 2.5rem;
}

/* Botão específico do Hero */
.hero-content .btn-agendar {
    padding: 15px 35px; font-size: 1rem;
    background-color: var(--cor-dourado, #c5a137);
    color: #fff; border-color: var(--cor-dourado, #c5a137);
}
.hero-content .btn-agendar:hover {
    background-color: transparent;
    color: var(--cor-dourado, #c5a137);
}

/* Responsividade Hero */
@media (max-width: 768px) {
    .hero-welcome {
        height: 60vh; min-height: 400px;
        background-attachment: scroll;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content .lead { font-size: 1.1rem; }
}