/* 
   ================================================
   MICRO HÁBITOS DA ALTA PRODUTIVIDADE - STYLESHEET
   ================================================
   Design Premium - Alta Conversão
*/

:root {
    --bg-dark: #0F1115;
    --bg-darker: #08090b;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --gray: #A0AAB2;
    --light-gray: #E0E0E0;
    --white: #FFFFFF;
    --danger: #ff4757;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base */
html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, .accordion-button {
    font-family: var(--font-heading);
}

.fw-300 { font-weight: 300; }
.fw-900 { font-weight: 900; }
.text-gold { color: var(--gold) !important; }
.text-gray { color: var(--gray) !important; }
.text-light-gray { color: var(--light-gray) !important; }
.bg-premium-dark { background-color: var(--bg-dark); }
.bg-darker { background-color: var(--bg-darker); }

/* Typography Gradients */
.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Borders */
.border-gold { border: 1px solid var(--gold) !important; }
.border-red { border: 1px solid rgba(255, 71, 87, 0.3) !important; }
.border-left-gold { border-left: 4px solid var(--gold) !important; }
.border-top-gold { border-top: 1px solid rgba(212, 175, 55, 0.3) !important; }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-darker);
    transform: translateY(-2px);
}
.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--bg-darker);
}

/* Shadows */
.shadow-gold {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.shadow-gold-lg {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}
.mockup-shadow {
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.floating-mockup {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.pulse-btn {
    animation: pulse-btn 2.5s infinite;
}

@keyframes pulse-icon {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}
.pulse-icon {
    display: inline-block;
    animation: pulse-icon 1.5s infinite;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    color: var(--bg-darker);
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.bg-gradient-radial {
    background: radial-gradient(circle at center right, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gold);
    filter: blur(150px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Checklists */
.checklist-red li::before {
    content: '\f00d'; /* fa-times */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--danger);
    margin-right: 10px;
}
.checklist-gold li::before {
    content: '\f00c'; /* fa-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    margin-right: 10px;
}
.checklist-red li, .checklist-gold li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Benefits Icons */
.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
}
.benefit-card:hover .icon-box {
    background: var(--gold);
    color: var(--bg-darker);
    transform: scale(1.1) rotate(5deg);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(212, 175, 55, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: var(--bg-dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}
.timeline-content {
    padding: 20px;
}
@media screen and (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-icon { left: 11px; right: auto; }
    .timeline-item:nth-child(even) .timeline-icon { left: 11px; }
}

/* Accordion */
.custom-accordion .accordion-button {
    box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.custom-accordion .accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(72%) sepia(54%) saturate(432%) hue-rotate(5deg) brightness(94%) contrast(89%); /* Gold approx */
}

/* Offer Ribbon */
.ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gold);
    transform: rotate(45deg);
    padding: 5px 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-sticky-cta.show {
    transform: translateY(0);
}
.pb-6 {
    padding-bottom: 6rem !important; /* Space for sticky footer */
}

/* Utilities */
.max-w-800 { max-width: 800px; margin: auto; }
.tracking-wide { letter-spacing: 2px; }
