/* ============================================
   PRODUTOS.CSS - Estilos específicos da página de produtos
   ============================================ */

/* Customizações gerais */
body { 
    padding-top: 0; 
}

/* Header - Botão voltar */
.header-back-btn {
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.header-back-btn:hover {
    background-color: #1c572b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 87, 43, 0.3);
}

.header-back-btn i {
    font-size: 1.2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(28, 87, 43, 0.6), rgba(45, 122, 62, 0.6)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1200');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Services Section */
.services-section {
    background: #f7f7f7;
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    color: #1c572b;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.25);
    border-color: #10b981;
}

.product-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 87, 43, 0.75) 0%, rgba(45, 122, 62, 0.7) 100%);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #10b981;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.product-card-body {
    padding: 24px 24px 16px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.product-card-body h3 {
    color: #059669;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.product-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: center;
}

.product-highlight {
    background: #fff;
    color: #059669;
    border: 2px solid #10b981;
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.product-benefits {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
    text-align: left;
}

.product-benefits li {
    padding: 6px 0;
    color: #334155;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.product-benefits li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.product-card-footer {
    padding: 0 20px 20px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.btn-product {
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

.btn-product:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1c572b;
    padding: 60px 0;
    text-align: center;
    border-bottom: 6px solid #b8ddb9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.8;
    color: #334155;
}

.btn-cta {
    background: #16a34a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    background: #15803d;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1c572b 0%, #145220 100%);
    color: #e8eaed;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(45, 122, 62, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: -10px;
}

.footer-logo img {
    display: block;
    height: 120px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.2;
    color: #9aa0a6;
    margin: 0;
    max-width: 320px;
    white-space: nowrap;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-col ul li {
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul li a {
    color: #9aa0a6;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #2d7a3e;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9aa0a6;
    margin-bottom: 2px;
}

.footer-contact .icon {
    font-size: 16px;
    opacity: 0.8;
}

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

.footer-copyright {
    font-size: 13px;
    color: #9aa0a6;
    margin: 0 0 6px 0;
}

.footer-note {
    font-size: 13px;
    color: #e8eaed;
    margin: 0;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid #4ade80;
    text-align: center;
    line-height: 1.6;
    margin-top: 8px;
}

/* ============================================
   MEDIA QUERIES - RESPONSIVIDADE
   ============================================ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        margin: 0 auto -10px;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .products-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .header-back-btn {
        width: auto;
        padding: 12px 24px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 { 
        font-size: 2rem; 
    }
    
    .page-header p {
        font-size: 1.1rem;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .section-title { 
        font-size: 1.8rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 30px 0 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-col ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .footer-contact li {
        justify-content: center;
        font-size: 13px;
    }
    
    .footer-tagline {
        margin: 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .header-back-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 { 
        font-size: 1.6rem; 
    }
    
    .page-header p {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .section-title { 
        font-size: 1.5rem;
        max-width: 240px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .btn-cta {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}
