/* ============================================================
   VARIÁVEIS CSS
   ============================================================ */
:root {
    --roxo: #4B296B;
    --dourado: #D4AF37;
    --bege: #F9F6F0;
    --branco: #FFFFFF;
    --cinza-claro: #f1ede7;
    --texto-escuro: #2d1b3d;
    --sombra: 0 8px 24px rgba(75, 41, 107, 0.06);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bege);
    color: var(--texto-escuro);
    line-height: 1.5;
    padding-top: 64px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background-color: var(--roxo);
    color: var(--branco);
    box-shadow: 0 4px 12px rgba(75, 41, 107, 0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 41, 107, 0.3);
    background-color: #3f1f5a;
}

.hero__btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.hero__btn:hover::after {
    opacity: 1;
}

.btn--gold {
    background: linear-gradient(135deg, var(--dourado), #b8952e);
    color: var(--branco);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.btn--large {
    padding: 14px 36px;
    font-size: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.navbar__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--roxo);
    cursor: pointer;
    transition: var(--transition);
}

.navbar__logo:hover {
    opacity: 0.8;
}

.navbar__logo-text {
    display: inline-block;
}

.navbar__list {
    display: flex;
    gap: 28px;
}

.navbar__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--texto-escuro);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.navbar__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--dourado);
    transition: var(--transition);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__link--shopee {
    color: var(--dourado);
    font-weight: 600;
}

/* Hambúrguer */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger__line {
    width: 24px;
    height: 2px;
    background-color: var(--roxo);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar__hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.navbar__hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
    opacity: 0;
}
.navbar__hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Menu mobile */
.navbar__mobile {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.04);
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2000;
    padding: 32px 24px;
    overflow-y: auto;
}

.navbar__mobile--open {
    right: 0;
}

.navbar__mobile-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.navbar__mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--roxo);
    cursor: pointer;
    margin-bottom: 32px;
    transition: var(--transition);
}

.navbar__mobile-close:hover {
    transform: rotate(90deg);
}

.navbar__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.navbar__mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--texto-escuro);
    transition: var(--transition);
    padding: 4px 0;
    border-bottom: 1px solid rgba(75, 41, 107, 0.04);
}

.navbar__mobile-link:hover {
    color: var(--roxo);
    padding-left: 6px;
}

.navbar__mobile-link--shopee {
    color: var(--dourado);
    font-weight: 600;
}

/* ============================================================
   HERO (mais compacto)
   ============================================================ */
.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(180deg, var(--bege) 0%, #fff 100%);
}

.hero__container {
    max-width: 640px;
    margin: 0 auto;
}

.hero__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: var(--roxo);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 12px 32px rgba(75, 41, 107, 0.10);
}

.hero__logo svg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.hero__title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--roxo);
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--texto-escuro);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero__text {
    font-size: 0.95rem;
    color: #5a4a6b;
    max-width: 440px;
    margin: 0 auto 24px;
    font-weight: 300;
    line-height: 1.6;
}

/* ============================================================
   PRODUTOS (compacto)
   ============================================================ */
.produtos {
    padding: 40px 0 32px;
    background: var(--branco);
}

.produtos__header {
    text-align: center;
    margin-bottom: 28px;
}

.produtos__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dourado);
    background: rgba(212, 175, 55, 0.08);
    padding: 4px 14px;
    border-radius: 40px;
    margin-bottom: 6px;
}

.produtos__title {
    font-size: 2rem;
    color: var(--roxo);
    margin-bottom: 4px;
}

.produtos__desc {
    color: #6b5a7a;
    font-weight: 300;
    font-size: 0.9rem;
}

.produtos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

/* Card produto mais compacto */
.produto-card {
    background: var(--bege);
    border-radius: 16px;
    padding: 12px 12px 16px;
    transition: var(--transition);
    box-shadow: var(--sombra);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}

.produto-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.produto-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(75, 41, 107, 0.08);
}

.produto-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    background: #e8e0d6;
    margin-bottom: 10px;
}

.produto-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--roxo);
    margin-bottom: 2px;
}

.produto-card__desc {
    font-size: 0.75rem;
    color: #6b5a7a;
    margin-bottom: 10px;
    font-weight: 300;
    flex: 1;
}

.produto-card__btn {
    background: none;
    border: 1.5px solid var(--dourado);
    color: var(--dourado);
    padding: 4px 16px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.7rem;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.produto-card__btn:hover {
    background: var(--dourado);
    color: var(--branco);
    transform: scale(1.04);
}

.produtos__action {
    text-align: center;
}

/* ============================================================
   VANTAGENS (compacto)
   ============================================================ */
.vantagens {
    padding: 40px 0 32px;
    background: var(--bege);
}

.vantagens__header {
    text-align: center;
    margin-bottom: 28px;
}

.vantagens__title {
    font-size: 1.8rem;
    color: var(--roxo);
    font-weight: 600;
}

.vantagens__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vantagem-card {
    background: var(--branco);
    padding: 20px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--sombra);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}

.vantagem-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.vantagem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(75, 41, 107, 0.05);
}

.vantagem-card__icon {
    font-size: 2rem;
    margin-bottom: 6px;
    display: block;
}

.vantagem-card__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--roxo);
    margin-bottom: 2px;
}

.vantagem-card__desc {
    font-size: 0.8rem;
    color: #6b5a7a;
    font-weight: 300;
}

/* ============================================================
   CHAMADA FINAL (compacta)
   ============================================================ */
.chamada {
    padding: 48px 0;
    background: var(--roxo);
    color: var(--branco);
    text-align: center;
}

.chamada__container {
    max-width: 520px;
}

.chamada__title {
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.chamada__text {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 24px;
}

.chamada .btn--primary {
    background: var(--dourado);
    color: var(--roxo);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.chamada .btn--primary:hover {
    background: #e6c34a;
    transform: translateY(-2px);
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
    background: var(--branco);
    padding: 32px 0 20px;
    border-top: 1px solid rgba(75, 41, 107, 0.04);
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--roxo);
}

.footer__copy {
    font-size: 0.75rem;
    color: #8a7a9a;
    font-weight: 300;
}

.footer__agency {
    font-size: 0.75rem;
    color: #8a7a9a;
}

.footer__agency-link {
    font-weight: 600;
    color: var(--roxo);
    transition: var(--transition);
    position: relative;
}

.footer__agency-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--dourado);
    transition: var(--transition);
}

.footer__agency-link:hover::after {
    width: 100%;
}

.footer__agency-link:hover {
    color: var(--dourado);
}

/* ============================================================
   BOTÃO VOLTAR AO TOPO
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--roxo);
    color: var(--dourado);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(75, 41, 107, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top--visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #3f1f5a;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* Tablets */
@media (max-width: 992px) {
    .produtos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .vantagens__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }
    .navbar__menu {
        display: none;
    }
    .navbar__hamburger {
        display: flex;
    }

    .hero {
        min-height: 45vh;
        padding: 30px 16px 20px;
    }
    .hero__logo {
        width: 80px;
        height: 80px;
    }
    .hero__logo svg {
        width: 80px;
        height: 80px;
    }
    .hero__title {
        font-size: 2.4rem;
    }
    .hero__subtitle {
        font-size: 1.1rem;
    }
    .hero__text {
        font-size: 0.85rem;
    }

    .produtos {
        padding: 28px 0 20px;
    }
    .produtos__title {
        font-size: 1.6rem;
    }
    .produtos__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .produto-card {
        padding: 8px 8px 12px;
    }
    .produto-card__name {
        font-size: 0.85rem;
    }
    .produto-card__desc {
        font-size: 0.7rem;
    }
    .produto-card__btn {
        font-size: 0.65rem;
        padding: 3px 12px;
    }

    .vantagens {
        padding: 28px 0 20px;
    }
    .vantagens__grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
        gap: 12px;
    }
    .vantagem-card {
        padding: 16px 12px;
    }

    .chamada {
        padding: 32px 0;
    }
    .chamada__title {
        font-size: 1.6rem;
    }
    .btn--large {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .produtos__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 280px;
        margin: 0 auto 20px;
    }
    .hero__title {
        font-size: 2rem;
    }
}