/**
 * ZaenixStudio - CSS Framework 3D Futurístico
 * LIDER MOTOS - Landing Page
 */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --zs-primary: #ff6b35;
    --zs-secondary: #1a1a1a;
    --zs-accent: #00d4ff;
    --zs-text: #333;
    --zs-text-light: #666;
    --zs-bg: #fff;
    --zs-bg-dark: #0a0a0a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--zs-text);
    overflow-x: hidden;
}

/* Loader */
.zs-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--zs-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.zs-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.zs-loader-content {
    text-align: center;
}

.zs-bike-animation i {
    font-size: 5rem;
    color: var(--zs-primary);
    animation: bikeMove 2s infinite;
}

@keyframes bikeMove {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(30px) rotate(5deg); }
}

.zs-loader-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 3px;
}

/* Navbar */
.zs-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s;
}

.zs-navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.zs-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zs-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.zs-logo i {
    color: var(--zs-primary);
    font-size: 2rem;
}

.zs-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.zs-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.zs-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--zs-primary);
    transition: width 0.3s;
}

.zs-nav-link:hover {
    color: var(--zs-primary);
}

.zs-nav-link:hover::after {
    width: 100%;
}

.zs-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zs-cart-btn {
    background: var(--zs-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s;
}

.zs-cart-btn:hover {
    transform: translateY(-2px);
}

.zs-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--zs-accent);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.zs-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.zs-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

/* Hero */
.zs-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--zs-bg-dark);
    overflow: hidden;
}

.zs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.zs-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.zs-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.zs-shape {
    position: absolute;
    border: 2px solid var(--zs-primary);
    opacity: 0.1;
    animation: float 10s infinite;
}

.zs-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    right: 10%;
}

.zs-shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 5%;
    transform: rotate(45deg);
}

.zs-shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 10%;
    right: 30%;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.zs-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zs-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.zs-title-line {
    display: block;
    background: linear-gradient(135deg, var(--zs-primary), var(--zs-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zs-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.zs-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.zs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.zs-btn-primary {
    background: linear-gradient(135deg, var(--zs-primary), #ff8c42);
    color: #fff;
}

.zs-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.zs-btn-outline {
    border-color: var(--zs-accent);
    color: var(--zs-accent);
}

.zs-btn-outline:hover {
    background: var(--zs-accent);
    color: #fff;
    transform: translateY(-3px);
}

.zs-3d-motorcycle {
    text-align: center;
}

.zs-3d-motorcycle i {
    font-size: 20rem;
    color: var(--zs-primary);
    animation: rotate3d 20s infinite linear;
    filter: drop-shadow(0 20px 50px rgba(255, 107, 53, 0.5));
}

@keyframes rotate3d {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Sections */
.zs-section {
    padding: 100px 20px;
}

.zs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.zs-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.zs-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--zs-text);
    margin-bottom: 15px;
}

.zs-section-subtitle {
    font-size: 1.2rem;
    color: var(--zs-text-light);
}

/* About */
.zs-about {
    background: #f8f9fa;
}

.zs-about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.zs-about-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.zs-about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--zs-primary), var(--zs-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zs-about-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.zs-about-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--zs-text);
}

.zs-about-info p {
    color: var(--zs-text-light);
    line-height: 1.6;
}

.zs-about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zs-stat {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.zs-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--zs-primary);
    margin-bottom: 10px;
}

.zs-stat-label {
    color: var(--zs-text-light);
    font-weight: 500;
}

/* Products */
.zs-product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.zs-filter-btn {
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.zs-filter-btn:hover,
.zs-filter-active {
    background: var(--zs-primary);
    color: #fff;
    border-color: var(--zs-primary);
}

.zs-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.zs-product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.zs-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.zs-product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.zs-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zs-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--zs-accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.zs-product-info {
    padding: 20px;
}

.zs-product-category {
    color: var(--zs-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.zs-product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--zs-text);
    margin-bottom: 10px;
}

.zs-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.zs-price-old {
    text-decoration: line-through;
    color: var(--zs-text-light);
}

.zs-price-current {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--zs-primary);
}

.zs-product-actions {
    display: flex;
    gap: 10px;
}

.zs-btn-small {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.zs-btn-add {
    background: var(--zs-primary);
    color: #fff;
}

.zs-btn-add:hover {
    background: #ff8c42;
    transform: translateY(-2px);
}

.zs-btn-view {
    background: #f0f0f0;
    color: var(--zs-text);
}

.zs-btn-view:hover {
    background: #e0e0e0;
}

/* Services */
.zs-services {
    background: var(--zs-bg-dark);
    color: #fff;
}

.zs-services .zs-section-title,
.zs-services .zs-section-subtitle {
    color: #fff;
}

.zs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.zs-service-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.zs-service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.zs-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--zs-primary), var(--zs-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.zs-service-icon i {
    font-size: 2rem;
    color: #fff;
}

.zs-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.zs-service-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.zs-service-card ul {
    list-style: none;
}

.zs-service-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255,255,255,0.7);
}

.zs-service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--zs-accent);
    font-weight: 700;
}

/* Testimonials */
.zs-testimonials {
    background: #f8f9fa;
}

.zs-testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.zs-testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.zs-testimonial-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.zs-testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--zs-text);
    margin-bottom: 25px;
    font-style: italic;
}

.zs-testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--zs-text);
    margin-bottom: 5px;
}

.zs-testimonial-author span {
    color: var(--zs-text-light);
}

/* Contact */
.zs-contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.zs-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.zs-contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--zs-primary), var(--zs-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.zs-contact-form input,
.zs-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.zs-contact-form input:focus,
.zs-contact-form textarea:focus {
    outline: none;
    border-color: var(--zs-primary);
}

/* Footer */
.zs-footer {
    background: var(--zs-bg-dark);
    color: #fff;
    padding: 60px 20px 20px;
}

.zs-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.zs-footer-col h3,
.zs-footer-col h4 {
    margin-bottom: 20px;
    color: var(--zs-primary);
}

.zs-footer-col ul {
    list-style: none;
}

.zs-footer-col li {
    margin-bottom: 10px;
}

.zs-footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.zs-footer-col a:hover {
    color: var(--zs-primary);
}

.zs-social-links {
    display: flex;
    gap: 15px;
}

.zs-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.zs-social-links a:hover {
    background: var(--zs-primary);
    transform: translateY(-3px);
}

.zs-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Modal */
.zs-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zs-modal.active {
    display: flex;
}

.zs-modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.zs-modal-large {
    max-width: 900px;
}

.zs-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zs-modal-header h2 {
    font-size: 1.5rem;
    color: var(--zs-text);
}

.zs-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.zs-modal-close:hover {
    background: var(--zs-primary);
    color: #fff;
}

.zs-modal-body {
    padding: 30px;
}

.zs-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
}

.zs-cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* WhatsApp Float */
.zs-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.zs-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
}

.zs-whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* Responsive */
@media (max-width: 968px) {
    .zs-nav-menu {
        display: none;
    }
    
    .zs-mobile-toggle {
        display: flex;
    }
    
    .zs-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .zs-hero-title {
        font-size: 3rem;
    }
    
    .zs-3d-motorcycle i {
        font-size: 10rem;
    }
    
    .zs-about-content {
        grid-template-columns: 1fr;
    }
    
    .zs-contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zs-hero-title {
        font-size: 2.5rem;
    }
    
    .zs-section-title {
        font-size: 2rem;
    }
}
