/* Estilos Customizados */
:root {
    --primary: #1a1a2e;
    --secondary: #f9d423;
    --accent: #e94560;
}

/* Animações */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 212, 35, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(249, 212, 35, 0.6);
    }
}

/* Classes Utilitárias */
.animate-slide-up {
    animation: slideInUp 0.6s ease-out;
}

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

.glow-secondary {
    animation: pulse-glow 2s infinite;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(249,212,35,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 212, 35, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 212, 35, 0.2);
    border-color: rgba(249, 212, 35, 0.5);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f9d423 0%, #e94560 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    margin-bottom: 20px;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, #f9d423 0%, #e94560 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 212, 35, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f9d423;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid #f9d423;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #f9d423;
    color: #1a1a2e;
}

/* Seção de Depoimentos */
.testimonial-card {
    background: linear-gradient(135deg, rgba(249, 212, 35, 0.1) 0%, rgba(233, 69, 96, 0.1) 100%);
    border-left: 4px solid #f9d423;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
}

.stars {
    color: #f9d423;
    margin-bottom: 15px;
}

/* Seção de Estatísticas */
.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #f9d423;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 16px;
}

/* Formulário de Contato */
.form-input {
    background: #f5f5f5;
    border: 2px solid transparent;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #f9d423;
    background: white;
}

/* Scroll Smooth */
html {
    scroll-behavior: smooth;
}

/* Responsividade */
@media (max-width: 768px) {
    .stat-number {
        font-size: 36px;
    }
    
    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}
