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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.header-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.header-info i {
    color: #FFD700;
    margin-right: 5px;
}

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

.header-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.header-links a:hover {
    color: #FFD700;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.logo-icon i {
    font-size: 22px;
    color: #000;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.logo-accent {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 9px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Footer Logo Styles */
.footer-logo-container .logo-main {
    color: #fff;
}

.footer-logo-container .logo-tagline {
    color: #ccc;
}

.footer-logo {
    margin-bottom: 15px;
}

.nav-center {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.search-bar {
    position: relative;
    display: flex;
}

.search-bar input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #FFD700;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    outline: none;
}

.search-bar button {
    background: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #FFC107;
}

.search-bar i {
    color: #000;
    font-size: 16px;
}

.nav-right .cart {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #333;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-right .cart:hover {
    background: #f8f9fa;
}

.cart i {
    font-size: 24px;
    color: #FFD700;
}

.cart-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.nav-menu {
    background: #000;
    padding: 12px 0;
}

.menu-links {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.menu-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-links a:hover {
    color: #FFD700;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 60px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.banner-text {
    flex: 1;
}

.banner-text h1 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-primary {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    background: #FFD700;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hero-icon i {
    font-size: 60px;
    color: #000;
}

/* Categories */
.categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.categories h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-item:hover {
    background: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-item i {
    font-size: 36px;
    color: #333;
    transition: color 0.3s;
}

.category-item:hover i {
    color: #000;
}

.category-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.category-item:hover span {
    color: #000;
}

/* Products Sections */
.featured-products,
.ofertas {
    padding: 60px 0;
    background: #fff;
}

.ofertas {
    background: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: #333;
}

.ver-todos {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.ver-todos:hover {
    color: #FFC107;
}

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

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.product-image {
    position: relative;
    background: #f8f9fa;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon {
    background: #FFD700;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    background: #FFC107;
}

.product-icon i {
    font-size: 30px;
    color: #000;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    display: block;
}

.installments {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.btn-cart {
    width: 100%;
    background: #FFD700;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cart:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Promo Banner */
.promo-banner {
    padding: 60px 0;
    background: #000;
}

.banner-customizacao {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: #000;
}

.banner-customizacao h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.banner-customizacao p {
    font-size: 18px;
    margin-bottom: 25px;
}

.promo-code {
    background: rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
}

.promo-code span {
    font-size: 16px;
    font-weight: 500;
}

.promo-code strong {
    font-weight: 700;
    font-size: 18px;
}

/* Brands */
.brands {
    padding: 60px 0;
    background: #f8f9fa;
}

.brands h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brand-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: #FFD700;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    color: #000;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 16px;
}

.btn-newsletter {
    background: #000;
    color: #FFD700;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

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

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

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

.social-links a {
    color: #ccc;
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 28px;
    color: #ccc;
    transition: color 0.3s;
}

.payment-methods i:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-center {
        order: 3;
        max-width: 100%;
        margin: 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text h1 {
        font-size: 24px;
    }
    
    .hero-icon {
        width: 120px;
        height: 120px;
    }
    
    .hero-icon i {
        font-size: 48px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .menu-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-right .cart {
        gap: 10px;
    }
    
    .cart-text {
        display: none;
    }
    
    /* Logo responsive */
    .logo-container {
        gap: 8px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-main, .logo-accent {
        font-size: 22px;
    }
    
    .logo-tagline {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .banner-customizacao h2 {
        font-size: 28px;
    }
    
    .banner-customizacao {
        padding: 30px 20px;
    }
} 