:root {
    --primary: #ff6b6b;
    --primary-dark: #e55c5c;
    --secondary: #ff8e8e;
    --light: #ffffff;
    --dark: #333333;
    --gray: #f5f5f5;
    --dark-gray: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background-color: var(--primary);
    color: var(--light);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--light);
    margin-left: 10px;
    font-size: 16px;
}

.main-header {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.logo span {
    color: var(--dark);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.banner-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 500%;
    height: 100%;
}

.banner-item {
    flex: 0 0 20%;
    background-size: cover;
    background-position: center;
}

.banner-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-indicator.active {
    background-color: var(--light);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    display: inline-block;
    background-color: var(--light);
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    z-index: 0;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--gray);
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-title {
    margin-bottom: 10px;
}

.product-title h3 {
    font-size: 20px;
}

.marca-content {
    padding: 20px;
    text-align: center;
}

.marca-title {
    margin-bottom: 10px;
}

.marca-title h3 {
    font-size: 20px;
}

/* Estilos do carrossel para Marcas e Modelos */
.section-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 30px;
}

.section-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.section-carousel-item {
    flex: 0 0 100%;
    padding: 15px;
    min-width: 0;
}

.section-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.section-carousel-nav:hover {
    background: var(--primary);
}

.section-carousel-nav:hover .nav-icon {
    color: white;
}

.nav-icon {
    font-size: 20px;
    color: var(--dark);
}

.section-carousel-prev {
    left: 0;
}

.section-carousel-next {
    right: 0;
}

.section-carousel-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 0 20px;
}

.section-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.section-pagination-dot.active {
    background: var(--primary);
}

/* Marcas e Modelos Cards */
.marca-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marca-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.marca-image {
    height: 180px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
}

/* Stores */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.store-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.store-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.store-content {
    padding: 20px;
}

.store-title {
    margin-bottom: 15px;
}

.store-info {
    margin-bottom: 15px;
}

.store-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.store-info i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.store-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.store-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.store-social a:hover {
    transform: translateY(-3px);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefits {
    background-color: var(--gray);
    padding: 30px;
    border-radius: 10px;
}

.benefits h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    background-color: var(--primary);
    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info {
    background-color: var(--gray);
    padding: 30px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 15px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.payment-methods {
    margin-top: 20px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.payment-icon {
    background-color: var(--light);
    width: 50px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Responsividade */
@media (max-width: 992px) {
    .banner-carousel {
        height: 400px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .main-header {
        justify-content: space-between;
        padding: 15px;
    }

    .logo {
        flex: initial;
        max-width: calc(100% - 50px);
    }

    .logo img {
        height: 40px;
    }

    .hamburger {
        display: block;
        margin-left: 0;
        order: 1;
        font-size: 24px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s;
        z-index: 100;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .banner-carousel {
        height: 300px;
    }
    
    .section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .banner-carousel {
        height: 250px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
}