* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* ===== HEADER ===== */

header {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    height: 90px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
}

.logo img {
    height: 80px;
    width: auto;
}

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

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 20px;
    transition: 0.3s;
}

nav a:hover {
    color: #b48c5a;
}

/* Compensa o header fixo */
section {
    padding: 120px 10%;
}

/* ===== HERO ===== */

.hero {
    height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("Imagens/Banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero button {
    padding: 18px 45px;
    border: none;
    background: #b48c5a;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 20px;
    font-weight: 600;
}

.hero button:hover {
    background: #9c7649;
}

/* ===== CATÁLOGO ===== */

.catalogo h2,
.sobre h2,
.contato h2 {
    text-align: center;
    margin-bottom: 40px;
}

.categorias {
    text-align: center;
    margin-bottom: 40px;
}

.categorias button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background: #ddd;
    cursor: pointer;
    border-radius: 20px;
    transition: 0.3s;
    font-weight: 600;
}

.categorias button:hover,
.categorias button.ativo {
    background: #b48c5a;
    color: white;
}

.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.produto:hover {
    transform: translateY(-5px);
}

.produto {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    cursor: pointer;

    display: flex;
    flex-direction: column;
}

.produto img {
    width: 100%;
    height: 250px;        /* força tamanho igual */
    object-fit: cover;    /* corta sem distorcer */
    border-radius: 8px;
    display: block;
}

/* ===== SOBRE ===== */

.sobre p {
    max-width: 800px;
    margin: 15px auto;
    text-align: center;
    line-height: 1.6;
}

/* ===== CONTATO ===== */

.contato {
    background: #f4f1ec;
    text-align: center;
}

.contato-container {
    max-width: 600px;
    margin: auto;
}

.contato p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #555;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.info-contato {
    margin-top: 40px;
    color: #666;
    line-height: 1.8;
}

/* ===== FOOTER ===== */

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}

/* ===== MODAL ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-conteudo {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
}

.modal-conteudo img {
    width: 100%;
    height: 400px;     /* tamanho fixo */
    object-fit: cover;
    border-radius: 8px;
}

#miniaturas {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#miniaturas img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

#miniaturas img:hover {
    transform: scale(1.1);
}

.modal-conteudo span {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    font-weight: bold;
}

.destaque {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b48c5a, #9c7649);
    color: white;
    height: 250px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    padding: 20px;
}

.destaque:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-conteudo h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cta-conteudo p {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.botao-cta {
    display: inline-block;
    background: white;
    color: #b48c5a;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}
* { outline: none !important; }
.produto { user-select: none; cursor: pointer; }
