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

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

/* Header Styles */
.modern-header {
    background: #f8f9fa;
    color: #333;
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header-text {
    margin-bottom: 4rem;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.title-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.title-accent {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.modern-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #2E7D32;
    letter-spacing: -3px;
    line-height: 1;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: #1B5E20;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.15);
}

.feature i {
    font-size: 1.2rem;
    color: #4CAF50;
    opacity: 0.9;
}

.feature span {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #2E7D32;
    opacity: 0.9;
}

/* Catalog Styles */
.product-catalog {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

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

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    min-height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 85%;
    max-height: 85%;
    min-width: 200px;
    min-height: 200px;
    object-position: center;
}

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-name {
    color: #4CAF50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    flex-grow: 1;
}

.add-to-cart {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.add-to-cart:hover {
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.add-to-cart span {
    font-size: 1.3rem;
}

/* Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 4rem 1rem 1rem;
    margin-top: 4rem;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom left, transparent 49%, #4CAF50 50%);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #A5D6A7;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.whatsapp-link i {
    color: #25D366;
    font-size: 1.8rem;
}

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

.social-link {
    color: white;
    font-size: 1.8rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-header::before {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .title-accent {
        font-size: 1rem;
        letter-spacing: 8px;
    }

    .modern-header h1 {
        font-size: 4rem;
        letter-spacing: -2px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .header-features {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .feature {
        padding: 0.6rem 1.2rem;
        width: auto;
        max-width: none;
    }

    .feature i {
        font-size: 1rem;
    }

    .feature span {
        font-size: 0.8rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-image {
        min-height: 250px;
    }

    .product-image img {
        min-width: 150px;
        min-height: 150px;
    }
} 