/* Custom styles for Consultoría Financiera Melissa Ruiz */

/* Base reset enhancements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling is handled via CSS scroll-behavior on html */

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

::-webkit-scrollbar-track {
    background: #2d121c;
}

::-webkit-scrollbar-thumb {
    background: #74334d;
    border-radius: 4px;
}

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

/* Selection color */
::selection {
    background: #a86180;
    color: #fffbeb;
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .gradient-hero,
    .mobile-menu {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: #1a1a1a !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .service-card {
        border-width: 2px;
    }
    
    .card-hover:hover {
        border-color: #fbbf24;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .font-serif-display {
        line-height: 1.1;
    }
}

/* Large desktop */
@media (min-width: 1920px) {
    .max-w-7xl {
        max-width: 80rem;
    }
}
