/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background: #fff;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: white;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    font-size: 16px;
}

/* MENU */
nav a {
    margin-left: 35px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
}

nav a:hover {
    color: #b77b72;
}

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url("img/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 10%;
    color: white;
}

.hero-text {
    max-width: 500px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.1;
}

.hero h1 span {
    font-weight: 700;
}

.hero p {
    margin: 20px 0;
    font-size: 18px;
    opacity: 0.9;
}

/* BOTÃO */
.btn {
    display: inline-block;
    background: white;
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background: #b77b72;
    color: white;
}

/* BENEFÍCIOS */
.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #111;
    color: white;
    padding: 20px 5%;
    font-size: 13px;
    text-align: center;
}

.benefit {
    letter-spacing: 1px;
}

/* COLEÇÃO */
.colecao {
    padding: 90px 8%;
    text-align: center;
}

.colecao h2 {
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    padding: 50px 20px;
    background: white;
    border: 1px solid #eee;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: #222;
}

.card:hover {
    background: #b77b72;
    color: white;
    transform: translateY(-5px);
}

/* SOB ENCOMENDA */
.sob-encomenda {
    padding: 80px 8%;
    text-align: center;
    background: #f4f4f4;
}

.sob-encomenda h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.sob-encomenda p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* FOOTER */
footer {
    padding: 25px;
    text-align: center;
    font-size: 13px;
    background: #111;
    color: white;
}

/* SCROLL SUAVE */
html {
    scroll-behavior: smooth;
}
/* MODAL */
.modal {
    display: none; /* escondido por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.modal-content img {
    width: 100%;
    margin-bottom: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}