/*
Theme Name: Detetive de Promoções
Description: Tema moderno para encontrar passagens aéreas com preços baixos. Design neon com cores azul e rosa.
Version: 1.0
Author: Seu Nome
*/

/* DETETIVE DE PROMOÇÕES Design System */

:root {
    /* Brand Colors - Azul + Rosa Neon Theme */
    --background: 0 0% 100%;
    --foreground: 220 15% 15%;
    
    --dark-bg: 220 25% 8%;
    --dark-bg-light: 220 20% 12%;
    --dark-foreground: 0 0% 98%;
    
    /* Neon Colors */
    --neon-blue: 200 100% 50%;
    --neon-blue-glow: 200 100% 50%;
    --neon-pink: 330 100% 60%;
    --neon-pink-glow: 330 100% 60%;
    
    /* Brand Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(220 25% 8%) 0%, hsl(220 20% 12%) 50%, hsl(220 25% 8%) 100%);
    --gradient-section: linear-gradient(135deg, hsl(200 100% 50% / 0.1) 0%, hsl(330 100% 60% / 0.1) 100%);
    --gradient-card: linear-gradient(135deg, hsl(220 20% 12%) 0%, hsl(220 15% 15%) 100%);
    --gradient-neon: linear-gradient(45deg, hsl(200 100% 50%) 0%, hsl(330 100% 60%) 100%);
    
    /* Interactive States */
    --hover-glow: 0 0 30px hsl(200 100% 50% / 0.6);
    --pink-glow: 0 0 30px hsl(330 100% 60% / 0.6);
    
    --radius: 12px;
    
    /* Animation Variables */
    --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);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Neon Button Variants */
.btn-neon-blue {
    background: linear-gradient(to right, hsl(200 100% 50%), hsl(200 100% 50% / 0.8));
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--hover-glow);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-neon-blue:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px hsl(200 100% 50% / 0.8);
    color: white;
    text-decoration: none;
}

.btn-neon-pink {
    background: linear-gradient(to right, hsl(330 100% 60%), hsl(330 100% 60% / 0.8));
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--pink-glow);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-neon-pink:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px hsl(330 100% 60% / 0.8);
    color: white;
    text-decoration: none;
}

/* Section Backgrounds */
.section-dark {
    background: var(--gradient-hero);
    color: white;
    padding: 5rem 0;
}

.section-light {
    background: var(--gradient-section);
    color: hsl(var(--foreground));
    padding: 5rem 0;
}

/* Card Styles */
.card-neon {
    background: var(--gradient-card);
    border: 1px solid hsl(220 15% 25% / 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
}

.card-neon:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px hsl(200 100% 50% / 0.3);
}

/* Text Glow Effects */
.text-glow-blue {
    text-shadow: 0 0 20px hsl(200 100% 50% / 0.8);
}

.text-glow-pink {
    text-shadow: 0 0 20px hsl(330 100% 60% / 0.8);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-neon);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Effect */
.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

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

@keyframes pulse-glow {
    0% { box-shadow: 0 0 20px hsl(200 100% 50% / 0.4); }
    100% { box-shadow: 0 0 40px hsl(200 100% 50% / 0.8); }
}

/* WordPress Classes */
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
.aligncenter { text-align: center; }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, hsl(220 25% 8% / 0.9), hsl(220 25% 8% / 0.7), hsl(220 25% 8% / 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 80rem;
}

/* Typography */
h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: bold; margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 4vw, 3rem); font-weight: bold; margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); font-weight: bold; margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .section-dark, .section-light { padding: 3rem 0; }
    .hero-content { padding: 2rem 1rem; }
}