/* public/assets/css/style.css */
body {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', sans-serif;
}

/* Hero (home) */
header {
    background: url('../img/banner.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 80, 0, 0.6); /* overlay verde escuro */
}

header .container {
    position: relative;
    z-index: 1;
}

/* Seções */
section {
    padding: 80px 0;
}

/* Imagem responsiva no sobre mim */
#sobre img {
    max-height: 400px;
    object-fit: cover;
}

/* Responsividade extra */
@media (max-width: 768px) {
    header {
        height: 70vh;
    }
    header h1 {
        font-size: 2rem;
    }
    #sobre img {
        max-height: 300px;
    }
}
