/* 
 * Veganoo Sections CSS
 * Namespace: vng-
 * Paleta oficial Veganoo:
 * - Dark Forest Green: #0B2E1F
 * - Leaf Green (primary): #4CAF50
 * - Leaf Green (hover/active): #3D9142
 * - Light Leaf (accent/gradient top): #A3D977
 * - Golden Lime (accent/gradient bottom): #D4C55C
 * - Neutral Gray (secondary text): #6B7280
 * - White: #FFFFFF
 */

/* ===== VNG BRANDS STRIP ===== */
.vng-brands {
    padding: 60px 0;
    background: #FFFFFF;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.vng-brands .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.vng-brands .section-title h3 {
    color: #6B7280;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.vng-brands-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.vng-brand-item {
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.vng-brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.vng-brand-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* ===== VNG BLOG PREVIEW ===== */
.vng-blog {
    padding: 80px 0;
    background: #f8f9fa;
}

.vng-blog .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.vng-blog .section-title h2 {
    color: #0B2E1F;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vng-blog .section-title p {
    color: #6B7280;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.vng-blog-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.vng-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vng-blog-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.vng-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.vng-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4CAF50;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vng-blog-content {
    padding: 25px;
}

.vng-blog-title {
    color: #0B2E1F;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.vng-blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vng-blog-title a:hover {
    color: #4CAF50;
}

.vng-blog-excerpt {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vng-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vng-blog-date {
    color: #6B7280;
    font-size: 13px;
}

.vng-blog-read-more {
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vng-blog-read-more:hover {
    color: #3D9142;
}

/* ===== VNG TEAM ===== */
.vng-team {
    padding: 80px 0;
    background: #FFFFFF;
}

.vng-team .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.vng-team .section-title h2 {
    color: #0B2E1F;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vng-team .section-title p {
    color: #6B7280;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.vng-team-card {
    text-align: center;
    padding: 30px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.vng-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.vng-team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.vng-team-card:hover .vng-team-photo {
    border-color: #4CAF50;
}

.vng-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vng-team-name {
    color: #0B2E1F;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vng-team-role {
    color: #4CAF50;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vng-team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.vng-team-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #6B7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.vng-team-social a:hover {
    background: #4CAF50;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ===== VNG FOOTER ===== */
.vng-footer {
    background: #0B2E1F;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.vng-footer-content {
    margin-bottom: 40px;
}

.vng-footer-brand {
    margin-bottom: 30px;
}

.vng-footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

.vng-footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
}

.vng-footer-links h5 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.vng-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.vng-footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.vng-footer-links ul li a:hover {
    color: #4CAF50;
}

.vng-footer-newsletter h5 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vng-footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.vng-newsletter-form {
    display: flex;
    gap: 10px;
}

.vng-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 14px;
}

.vng-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.vng-newsletter-form button {
    padding: 12px 20px;
    background: #4CAF50;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vng-newsletter-form button:hover {
    background: #3D9142;
}

.vng-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.vng-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .vng-brands-grid {
        gap: 30px;
    }
    
    .vng-brand-item img {
        max-height: 50px;
    }
    
    .vng-blog .section-title h2,
    .vng-team .section-title h2 {
        font-size: 28px;
    }
    
    .vng-newsletter-form {
        flex-direction: column;
    }
    
    .vng-newsletter-form input {
        margin-bottom: 10px;
    }
}