/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #F3E5D8;
    color: #3B2A25;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    padding: 0 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 10;
}

.logo img {
    height: 70px;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #3B2A25;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #6B4F3A;
}

/* BANNER COM PROFUNDIDADE */
.banner {
    height: 100vh;
    padding-top: 70px;

    position: relative;

    background:
        linear-gradient(rgba(243,229,216,0.7), rgba(243,229,216,0.9)),
        url('../uploads/banner-cafe.png') no-repeat center center;

    background-size: cover;
    background-attachment: fixed; /* profundidade */

    display: flex;
    justify-content: center;
    align-items: center;
}

/* CAMADA DE PROFUNDIDADE */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
}

/* HERO */
.hero {
    position: relative;
    z-index: 1;

    max-width: 520px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transform: translateY(-5vh);
    animation: fadeUp 1s ease;
}

/* LOGO */
.logo-banner {
    width: 300px;
    margin-bottom: 18px;
}

/* TEXTO */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;
    margin-bottom: 8px;

    text-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hero p {
    font-size: 1.1em;
    color: #6B4F3A;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

/* BOTÕES */
.botoes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* BASE */
.btn {
    padding: 12px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* PRINCIPAL */
.btn.primary {
    background: #3B2A25;
    color: #fff;

    box-shadow: 0 6px 20px rgba(59,42,37,0.25);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59,42,37,0.35);
    background: #2a1e1a;
}

/* OUTLINE */
.btn.outline {
    border: 1px solid #3B2A25;
    color: #3B2A25;
    background: transparent;
    opacity: 0.85;
}

.btn.outline:hover {
    background: #3B2A25;
    color: #fff;
}

/* FOOTER */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #3B2A25;
    color: #fff;
    font-size: 0.9em;
}

/* ANIMAÇÃO */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-5vh);
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {

    nav ul {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .logo-banner {
        width: 70px;
    }
}