@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&display=swap');

:root {
    --azul-principal: #2B6A85;
    --bege-claro: #F7F5F0;
    --bege-destaque: #E9D8B4;
    --verde-whats: #25D366;
    --texto-escuro: #2A2A2A;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bege-claro);
    color: var(--texto-escuro);
}

/* HEADER */
header {
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.banner-topo {
    width: 95%;
    max-width: 1200px;
    height: 260px;
    background: url("../img/banner.png") center/contain no-repeat;
}

/* MENU */
nav {
    background: var(--azul-principal);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 14px;
}

nav a {
    color: var(--bege-destaque);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    text-align: center;
    padding: 40px 20px;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    color: var(--azul-principal);
    font-size: 32px;
}

.hero p {
    max-width: 600px;
    margin: 15px auto;
}

.hero a {
    display: inline-block;
    background: var(--verde-whats);
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
}

/* PRODUTOS */
.produtos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.produto {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
    transition: transform .3s ease;
}

.produto:hover {
    transform: translateY(-6px);
}

.produto img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.produto .info {
    padding: 12px;
}

.produto h3 {
    font-size: 15px;
    margin: 6px 0;
    color: var(--azul-principal);
}

.preco {
    font-size: 18px;
    font-weight: bold;
    color: var(--azul-principal);
    margin-bottom: 8px;
}

.botao {
    display: inline-block;
    background: var(--verde-whats);
    color: #fff;
    text-align: center;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* SOBRE / PÁGINAS INTERNAS */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--azul-principal);
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.box p {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 18px;
    text-align: justify;
}

.frase {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #E0E0E0;
    text-align: center;
    font-style: italic;
    font-size: 17px;
    color: var(--azul-principal);
}

/* COMO COMPRAR */
.passo {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,.1);
}

.passo h2 {
    color: var(--azul-principal);
    font-size: 22px;
    margin-bottom: 10px;
}

.passo p {
    font-size: 16px;
    line-height: 1.6;
}

/* DEPOIMENTOS */
.depoimentos {
    background: #fff;
    padding: 50px 20px;
}

.depoimentos h2 {
    text-align: center;
    color: var(--azul-principal);
    font-family: 'Playfair Display', serif;
}

.depoimentos-grid {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.depoimento {
    background: var(--bege-claro);
    padding: 20px;
    border-radius: 16px;
}

.estrelas {
    color: #FFD700;
    margin: 6px 0;
}

/* FOOTER */
footer {
    background: var(--azul-principal);
    color: var(--bege-destaque);
    text-align: center;
    padding: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
    .produtos {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-topo {
        height: 200px;
    }

    .box {
        padding: 30px 22px;
    }

    .box h2 {
        font-size: 26px;
    }
}