/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
    padding-top: 20px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Top Header */
.top-header {
    background: #ffffff;
    padding: 25px 0 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    min-height: 90px;
}

.top-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

/* Logo */
.nav-logo {
    position: absolute;
    left: 100px;
    z-index: 10;
}

.nav-logo h2 {
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.nav-logo i {
    color: #b87333;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(184, 115, 51, 0.3));
}

.nav-logo:hover i {
    color: #cd853f;
    transform: rotate(5deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(184, 115, 51, 0.4));
}

/* Search Container */
.search-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 40%;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #b87333;
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #1a1a1a;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 12px 16px;
    background: #b87333;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #8B4513;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 50px;
    z-index: 10;
}

.user-login {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.user-login:hover {
    color: #b87333;
}

.user-login i {
    background: #b87333;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.nav-cart {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #1a1a1a;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-wrap: nowrap;
}

.nav-cart:hover {
    color: #b87333;
}

.nav-cart .cart-icon {
    background: #b87333;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    position: relative;
    text-decoration: none;
}

.nav-cart .cart-icon:hover {
    background: #8B4513;
    transform: scale(1.05);
}

/* Bottom Navigation */
.bottom-nav {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.bottom-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bottom-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 80px;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: #b87333;
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 600px;
    margin-top: 1rem;
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 2rem;
}

.dropdown-section {
    padding: 0 1rem;
}

.dropdown-section h4 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #b87333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.dropdown-section ul li {
    margin-bottom: 0.5rem;
}

.dropdown-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
    border-radius: 6px;
    padding-left: 0.5rem;
}

.dropdown-section ul li a:hover {
    color: #b87333;
    background: rgba(184, 115, 51, 0.05);
    transform: translateX(5px);
}

/* Category Filters */
.category-filters {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.filters-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    border-color: #b87333;
    color: #b87333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.15);
}

.filter-btn.active {
    background: #b87333;
    border-color: #b87333;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

.filter-btn i {
    font-size: 0.9rem;
}

/* Responsive Design para Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .dropdown-section {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .filters-container {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Carrinho de Compras */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #b87333 0%, #cd853f 100%);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.3);
}

.cart-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 0.8;
    font-size: 0;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}

.cart-text {
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 0.8;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    display: block;
}

.cart-total {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 0.8;
    white-space: nowrap;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.bar {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #b87333 0%, #cd853f 25%, #daa520 50%, #cd853f 75%, #b87333 100%);
    color: #ffffff;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 140px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 165, 0, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    opacity: 0.6;
}

.hero-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #f8f9fa;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2.5rem 0 2.5rem 0;
    justify-content: center;
}

@media (min-width: 900px) {
    .hero-buttons {
        margin-bottom: 3.5rem;
    }
    .hero .container {
        gap: 5rem;
    }
}

.hero-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    z-index: 10;
}

.carousel-slide {
    width: 100%;
    display: flex;
    gap: 2.5rem;
    background: none;
    box-shadow: none;
    padding: 0 2rem;
    min-height: 350px;
    align-items: stretch;
    justify-content: center;
    transition: none;
}

.carousel-product-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 320px;
    max-width: 380px;
    width: 100%;
    transition: box-shadow 0.3s;
    position: relative;
    z-index: 15;
}

.carousel-product-image {
    width: 100%;
    max-width: 260px;
    height: 180px;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.carousel-product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.carousel-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-align: center;
}

.carousel-arrow {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #d4af37;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: background 0.2s, color 0.2s;
}
.carousel-arrow.left { left: -20px; }
.carousel-arrow.right { right: -20px; }
.carousel-arrow:hover {
    background: #d4af37;
    color: #fff;
}

/* Botão específico do carousel */
.carousel-add-to-cart {
    position: relative;
    z-index: 20;
    cursor: pointer;
    pointer-events: auto;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    min-height: 52px;
}

.btn-primary {
    background: #ffffff;
    color: #b87333;
    border: 2px solid #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #f8f9fa;
    color: #b87333;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Seções */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -1px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 4rem;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 2px;
}

/* Categorias */
.categories {
    padding: 120px 0;
    background: #fafbfc;
}

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

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.05) 0%, rgba(205, 133, 63, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.category-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Produtos */
.featured-products {
    padding: 120px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #b87333 0%, #cd853f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

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

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    transition: transform 0.4s ease;
    border-radius: 8px 8px 0 0;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.product-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.add-to-cart {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}



.load-more {
    text-align: center;
}

/* Sobre */
.about {
    padding: 120px 0;
    background: #fafbfc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
}

.feature i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
}

.feature p {
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.5;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Contato */
.contact {
    padding: 120px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fafbfc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form {
    background: #fafbfc;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d3748;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 0.85rem;
}

/* Modal do Carrinho */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafbfc;
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.3rem;
}

.close {
    color: #4a5568;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.close:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.modal-body {
    padding: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
}

.cart-total {
    text-align: left;
    border-top: 2px solid #e2e8f0;
    color: #1a1a1a;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: #fafbfc;
    border-radius: 0 0 16px 16px;
}

/* Modal para Imagem em Tela Cheia */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 90vh;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

#modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Cursor pointer para imagens clicáveis */
.product-image {
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero .container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .hero-carousel {
        max-width: 1000px;
    }
    .carousel-slide {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .carousel-product-card {
        min-width: 240px;
        max-width: 300px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .carousel-product-image {
        max-width: 180px;
        height: 120px;
    }
}
@media (max-width: 900px) {
    .hero-carousel {
        max-width: 700px;
    }
    .carousel-slide {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    .carousel-product-card {
        min-width: 180px;
        max-width: 220px;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .carousel-product-image {
        max-width: 120px;
        height: 80px;
    }
    .hero {
        padding: 120px 0 80px;
    }
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    .hero-carousel {
        max-width: 100%;
        min-height: 260px;
    }
}
@media (max-width: 600px) {
    .hero-carousel {
        min-height: 200px;
    }
    .carousel-slide {
        min-height: 260px;
        gap: 0;
        padding: 0;
    }
    .carousel-product-card {
        min-width: 0;
        max-width: 100%;
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .carousel-product-image {
        max-width: 200px;
        height: 120px;
    }
    .carousel-arrow.left { left: 0; }
    .carousel-arrow.right { right: 0; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Scroll personalizado */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #b87333 0%, #cd853f 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #cd853f 0%, #b87333 100%);
}

/* Estilo para notificações */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 3000;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    font-weight: 600;
    animation: slideIn 0.4s ease-out;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Estilos para o modal de dados do cliente */
#cliente-modal .modal-content {
    max-width: 500px;
}

#cliente-modal .form-group {
    margin-bottom: 1.5rem;
}

#cliente-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

#cliente-modal .form-group input,
#cliente-modal .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

#cliente-modal .form-group input:focus,
#cliente-modal .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#cliente-modal .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

#cliente-modal .modal-footer {
    justify-content: flex-end;
}

#cliente-modal .btn {
    min-width: 120px;
}

/* Estilos para o modal de pagamento */
#pagamento-modal .modal-content {
    max-width: 600px;
}

#produto-pagamento-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

.produto-pagamento-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.produto-pagamento-imagem {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.produto-pagamento-detalhes h4 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.produto-pagamento-detalhes .preco-original {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.2rem;
}

.pagamento-opcoes h4 {
    margin: 0 0 1rem 0;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.opcao-pagamento {
    margin-bottom: 1.5rem;
}

.opcao-pagamento input[type="radio"] {
    display: none;
}

.opcao-pagamento label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.opcao-pagamento label:hover {
    border-color: #d4af37;
    background: #fefefe;
}

.opcao-pagamento input[type="radio"]:checked + label {
    border-color: #d4af37;
    background: #fef7e6;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.opcao-pagamento label i {
    color: #d4af37;
    margin-right: 0.5rem;
}

.valor-vista {
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
}

.opcoes-parcelamento h5 {
    margin: 0 0 1rem 0;
    color: #1a1a1a;
    font-size: 1rem;
}

.parcelas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.parcela-opcao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.parcela-opcao:hover {
    border-color: #d4af37;
    background: #fefefe;
}

.parcela-opcao.selected {
    border-color: #d4af37;
    background: #fef7e6;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.parcela-info {
    display: flex;
    flex-direction: column;
}

.parcela-vezes {
    font-weight: 600;
    color: #1a1a1a;
}

.parcela-valor {
    font-size: 0.9rem;
    color: #666;
}

.parcela-total {
    font-weight: 600;
    color: #d4af37;
}

.informacoes-pagamento {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #d4af37;
    width: 16px;
}

/* Estilos para campos de endereço */
#cliente-modal .form-group {
    margin-bottom: 1.5rem;
}

#cliente-modal .form-group input,
#cliente-modal .form-group textarea,
#cliente-modal .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

#cliente-modal .form-group input:focus,
#cliente-modal .form-group textarea:focus,
#cliente-modal .form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#cliente-modal .form-group select {
    cursor: pointer;
}

#cliente-modal .form-group select option {
    padding: 0.5rem;
}

/* Layout responsivo para campos de endereço */
@media (min-width: 768px) {
    #cliente-modal .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
} 

/* Estilos para informação de prazo */
.prazo-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #856404;
    font-size: 14px;
}

.prazo-info i {
    color: #d4af37;
    font-size: 16px;
}

.prazo-info span {
    line-height: 1.4;
}

/* Responsividade para prazo-info */
@media (max-width: 768px) {
    .prazo-info {
        padding: 12px;
        font-size: 13px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
} 

/* Estilos para footer-info */
.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 8px;
    border-left: 4px solid #b87333;
    transition: all 0.3s ease;
    color: #ffffff;
}

.footer-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
}

.footer-info-item i {
    font-size: 18px;
    color: #b87333;
    min-width: 20px;
}

.footer-info-item span {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.4;
}

.footer-info-item strong {
    color: #ffffff;
}

/* Responsividade para footer-info */
@media (max-width: 768px) {
    .footer-info {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
        padding: 20px 0;
    }
    
    .footer-info-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-info-item i {
        font-size: 20px;
    }
    
    .footer-info-item span {
        font-size: 13px;
    }
} 

/* Responsividade para Menu Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Top Header Mobile */
    .top-header .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        position: static;
    }
    
    .nav-logo {
        position: static;
        order: 1;
        margin-left: 0;
    }
    
    .search-container {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        order: 2;
    }
    
    .user-actions {
        position: static;
        order: 3;
    }
    
    .search-container {
        max-width: 100%;
        order: 2;
    }
    
    .user-actions {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }
    
    .user-login span {
        display: none;
    }
    
    .nav-cart .cart-info {
        display: none;
    }
    
    .nav-cart {
        gap: 4px;
    }
    
    .nav-cart .cart-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    /* Bottom Navigation Mobile */
    .bottom-nav {
        display: none;
    }
    
    .bottom-nav .nav-container {
        position: static;
    }
    
    .nav-right {
        position: static;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .dropdown-section {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .dropdown-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-section ul li a {
        font-size: 0.8rem;
        padding: 0.2rem 0;
    }
    
    .filters-container {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .category-filters {
        padding: 1rem 0;
        margin-top: 120px;
    }
    
    .hero {
        margin-top: 200px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        justify-content: center;
    }
} 