/*
Theme Name: Medeiros Locações
Description: Tema moderno e futurista para empresa de locação de equipamentos audiovisuais
Version: 1.0
Author: Medeiros Locações
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Variáveis CSS */
:root {
    --primary-color: #ff0000;
    --primary-gradient: linear-gradient(135deg, #c10000 0%, #ff3333 100%);
    --secondary-color: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Body - CURSOR CORRIGIDO */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    /* REMOVIDO: cursor: none; - Agora será aplicado condicionalmente via JavaScript */
}

/* Custom Cursor - MELHORADO */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
    mix-blend-mode: difference;
    opacity: 1;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 102, 0.3);
    border: 2px solid var(--primary-color);
}

.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Fallback para quando cursor personalizado não carrega */
.no-custom-cursor {
    cursor: auto !important;
}

.no-custom-cursor * {
    cursor: auto !important;
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

/* Button - MELHORADO */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 0, 102, 0.4);
    text-decoration: none;
    color: white;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Header - MELHORADO */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: var(--primary-color);
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--primary-color);
    text-decoration: none;
}



@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.main-nav a:hover {
    color: #fff;
    text-decoration: none;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 0, 102, 0.1);
    color: var(--primary-color);
}

/* Hero Section - MELHORADO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 0, 102, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 51, 133, 0.08) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
        margin-top: 40px;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Hint - NOVO */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-align: center;
    animation: scrollHint 2s ease-in-out infinite;
}

.scroll-hint::before {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto 10px;
    border-radius: 1px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollHint {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes scrollDot {
    0% { transform: translateY(-10px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Geometric Elements - MELHORADO */
.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.geometric-shape {
    position: absolute;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
    will-change: transform;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation-delay: 4s;
}

/* Services Section - MELHORADO */
.services {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Service Cards - COMPLETAMENTE REDESENHADO */
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    height: 400px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.3) 0%, rgba(255, 51, 133, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px;
    transform: translateY(50%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 0, 102, 0.3);
    border-color: var(--primary-color);
}

/* Service Card Specific Colors */
.service-card[data-service="sonorizacao"]:hover {
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
}

.service-card[data-service="telao"]:hover {
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.3);
}

.service-card[data-service="plataforma360"]:hover {
    box-shadow: 0 25px 50px rgba(255, 20, 147, 0.3);
}

.service-card[data-service="totem"]:hover {
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.3);
}

.service-card[data-service="iluminacao"]:hover {
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

.service-card[data-service="projecao"]:hover {
    box-shadow: 0 25px 50px rgba(32, 178, 170, 0.3);
}

/* Testimonials Section - MELHORADO */
.testimonials {
    background: radial-gradient(ellipse at center, rgba(255, 0, 102, 0.05) 0%, transparent 70%);
}

.testimonials-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1) 0%, rgba(255, 51, 133, 0.1) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.testimonial-card.featured::before {
    content: '⭐ DESTAQUE';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::after {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 0, 102, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-info .rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
}

/* Footer - MELHORADO */
.site-footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, #000000 100%);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* WhatsApp Float Button - MELHORADO */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Loading Screen - NOVO */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 0, 102, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Scroll Progress - NOVO */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 0, 102, 0.2);
    z-index: 10000;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.1s ease;
}

/* Animations - MELHORADO */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes pulse {
    0% { 
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Particle System */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: particleFloat 10s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Utility Classes - NOVO */
.blur-effect {
    filter: blur(2px);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Text Effects */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: textReveal 0.6s ease forwards;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Interactive Elements */
.ripple {
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Responsive Design - MELHORADO */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.active ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 90vh;
        padding: 0 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 300px;
    }
    
    .service-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Remove custom cursor on mobile */
    .custom-cursor {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* High Contrast Mode */
.high-contrast {
    filter: contrast(1.5) brightness(1.2);
}

.high-contrast .service-card,
.high-contrast .testimonial-card {
    border: 2px solid white;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .custom-cursor,
    .particle,
    .floating-elements > div,
    .scroll-hint,
    .loading-spinner,
    .whatsapp-float {
        animation: none !important;
    }
    
    .service-card,
    .testimonial-card,
    .btn {
        transition: none !important;
    }
    
    .hero::before {
        animation: none !important;
    }
}

/* Focus Indicators */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus,
.service-card:focus,
.testimonial-card:focus {
    box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.3);
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.03);
        --glass-border: rgba(255, 255, 255, 0.08);
        --text-muted: #999999;
    }
}

/* Print Styles */
@media print {
    .custom-cursor,
    .scroll-progress,
    .particles-container,
    .loading-screen,
    .whatsapp-float,
    .geometric-bg,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .service-card,
    .testimonial-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: white;
        color: black;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Performance Optimizations */
.service-card,
.testimonial-card,
.btn {
    contain: layout style paint;
}

.geometric-shape {
    contain: strict;
}

/* Additional Polish */
::selection {
    background: var(--primary-color);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff0000 0%, #ff3385 100%);
}

/* Menu Open State */
body.menu-open {
    overflow: hidden;
}

/* Smooth Animations */
* {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Hover States */
a:not(.btn):not(.whatsapp-float) {
    position: relative;
    transition: color 0.3s ease;
}

a:not(.btn):not(.whatsapp-float):hover {
    text-decoration: none;
}

/* Loading States */
img {
    transition: opacity 0.3s ease;
}

img.lazy {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Custom Properties for Better Performance */
.service-card,
.testimonial-card {
    transform: translateZ(0);
}

.btn {
    transform: translateZ(0);
}