@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --preto: #0d0c0a;
    --pedra: #171511;
    --dourado: #c9a45c;
    --dourado-claro: #e3c985;
    --pergaminho: #e7d8b4;
    --texto: #eee5d2;
    --texto-suave: #aaa18f;
    --borda: rgba(201, 164, 92, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, #242016 0%, #11100d 35%, #090908 100%);
    color: var(--texto);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* CABEÇALHO */

header {
    text-align: center;
    padding: 28px 20px 24px;
    background: rgba(8, 8, 7, 0.96);
    border-bottom: 1px solid var(--borda);
}

header::before {
    content: "𓂀  ✦  Ω  ✦  𓂀";
    display: block;
    color: var(--dourado);
    font-size: 18px;
    letter-spacing: 12px;
    margin-bottom: 14px;
}

header h1 {
    font-family: 'Cinzel', serif;
    color: var(--dourado-claro);
    font-size: clamp(26px, 5vw, 48px);
    letter-spacing: 4px;
}

header p {
    color: var(--texto-suave);
    max-width: 760px;
    margin: 10px auto 0;
    font-size: 14px;
    line-height: 1.7;
}

/* HERO */

.hero {
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(rgba(8, 7, 5, 0.62), rgba(8, 7, 5, 0.94)),
        radial-gradient(circle at center, #5b4828 0%, #211b11 42%, #0b0a08 78%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    top: 55px;
    bottom: 55px;
    width: 1px;
    background: linear-gradient(
        transparent,
        var(--dourado),
        transparent
    );
    opacity: 0.45;
}

.hero::before {
    left: 7%;
}

.hero::after {
    right: 7%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content > span {
    display: inline-block;
    color: var(--dourado);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(38px, 7vw, 74px);
    line-height: 1.08;
    color: #f2e4c1;
    margin-bottom: 22px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
}

.hero p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: #c6bdab;
    line-height: 1.8;
    font-size: 16px;
}

.hero a {
    display: inline-block;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    color: #11100c;
    background: linear-gradient(
        135deg,
        #b99048,
        #e0c47d,
        #b88e43
    );
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: 1px solid #e4cc8e;
    transition: 0.25s ease;
}

.hero a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 164, 92, 0.2);
}

/* CIVILIZAÇÕES */

.civilizacoes {
    max-width: 1180px;
    margin: auto;
    padding: 90px 24px;
    text-align: center;
}

.civilizacoes > h2,
.produtos > h2 {
    font-family: 'Cinzel', serif;
    color: var(--dourado-claro);
    font-size: clamp(27px, 4vw, 40px);
    margin-bottom: 45px;
}

.civilizacoes > h2::after,
.produtos > h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: var(--dourado);
    margin: 18px auto 0;
}

.civilizacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.civilizacao {
    min-height: 270px;
    padding: 45px 28px;
    border: 1px solid var(--borda);
    background:
        linear-gradient(
            145deg,
            rgba(43, 38, 27, 0.75),
            rgba(17, 16, 13, 0.95)
        );
    position: relative;
    transition: 0.3s ease;
}

.civilizacao::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201, 164, 92, 0.12);
    pointer-events: none;
}

.civilizacao:hover {
    transform: translateY(-6px);
    border-color: var(--dourado);
}

.civilizacao span {
    display: block;
    color: var(--dourado);
    font-size: 48px;
    margin-bottom: 22px;
}

.civilizacao h3 {
    font-family: 'Cinzel', serif;
    color: #e5d3a6;
    font-size: 21px;
    margin-bottom: 14px;
}

.civilizacao p {
    color: var(--texto-suave);
    line-height: 1.7;
    font-size: 14px;
}

/* PRODUTOS */

.produtos {
    padding: 90px 24px 110px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(201, 164, 92, 0.1);
}

.produtos > h2 {
    margin-bottom: 12px;
}

.produtos > p {
    color: var(--texto-suave);
    margin-bottom: 45px;
}

#lista-produtos {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* RODAPÉ */

footer {
    text-align: center;
    padding: 55px 20px;
    border-top: 1px solid var(--borda);
    background: #080807;
}

footer::before {
    content: "𓂀  ◇  Ω  ◇  𓂀";
    display: block;
    color: var(--dourado);
    margin-bottom: 20px;
    letter-spacing: 8px;
}

footer h3 {
    font-family: 'Cinzel', serif;
    color: var(--dourado-claro);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

footer p {
    color: #777064;
    font-size: 13px;
}

/* CELULAR */

@media (max-width: 768px) {

    header {
        padding: 22px 16px;
    }

    header::before {
        letter-spacing: 5px;
        font-size: 14px;
    }

    header h1 {
        letter-spacing: 2px;
    }

    .hero {
        min-height: 520px;
        padding: 65px 22px;
    }

    .hero-content > span {
        font-size: 10px;
        line-height: 1.8;
        letter-spacing: 1.5px;
    }

    .hero p {
        font-size: 14px;
    }

    .civilizacoes {
        padding: 65px 18px;
    }

    .civilizacoes-grid {
        grid-template-columns: 1fr;
    }

    .civilizacao {
        min-height: auto;
    }

    .produtos {
        padding: 65px 16px 80px;
    }

    #lista-produtos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
/* Faixa ornamental histórica */
.ornamento-historico {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 900px;
    margin: 70px auto;
    padding: 0 24px;
    color: #d4af55;
}

.ornamento-historico span {
    font-size: 24px;
    color: #d4af55;
    text-shadow: 0 0 12px rgba(212, 175, 85, 0.25);
}

.ornamento-historico i {
    display: block;
    width: 110px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d4af55,
        transparent
    );
}

@media (max-width: 600px) {
    .ornamento-historico {
        gap: 9px;
        margin: 45px auto;
        padding: 0 15px;
    }

    .ornamento-historico span {
        font-size: 18px;
    }

    .ornamento-historico i {
        width: 35px;
    }
}