<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
* Home/Hero styles for LORD PARANÃ ELETRÃ”NICOS LTDA
*/

.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/1029757/pexels-photo-1029757.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px; /* Account for fixed header */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl);
    animation: fadeIn 1.5s ease-out;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--space-xl);
    color: var(--white);
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-secondary {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: solid var(--white);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content .tagline {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: var(--space-sm) var(--space-lg);
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content .tagline {
        font-size: 1rem;
    }
}</pre></body></html>