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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.sprout-icon {
    font-size: 16px;
}

.main-header {
    padding: 15px 0;
}

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

.search-section {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.search-icon {
    font-size: 18px;
}

.logo-section {
    flex: 1;
    text-align: center;
}

.logo-section a {
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
}

.cart-section {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.cart-icon {
    font-size: 20px;
}

.cart-count {
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Navigation */
.navigation {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0066cc;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.hero-logo {
    height: 80px;
    width: auto;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Philosophy Section */
.philosophy {
    background: #1e3a8a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.philosophy-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Bestsellers Section */
.bestsellers {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

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

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

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b35;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

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

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.current-price {
    color: #333;
    font-weight: 700;
    font-size: 18px;
}

.installments {
    color: #666;
    font-size: 12px;
}

.view-all {
    text-align: center;
}

.view-all-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

/* Promotional Banner */
.promo-banner {
    background: #1e3a8a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.promo-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promo-products {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-product img {
    height: 200px;
    width: auto;
    border-radius: 8px;
}

/* Customer Support */
.customer-support {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.support-content {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.support-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.support-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.support-content p {
    color: #666;
    margin-bottom: 20px;
}

.support-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
}

.nav-arrow {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.support-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: #0066cc;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 40px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    font-size: 24px;
    margin-top: 5px;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.info-text p {
    color: #666;
    font-size: 14px;
}

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

.payment-methods img {
    height: 30px;
    width: auto;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.security-badges img {
    height: 60px;
    width: auto;
}

.copyright {
    background: #1e3a8a;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.copyright p {
    margin-bottom: 5px;
    font-size: 14px;
}

.legal-links {
    margin-top: 15px;
}

.legal-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .philosophy-text {
        font-size: 18px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .promo-products {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
}
