/* 
    LM Contabilidade - Custom Styles
    Luxury/Premium Dark Theme
*/

:root {
    --primary-gold: #E8C46B;
    --background-dark: #131313;
    --text-primary: #E5E2E1;
    --text-muted: #D0C5B2;
}

* {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Typography */
.font-playfair {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.01em;
}

.font-dm-sans {
    font-family: 'DM Sans', sans-serif;
}

/* Noise Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glassmorphism Header */
.header {
    height: 85px !important;
    border-bottom: 1px solid rgba(232, 196, 107, 0);
    transition: background 0.3s, border-bottom-color 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
    background: rgba(19, 19, 19, 0.8);
    backdrop-filter: blur(15px);
    border-bottom-color: rgba(232, 196, 107, 0.1);
    height: 85px !important;
}

/* Hero Gradient */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--background-dark), transparent);
    z-index: 15;
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Service Cards (Atelier Style) */
.service-card {
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.service-card:hover {
    background: rgba(232, 196, 107, 0.05);
    border-color: rgba(232, 196, 107, 0.2);
    transform: translateY(-5px);
}

/* Plan Cards Highlight */
.plan-card-popular {
    box-shadow: 0 0 40px rgba(232, 196, 107, 0.1);
}

/* Custom Selection */
::selection {
    background: var(--primary-gold);
    color: var(--background-dark);
}

/* Simple Animation Utilities */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}