/* ==========================================================================
   DESENHO E ESTILO DE LUXO - LC PARFUM
   Tema: Branco e Dourado (Ouro Real)
   ========================================================================== */

/* Variáveis do Sistema de Design */
:root {
    --white-pure: #ffffff;
    --white-pearl: #faf9f5;
    --white-cream: #f4f2ea;
    
    /* Gradiente e Tons de Ouro Real */
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #b89742;
    --gold-deep: #8a6f27;
    --gold-gradient: linear-gradient(135deg, #c5a044 0%, #fcf7d3 30%, #d4af37 70%, #9e7f2a 100%);
    --gold-text-gradient: linear-gradient(135deg, #b89742 0%, #e2d197 50%, #8a6f27 100%);
    
    /* Cores de Texto */
    --text-dark: #1d1b18;
    --text-medium: #5c5750;
    --text-muted: #8e877d;
    
    /* Sombras e Bordas */
    --shadow-subtle: 0 10px 30px rgba(28, 27, 25, 0.03);
    --shadow-luxury: 0 20px 40px rgba(212, 175, 55, 0.08);
    --shadow-glow: 0 15px 35px rgba(212, 175, 55, 0.2);
    
    /* Fontes */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset Moderno */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--white-pearl);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Canvas de Partículas do Fundo */
#gold-mist-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Orbes de Brilho de Fundo */
.luxury-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 229, 171, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: pulse-glow 10s ease-in-out infinite alternate;
}

.glow-orb.top-left {
    top: -10%;
    left: -10%;
}

.glow-orb.bottom-right {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0) 75%);
    animation-delay: 3s;
}

/* Container Principal */
.page-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Cabeçalho / Perfil */
.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal-up 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.logo-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 4px;
    background: var(--gold-gradient);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    animation: float 6s ease-in-out infinite;
}

.profile-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--white-pure);
    display: block;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold-gradient);
    filter: blur(15px);
    z-index: 1;
    opacity: 0.5;
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

.store-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.store-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-medium);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.2rem;
}

.store-description {
    font-size: 0.88rem;
    color: var(--text-medium);
    font-weight: 400;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Seção de Botões de Ação */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 3.5rem;
    gap: 16px;
    opacity: 0;
    transform: translateY(25px);
    animation: reveal-up 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.luxury-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-luxury);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    cursor: pointer;
}

/* Linha de borda gradiente metálica em hover */
.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: var(--gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.luxury-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.luxury-btn:hover::before {
    opacity: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg);
    pointer-events: none;
}

.luxury-btn:hover .btn-shine {
    animation: shine-sweep 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white-cream);
    color: var(--gold-deep);
    margin-right: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.luxury-btn:hover .btn-icon {
    background: var(--gold-gradient);
    color: var(--white-pure);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.btn-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.btn-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.6;
    transition: all 0.4s ease;
    transform: translateX(0);
}

.luxury-btn:hover .btn-arrow {
    opacity: 1;
    color: var(--gold-primary);
    transform: translateX(4px);
}

/* Diferenciação sutil nos botões */
.whatsapp-btn:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover .btn-icon {
    /* Toque de WhatsApp verde-dourado luxuoso */
    background: linear-gradient(135deg, #25d366 0%, #1ea852 100%);
    color: var(--white-pure);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}


/* Manifesto / Qualidade */
.manifesto-section {
    width: 100%;
    margin-bottom: 3.5rem;
    position: relative;
    padding: 22px;
    border-radius: 20px;
    background: var(--white-pure);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    opacity: 0;
    transform: translateY(25px);
    animation: reveal-up 1s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
    overflow: hidden;
}

.manifesto-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: var(--gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.manifesto-tagline {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-deep);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.manifesto-section p {
    font-size: 0.78rem;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Rodapé */
.profile-footer {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal-up 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white-pure);
    color: var(--text-medium);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    box-shadow: var(--shadow-subtle);
}

.social-icon-btn:hover {
    color: var(--white-pure);
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-badge {
    margin-bottom: 1rem;
}

.footer-badge span {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-dark);
    text-transform: uppercase;
}

.copyright {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   ANIMAÇÕES E KEYFRAMES
   ========================================================================== */

@keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 20px 35px rgba(212, 175, 55, 0.18);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.4;
        transform: scale(0.98);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

@keyframes reveal-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* Responsividade e Melhorias em Telas Pequenas */
@media (max-width: 380px) {
    .page-container {
        padding: 30px 16px;
    }
    .store-title {
        font-size: 1.6rem;
    }

}
