/*
Theme Name: Shopee Promos
Description: Tema para página de promoções da Shopee
Version: 1.0
Author: Seu Nome
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS */
:root {
    --primary: 220 100% 50%;
    --primary-glow: 220 100% 60%;
    --secondary: 210 40% 98%;
    --muted: 210 40% 96%;
    --accent: 210 40% 94%;
    --destructive: 0 84% 60%;
    --border: 214 32% 91%;
    --input: 214 32% 91%;
    --ring: 220 100% 50%;
    --background: 0 0% 100%;
    --foreground: 222 84% 5%;
    --card: 0 0% 100%;
    --card-foreground: 222 84% 5%;
    --popover: 0 0% 100%;
    --popover-foreground: 222 84% 5%;
    --primary-foreground: 210 40% 98%;
    --secondary-foreground: 222 84% 5%;
    --muted-foreground: 215 16% 47%;
    --accent-foreground: 222 84% 5%;
    --destructive-foreground: 210 40% 98%;
    --radius: 0.5rem;
}

/* Gradientes personalizados */
.bg-gradient-shopee {
    background: linear-gradient(135deg, hsl(220, 100%, 50%), hsl(350, 100%, 60%));
}

.bg-gradient-orange {
    background: linear-gradient(135deg, hsl(20, 100%, 60%), hsl(40, 100%, 50%));
}

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

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

/* Header */
.site-header {
    padding: 20px 0;
    background: transparent;
}

/* Main content */
.main-content {
    min-height: 100vh;
    padding: 40px 0;
}

/* Card styles */
.promo-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    text-align: center;
}

/* Button styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(220, 100%, 50%), hsl(350, 100%, 60%));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-success {
    background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(142, 76%, 46%));
    color: white;
}

/* Countdown timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    text-align: center;
    background: hsl(var(--muted));
    padding: 15px;
    border-radius: 8px;
    min-width: 80px;
}

.countdown-number {
    font-size: 24px;
    font-weight: bold;
    color: hsl(var(--primary));
}

.countdown-label {
    font-size: 12px;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
}

/* Benefits list */
.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefits-list li::before {
    content: "✓";
    color: hsl(142, 76%, 36%);
    font-weight: bold;
    font-size: 18px;
}

/* Social proof */
.social-proof {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.stars {
    color: gold;
    font-size: 20px;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .promo-card {
        padding: 20px;
        margin: 20px 0;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-number {
        font-size: 18px;
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-white { color: white; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.font-bold { font-weight: bold; }
.mb-4 { margin-bottom: 16px; }
.mt-4 { margin-top: 16px; }
.py-8 { padding: 32px 0; }
.px-4 { padding: 0 16px; }