* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #faf7f2;
    color: #333;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    .navbar-brand {
        font-weight: 700;
        color: #9c6b4f;
        /* color: #c2301d; */
        font-size: 1.5rem;
    }

    .navbar-brand:hover {
        color: #9c6b4f;
    }

    .nav-link {
        color: #444 !important;
        font-weight: 500;
        transition: 0.3s;

        &:hover {
            color: #9c6b4f !important;
        }
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?q=80&w=1400&auto=format&fit=crop') center/cover; */
        background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('./images/loja.jpeg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;

    h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: auto;
        margin-bottom: 30px;
    }
}

.btn-custom {
    background-color: #c79b7b;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: 0.3s;

    &:hover {
        background-color: #9c6b4f;
        transform: translateY(-2px);
    }
}

section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;

    h2 {
        font-size: 2.5rem;
        color: #9c6b4f;
        font-weight: 700;
        margin-bottom: 15px;
    }

    p {
        color: #777;
        max-width: 700px;
        margin: auto;
    }
}

.service-card,
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;

    &:hover {
        transform: translateY(-8px);
    }

    img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
}

.card-body {
    padding: 25px;

    h5 {
        color: #9c6b4f;
        font-weight: 600;
        margin-bottom: 15px;
    }
}

.about {
    background-color: #fff;

    img {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
}

.about-text {
    h3 {
        color: #9c6b4f;
        font-weight: 700;
        margin-bottom: 20px;
    }
}

.gallery {
    img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 20px;
        transition: 0.3s;

        &:hover {
            transform: scale(1.03);
        }
    }
}

.contact-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-item {
    margin-bottom: 25px;

    h5 {
        color: #9c6b4f;
        font-weight: 600;
    }
}

footer {
    background-color: #9c6b4f;
    color: white;
    padding: 30px 0;
    text-align: center;
}

iframe {
    border-radius: 20px;
    width: 100%;
    height: 350px;
    border: none;
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

@media(max-width: 768px) {
    .hero {
        h1 {
            font-size: 2.7rem;
        }

        p {
            font-size: 1rem;
        }
    }
}