html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
}

body {
    background:#023020;
    color: rgb(255, 255, 255);
}



.share img:hover {
    filter: brightness(0) invert(1);
    cursor: pointer;
}

.share {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.share a {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.3s ease, background 0.3s ease;
}

.share img {
    width: 40px;
    filter: brightness(0) invert(1);
}

.share a:hover {
    transform: translateY(-3px) scale(1.1);
    background: #D4A373; /* cor do seu botão */
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


main {
    flex: 1;
}

/* HERO */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("imagens/fachada.png") center/cover no-repeat;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}



.hero h1 {
    font-size: clamp(2.8rem, 9vw, 6rem);
   
}

.hero p {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    margin-bottom: 30px;
}
.btn {
    background: #c7a17a;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}
/* SECTIONS */
section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* FILTROS */
.filtros {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filtros button {
    
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: rgba(13, 35, 30, 1);
    color: white;
    padding: 12px 18px;
    font-size: 0.9rem;
}


/* MENU */
.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}


.item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    transition: 0.3s;
    color: black;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.item h4 {
    margin: 15px;
}

.item span {
    display: block;
    margin: 0 15px 20px;
    font-weight: bold;
}

/* AVALIAÇÕES */
.avaliacao {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: black;
}

/* FOOTER */
footer {
    background: rgba(13, 35, 30, 1);
    color: #D4A373;
    text-align: center;
    padding: 12px 10px;
    font-size: 0.9rem;
}

footer a {
    color: #D4A373;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* TABLET */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    section {
        padding: 90px 20px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 15px;
    }

    .share {
        top: 15px;
        gap: 12px;
    }

    footer {
        font-size: 0.8rem;
    }
}

