/* css/estilo.css */
:root {
    --gold: #c69a5d;
    --gold-dark: #b08a4e;
    --dark: #282828;
    --dark2: #444;
    --black: black;
    --white: #fff;
    --radius: 16px;
    --shadow: 0 6px 32px 0 #0004;
    --font: 'Montserrat', Arial, sans-serif;
}

body {
    min-height: 100vh;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    color: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remova o background antigo se estiver usando overlay */
    position: relative;
    overflow-x: hidden;
}

/* Novo background com overlay usando pseudo-elemento */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url('../img/bg-barbearia.jpg') center center / cover no-repeat;
    opacity: 1;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    /* Overlay escuro com leve dourado */
    background: linear-gradient(120deg, rgba(40,40,40,0.84) 60%, rgba(198,154,93,0.26) 100%);
    /* Você pode ajustar a opacidade para mais ou menos escuro */
    pointer-events: none;
}
.centraliza-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
