* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #111111;
    --bg-medium: #2A2A2A;
    --white: #FFFFFF;
    --racing-red: #E10600;
    --gray: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assent/fundoloja.jpeg') center/cover no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.logo {
    max-width: 250px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
    border-radius: 12px;
}

.headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.subheadline {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #cccccc;
    font-weight: 400;
}

.hero-services {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--racing-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.4);
}

.btn-primary:hover {
    background: #c00500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--bg-dark);
}

.btn-secondary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* MOTOS SECTION */
.motos-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.motos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.moto-card {
    background: var(--bg-medium);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.moto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(225, 6, 0, 0.3);
}

.moto-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #1a1a1a;
}

.moto-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.moto-slider img.active {
    opacity: 1;
    animation: zoomIn 3s ease-in-out;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.moto-info {
    padding: 20px;
}

.moto-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--white);
}

.moto-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.95rem;
}

.moto-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--racing-red);
    margin-bottom: 15px;
}

.btn-interesse {
    width: 100%;
    background: var(--white);
    color: var(--bg-dark);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
}

.btn-interesse:hover {
    background: var(--racing-red);
    color: var(--white);
}

/* DIFERENCIAL SECTION */
.diferencial-section {
    padding: 80px 0;
    background: var(--bg-medium);
}

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

.diferencial-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(225, 6, 0, 0.2);
}

.diferencial-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.diferencial-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* LOCALIZAÇÃO SECTION */
.localizacao-section {
    padding: 80px 0;
    background: var(--bg-dark);
    text-align: center;
}

.mapa-container {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* FOOTER */
.footer {
    background: #000000;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    opacity: 0.8;
    border-radius: 8px;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    margin: 5px 0;
    color: #999;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social a {
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--racing-red);
    transform: scale(1.2);
}

.footer-copy {
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-dev {
    margin-top: 5px;
    font-size: 0.75rem;
}

.footer-dev a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dev a:hover {
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .motos-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .headline {
        font-size: 1.5rem;
    }
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background: var(--bg-medium);
    margin: 50px auto;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: var(--racing-red);
}

.modal-carousel {
    position: relative;
    height: 500px;
    background: #000;
}

.carousel-images {
    height: 100%;
    position: relative;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s;
}

.carousel-images img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--racing-red);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.modal-info {
    padding: 30px;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal-info p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--racing-red);
    margin-bottom: 25px;
}

.modal-info .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .modal-carousel {
        height: 300px;
    }
    
    .modal-content {
        margin: 20px;
    }
}

/* NAVEGAÇÃO CATÁLOGO */
.catalogo-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.catalogo-btn {
    background: var(--racing-red);
    color: var(--white);
    border: none;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.4);
}

.catalogo-btn:hover {
    background: #c00500;
    transform: scale(1.1);
}

.catalogo-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.5;
}
