/*
Theme Name: Do Medo à Plenitude
Description: Tema WordPress para landing page de e-book espiritual com design premium e conversão otimizada
Author: Seu Nome
Version: 1.0
Text Domain: medo-plenitude
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Design System - Cores */
:root {
    /* Background System */
    --background: #0a0a0a;
    --foreground: #ffffff;
    
    /* Card System */
    --card: #111111;
    --card-foreground: #ffffff;
    
    /* Golden System - Cor Principal */
    --primary: #FFD700;
    --primary-foreground: #000000;
    
    /* Red System - Cor Secundária */
    --destructive: #e63946;
    --destructive-foreground: #ffffff;
    
    /* Secondary System */
    --secondary: #1a1a1a;
    --secondary-foreground: #ffffff;
    
    /* Muted System */
    --muted: #262626;
    --muted-foreground: #cccccc;
    
    /* Accent System */
    --accent: #0f0f0f;
    --accent-foreground: #ffffff;
    
    /* Border & Input */
    --border: rgba(255, 215, 0, 0.2);
    --input: #262626;
    --ring: #FFD700;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a0a0a, #141414);
    --gradient-section: linear-gradient(180deg, #0a0a0a, #0f0f0f);
    --gradient-card: linear-gradient(145deg, #111111, #1a1a1a);
    --gradient-golden: linear-gradient(135deg, #FFD700, #ffdf4d);
    
    /* Shadows */
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-golden: 0 0 40px rgba(255, 215, 0, 0.3);
    --shadow-button: 0 8px 25px -8px rgba(255, 215, 0, 0.4);
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Typography */
.headline-primary {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary), #ffdf4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.headline-secondary {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-golden {
    color: var(--primary);
    font-weight: 600;
}

.text-muted {
    color: var(--muted-foreground);
}

/* Button Styles */
.btn-premium-3d {
    position: relative;
    background: linear-gradient(145deg, #FFD700, #FFA500, #FFD700);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 
        0 8px 16px rgba(255, 215, 0, 0.3),
        0 4px 8px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.btn-premium-3d::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FFA500);
    border-radius: 14px;
    z-index: -1;
    animation: glow-rays 2s ease-in-out infinite alternate;
}

.btn-premium-3d::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateY(-50%);
    transition: left 0.6s;
}

.btn-premium-3d:hover::after {
    left: 100%;
}

.btn-premium-3d:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 24px rgba(255, 215, 0, 0.4),
        0 8px 16px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

@keyframes glow-rays {
    0% {
        filter: drop-shadow(0 0 5px #FFD700) drop-shadow(0 0 10px #FFD700);
    }
    100% {
        filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #FFD700) drop-shadow(0 0 30px #FFA500);
    }
}

/* Section Backgrounds */
.section-hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: var(--card);
}

.section-accent {
    background: var(--accent);
}

/* Card Styles */
.benefit-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.benefit-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

/* Grid Systems */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Special Effects */
.glow-effect {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Countdown Timer */
.countdown-timer {
    background: var(--destructive);
    color: var(--destructive-foreground);
    font-weight: 700;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(230, 57, 70, 0.3);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
    display: inline-block;
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn-premium-3d {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 400px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* WordPress Specific */
.wp-block-group {
    margin: 0;
}

.entry-content {
    max-width: none;
}

.site-main {
    margin: 0;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.8);
}