/* Importação de Fontes e Ícones */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Merriweather:wght@400;700&family=Oswald:wght@700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif; /* Fonte mais clássica e robusta para o corpo */
    color: #f2f2f2; /* Cinza claro para texto, contraste com fundo escuro */
    line-height: 1.6;
    background-color: #1a1a1a; /* Fundo escuro geral */
}

h1, h2 {
    font-family: 'Bebas Neue', sans-serif; /* Fonte forte para títulos */
    letter-spacing: 2px;
}

h3 {
    font-family: 'Oswald', sans-serif; /* Fonte para subtítulos */
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.secao {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separador sutil */
}

.titulo-central {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #e6b32b; /* Dourado/bronze forte */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Header - Hero Section */
.hero {
    height: 85vh;
    background: url('https://images.unsplash.com/photo-1596464817505-8e4ee0626354?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; /* Imagem de barbearia rústica */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Overlay mais escuro para destaque */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.main-icon {
    font-size: 5rem;
    color: #e6b32b; /* Dourado */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(230, 179, 43, 0.5);
}

.hero h1 {
    font-size: 4.8rem;
    margin: 10px 0 20px;
    line-height: 1;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #ccc;
}

.btn-main {
    display: inline-block;
    padding: 18px 45px;
    background: #e6b32b; /* Dourado */
    color: #1a1a1a; /* Texto escuro no botão */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 179, 43, 0.4);
}

.btn-main:hover {
    background: #d49f1a;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(230, 179, 43, 0.6);
}

/* Seção Sobre o Barbeiro (História) */
.sobre-barbeiro {
    background-color: #1a1a1a;
    color: #f2f2f2;
}

.grid-sobre {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.texto-historia h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e6b32b;
}

.texto-historia p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ccc;
}

.destaque-anos {
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(230, 179, 43, 0.1);
    border-left: 5px solid #e6b32b;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e6b32b;
    display: inline-block;
}

.foto-placeholder {
    height: 450px;
    background: #333; /* Fundo mais escuro para placeholders */
    border: 3px solid #e6b32b; /* Borda dourada */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Galeria de Cortes */
.galeria-cortes {
    background-color: #222;
}

.grid-cortes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-corte {
    background: #333;
    border: 1px solid #444;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.card-corte:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.img-corte {
    height: 250px;
    background: #444; /* Fundo para as imagens dos cortes */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #bbb;
    font-size: 1.1rem;
}

.card-corte h3 {
    padding: 15px;
    font-size: 1.6rem;
    color: #e6b32b;
    background: #2b2b2b;
}

/* Seção de Serviços e Produtos Adicionais */
.servicos-adicionais {
    background-color: #1a1a1a;
}

.grid-servicos-adicionais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-servico-add {
    background: #2b2b2b;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border-top: 3px solid #e6b32b;
}

.card-servico-add i {
    font-size: 3rem;
    color: #e6b32b;
    margin-bottom: 20px;
}

.card-servico-add h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.card-servico-add p {
    color: #aaa;
}


/* Contato / Agendamento */
.contato {
    background: #0a0a0a;
    text-align: center;
    padding: 80px 0;
}

.contato h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e6b32b;
}

.contato p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.alinhamento-botao {
    display: flex;
    justify-content: center;
}

.btn-whatsapp {
    background: #25d366; /* Verde WhatsApp */
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 211, 102, 0.6);
}

/* Footer */
footer {
    padding: 30px;
    background: #000;
    color: #666;
    text-align: center;
    font-size: 0.9rem;
}

footer span {
    color: #e6b32b;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 900px) {
    .grid-sobre {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .foto-barbeiro {
        order: -1; /* Manda a foto para cima no mobile */
        margin-bottom: 40px;
    }
    .hero h1 { font-size: 3.5rem; }
    .titulo-central { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .main-icon { font-size: 4rem; }
    .texto-historia h2 { font-size: 2.2rem; }
    .destaque-anos { font-size: 1rem; padding: 10px 15px; }
    .contato h2 { font-size: 2.5rem; }
    .contato p { font-size: 1rem; }
    .btn-main, .btn-whatsapp {
        padding: 15px 30px;
        font-size: 1rem;
    }
}