/* Estilos complementares para o GondMarket */

/* Efeitos de botão personalizados */
.btn-glow {
    box-shadow: 0 0 20px rgba(196, 150, 107, 0.5);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(196, 150, 107, 0.8);
    transform: translateY(-2px);
}

/* Animações de entrada personalizadas */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Efeitos de hover para cards */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Gradientes de fundo personalizados */
.gradient-bg-1 {
    background: linear-gradient(135deg, #C4966B 0%, #E8D5B7 50%, #C4966B 100%);
}

.gradient-bg-2 {
    background: linear-gradient(45deg, #F5F5F5 0%, #E8E8E8 100%);
}

/* Efeitos de texto */
.text-gradient {
    background: linear-gradient(135deg, #C4966B 0%, #D4A574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Overlay patterns */
.pattern-overlay {
    position: relative;
}

.pattern-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(196, 150, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(196, 150, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Loading animations */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow:
            .25em 0 0 rgba(0,0,0,0),
            .5em 0 0 rgba(0,0,0,0);
    }
    40% {
        color: black;
        text-shadow:
            .25em 0 0 rgba(0,0,0,0),
            .5em 0 0 rgba(0,0,0,0);
    }
    60% {
        text-shadow:
            .25em 0 0 black,
            .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
        text-shadow:
            .25em 0 0 black,
            .5em 0 0 black;
    }
}

/* Scroll indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(135deg, #C4966B 0%, #D4A574 100%);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Parallax effects */
.parallax-element {
    transform: translateZ(0);
    transition: transform 0.1s ease-out;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #C4966B 0%, #D4A574 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C4966B;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .stats-section .stat-number {
        font-size: 2rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(196, 150, 107, 0.2);
    }
    
    .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }
}

/* Print styles */
@media print {
    .navbar,
    .floating-elements,
    .btn-primary-custom,
    .btn-secondary-custom {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
.btn-primary-custom:focus,
.btn-secondary-custom:focus,
.nav-link:focus {
    outline: 2px solid #C4966B;
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-element {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .testimonial-card {
        border: 2px solid #000;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        border: 2px solid #000;
    }
} 