/* 
 * Estilos específicos da Landing Page - MotoBoy a Jato
 * Desenvolvido e Roteirizado por Carlos Faria & Visel Digital
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --accent: #7c3aed;
    --success: #10b981;
    --success-light: #ecfdf5;
    --dark: #0f172a;
    --dark-muted: #475569;
    --light: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
}

body {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    overflow-x: hidden;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

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

@keyframes pulse-soft {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}

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

.animate-pulse-soft {
    animation: pulse-soft 3s ease-in-out infinite;
}

/* Custom Gradients */
.gradient-hero-bg {
    background: radial-gradient(circle at 10% 20%, rgba(239, 246, 255, 0.7) 0%, rgba(255, 255, 255, 1) 90%);
}

.gradient-blue-purple {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.gradient-card-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Card Hover Effects */
.premium-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Map Simulation Styling */
.map-dot-pulse {
    position: relative;
}

.map-dot-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: inherit;
    border-radius: 50%;
    animation: pulse-soft 1.5s ease-out infinite;
    opacity: 0.4;
}
