body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #0b0c10;
}

/* NAV */
.luna-nav {
    width: 100%;
    padding: 5px 0;
    position: fixed;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.2);
}

.luna-nav .container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.luna-logo {
    height: 70px;
}

/* LOGO NO HERO – grande */
.luna-logo-hero {
    position: absolute;
    top: 70px;
    /* abaixo do header */
    left: 60px;
    /* mesma margem-left do header */
    z-index: 900;
}

.luna-logo-hero img {
    width: 260px;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
}

/* LOGO DO HEADER – escondida inicialmente */
.luna-logo-header {
    height: 55px;
    opacity: 0;
    transform: translateY(-10px);
    transition: .4s ease;
}

.luna-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.luna-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: .3s;
}

.luna-nav a:hover {
    color: #B18A54;
}

.login-btn {
    padding: 8px 16px;
    background: #C9A46A;
    border-radius: 25px;
    color: #1D1D1F !important;
}

.login-btn:hover {
    background: #B18A54;
    /* dourado escuro */
    transform: translateY(-3px);
}

.luna-nav .nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.luna-nav .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: .3s;
}

.luna-nav .nav-links a:hover {
    color: #BFA181;
}

.login-btn {
    padding: 8px 16px;
    background: #BFA181;
    border-radius: 25px;
    color: #000 !important;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    position: relative;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: all .25s ease;
}

.nav-toggle span:nth-child(2) {
    margin-left: 0;
    margin-top: 4px;
}

/* Animação para X quando aberto */
.luna-nav.is-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.luna-nav.is-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
    .luna-nav {
        padding: 14px 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .luna-logo {
        height: 46px;
    }

    .nav-toggle {
        display: flex;
        /* aparece só no mobile */
    }

    .luna-nav .nav-links {
        position: fixed;
        inset: 60px 0 0 0;
        /* abaixo do header */
        background: rgba(5, 5, 7, 0.96);
        backdrop-filter: blur(20px);
        padding: 32px 24px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform .28s ease, opacity .28s ease;
    }

    /* Quando o menu está aberto */
    .luna-nav.is-open {
        background: rgba(5, 5, 7, 0.96) !important;
    }

    .luna-nav.is-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .luna-nav .nav-links li {
        width: 100%;
    }

    .luna-nav .nav-links a {
        display: block;
        width: max-content;
        font-size: 1.05rem;
    }

    .luna-nav .login-btn {
        display: inline-block;
        width: auto;
        margin-top: 8px;
    }

    /* Evitar scroll do body quando o menu está aberto */
    body.nav-open {
        overflow: hidden;
    }
}

/* HERO */
.luna-hero {
    height: 100vh;
    background: url('/img/Image_ela_001.png') center/cover no-repeat;
    position: relative;
}

.luna-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.hero-content {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #d7d7d7;
}

.hero-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    background: #C9A46A;
    color: #1D1D1F;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.hero-btn:hover {
    background: #B18A54;
    /* dourado escuro */
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 900px) {
    .luna-nav {
        backdrop-filter: none;
        background: none;
    }

    .luna-logo-hero {
        position: absolute;
        top: 0;
        left: calc(50% - 100px);
        z-index: 900;
    }

    .luna-logo-hero img {
        width: 200px;
        filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
    }

    .hero-content h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    }
}

/* SEÇÕES */
.section {
    padding: 100px 0;
}

.container {
    width: 90%;
    margin: auto;
}

.split {
    display: flex;
    align-items: center;
    gap: 40px;
}

.split .text {
    flex: 1;
    margin-left: 10%;
}

.split .image img {
    width: 100%;
    margin: 0 25%;
    border-radius: 10px;
}

/* SOBRE SECTION */
.sobre-block {
    display: flex;
    align-items: center;
    gap: 70px;
}

.sobre-block .text {
    flex: 1;
    max-width: 520px;
}

.sobre-block h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -1px;
    position: relative;
}

.sobre-block .divider {
    width: 65px;
    height: 3px;
    background: linear-gradient(90deg, #C8B28A, #F1E4C4);
    border-radius: 10px;
    margin: 14px 0 26px 0;
}

.sobre-block p {
    color: #e3e3e3;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* IMAGE IMPROVEMENTS */
.sobre-img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    border: 1px solid rgba(191, 161, 129, 0.4);
    box-shadow: 0 0 40px rgba(191, 161, 129, 0.15);
    background: radial-gradient(circle, rgba(191, 161, 129, 0.12) 0%, transparent 70%);
}

/* MOBILE */
@media (max-width: 900px) {
    .section {
        padding: 20px 0 30px;
    }

    .sobre-block {
        flex-direction: column;
        text-align: center;
    }

    .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .split .image img {
        margin: 0;
    }
}

/* BENEFÍCIOS */
/* Título da sessão */
#beneficios .sec-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #F5F5F5;
}

#beneficios .sec-subtitle {
    text-align: center;
    color: #B7BAC8;
    font-size: 0.95rem;
}

.beneficio-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FDFDFD;
}

.beneficio-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #B4B7C5;
}

/* Novo grid */
.beneficios-new-grid {
    margin-top: 40px;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.beneficio-card {
    position: relative;
    background: #101116;
    border-radius: 24px;
    padding: 40px 32px 32px;
    text-align: center;
    border: 1px solid #1c1d23;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* linha dourada no topo do card */
.beneficio-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E5C48F, #ffffff, #E5C48F);
    opacity: .55;
}

.benef-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benef-img img {
    max-height: 170px;
    width: auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    transition: transform .4s ease, box-shadow .4s ease, filter .4s ease;
}

.beneficio-card:hover .benef-img img {
    transform: scale(1.04);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.9);
    filter: drop-shadow(0 0 20px rgba(229, 196, 143, 0.45));
}

/* Responsivo */
@media (max-width: 1024px) {
    .beneficios-new-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .beneficios-new-grid {
        grid-template-columns: 1fr;
    }

    .beneficio-card {
        padding: 28px 22px 26px;
    }

    .benef-img {
        height: 150px;
    }
}

/* PRODUTOS */
/* ---------- PRODUTOS LUNA ---------- */

/* ---------- PRODUTOS LUNA – LAYOUT PREMIUM ---------- */

.produtos {
    padding-top: 60px;
}

.produtos-header {
    margin-bottom: 40px;
}

.prod-kicker {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #BFA181;
    /* dourado */
    margin-bottom: 6px;
    opacity: 0.85;
}

.sec-title {
    font-size: 1.9rem;
    font-weight: 600;
    color: #ffffff;
}

.produtos .divider {
    width: 65px;
    height: 3px;
    background: linear-gradient(90deg, #C8B28A, #F1E4C4);
    border-radius: 10px;
    margin: 14px 0 26px 0;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 32px;
}

/* Card base */

.prod-card {
    position: relative;
    background: #101214;
    border-radius: 18px;
    padding: 40px 24px 30px;
    text-align: center;
    border: 1px solid #1d2026;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.75);
    transition:
        transform .30s ease,
        box-shadow .30s ease,
        border-color .30s ease,
        background .30s ease;
}

.prod-card:hover {
    transform: translateY(-6px);
    border-color: rgba(191, 161, 129, 0.8);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9);
    background: radial-gradient(circle at top, rgba(191, 161, 129, 0.16), #101214);
}

/* Tagzinha em cima do produto */

.prod-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid rgba(191, 161, 129, 0.4);
    color: #f5f0e8;
    background: rgba(9, 10, 14, 0.9);
    margin-bottom: 18px;
}

/* Imagem do produto */

.prod-img {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.prod-img img {
    max-height: 100%;
    width: auto;
    display: block;
    transition: transform .30s ease, filter .30s ease;
}

.prod-card:hover .prod-img img {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.9));
}

/* Textos */

.prod-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #ffffff;
}

.prod-desc {
    font-size: .92rem;
    color: #b5b7c0;
    line-height: 1.5;
    min-height: 3.4em;
}

/* Botão */

.prod-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(191, 161, 129, 0.6);
    font-size: .82rem;
    text-decoration: none;
    color: #f5f0e8;
    background: radial-gradient(circle at top, rgba(191, 161, 129, 0.35), rgba(9, 9, 11, 0.95));
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.prod-btn:hover {
    background: linear-gradient(135deg, #bfa181, #f5e7c8);
    color: #111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px);
}


.prod-card.featured {
    background:
        radial-gradient(circle at top left, rgba(191, 161, 129, 0.25), transparent 55%),
        radial-gradient(circle at bottom right, rgba(120, 96, 70, 0.3), #101214);
    border-color: rgba(191, 161, 129, 0.72);
}

.prod-card.featured h3 {
    color: #f9f4eb;
}

.prod-card.featured .prod-desc {
    color: #e5dfd3;
}


/* RESPONSIVO */
@media (max-width: 900px) {
    .prod-card.featured {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 100%;
    }

    .prod-card.featured .prod-text {
        align-items: center;
        margin-top: 16px;
    }
}

@media (max-width: 600px) {
    .sec-title {
        font-size: 1.8rem;
    }

    .prod-card {
        padding: 28px 20px 24px;
    }

    .prod-img img {
        max-height: 130px;
    }
}


/* CTA */
.cta {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at top left, #cba87a 0%, #8b6f4a 40%, #5a442e 100%);
    color: #000;
    overflow: hidden;
}

/* logo em marca d’água */
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/img/logoLuna.png') center no-repeat;
    background-size: 260px;
    opacity: 0.07;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.cta-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content {
    background: rgba(0, 0, 0, 0.26);
    border-radius: 28px;
    padding: 50px 40px 40px;
    text-align: center;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: #f8f4ee;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 28px;
    color: #e5dfd4;
}

/* botões */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.cta-btn-primary {
    background: #f4d7a4;
    color: #1b130b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.cta-btn-primary:hover {
    background: #ffe3b9;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.cta-btn-outline {
    background: transparent;
    color: #f4d7a4;
    border-color: rgba(244, 215, 164, 0.6);
}

.cta-btn-outline:hover {
    background: rgba(0, 0, 0, 0.45);
    border-color: #f4d7a4;
}

/* micro-benefícios */
.cta-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 26px;
    font-size: 0.9rem;
    color: #f1e4d1;
}

.cta-highlights li::before {
    content: "✦";
    margin-right: 6px;
    color: #f4d7a4;
}

/* responsivo */
@media (max-width: 768px) {
    .cta {
        padding: 70px 0;
    }

    .cta-content {
        padding: 40px 24px 32px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-highlights {
        flex-direction: column;
        align-items: center;
    }
}


/* FOOTER */
.luna-footer {
    padding: 40px 0;
    text-align: center;
    background: #000;
    color: #999;
}