.footer-content, .footer-content * {
    color: #00B04F !important;
}
/* Garante que as colunas do footer mantenham largura e alinhamento consistentes em todos os idiomas */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column {
    flex: 1 1 0;
    min-width: 220px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* Carrinho de compras */
.cart-btn {
    background: #00B04F;
    color: white;
    border: none;
    padding: 0.6rem 1.0rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}
.cart-btn:hover {
    background: #009040;
}
.cart-qty {
    width: 80px;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
}
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    overflow-y: auto;
}
.cart-modal-content {
    background: white;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
    padding: 2rem;
}
.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.cart-modal-title {
    font-size: 1.3rem;
    font-weight: 600;
}
.cart-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}
.cart-modal-close:hover {
    background: #e2e8f0;
}
.cart-items-list {
    margin-bottom: 2rem;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}
.cart-item-desc {
    flex: 1;
}
.cart-item-qty {
    font-weight: 600;
    margin-left: 1rem;
}
.cart-send-btn {
    background: #00B04F;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.cart-send-btn:hover {
    background: #009040;
}
/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.4;
    color: #333;
    background-color: #f8fafc;
}

/* CABEÇALHO (Header) */
.header {
    background: #1e293b;
    color: white;
    padding: 1rem 0;
        text-align: justify;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.header-info {
    display: flex;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.info-icon {
    font-size: 1rem;
}

/* ÁREA HERO/TÍTULO PRINCIPAL */
.hero-section {
    background: linear-gradient(135deg, #f1f5f9, ##FFFFFF);
    padding: 3rem 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00B04F;
    margin-bottom: 1rem;
}


/* ÁREA DE RESUMO/ESTATÍSTICAS (5 Cartões) */
.stats-section {
    background: linear-gradient(135deg, #ffffff, #00B04F);
    padding: 2rem 0 2rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00B04F;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.4rem;
    color: #64748b;
    font-weight: 500;
}

/* ÁREA DE FILTROS (1 linha) */
.filters-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.5rem;
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filters-title {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 600;
}

.clear-filters-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.clear-filters-btn:hover {
    background: #dc2626;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #374151;
    font-size: 1.3rem;
}

.filter-select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1.0rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: #00B04F;
}

/* ÁREA DE RESULTADOS */
.results-section {
    background: white;
    padding: 1.1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.results-count {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
}

.view-controls {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.view-btn.active {
    background: #00B04F;
    color: white;
    border-color: #00B04F;
}

.view-btn:hover {
    border-color: #00B04F;
}

/* ÁREA DE PRODUTOS */
.products-section {
    background: white;
    padding: 2rem 0;
    min-height: 400px;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grid View */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.5rem;
}

/* List View */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

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

/* List View específico */
.products-list .product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.product-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.products-list .product-badges {
    margin-bottom: 0;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-material {
    background: #dbeafe;
    color: #1e40af;
}

.badge-certificate {
    background: #fef3c7;
    color: #92400e;
}

.badge-grade {
    background: #f3e8ff;
    color: #7c3aed;
}

.product-details {
    margin-bottom: 1rem;
}

.products-list .product-details {
    margin-bottom: 0;
    flex: 1;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.product-specs {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00B04F;
    margin-bottom: 1rem;
}

.products-list .product-price {
    margin-bottom: 0;
    margin-right: 1rem;
}

.product-actions {
    display: flex;
    justify-content: right;
}

.details-btn {
    background: #00B04F;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.details-btn:hover {
    background: #00A045;
}

/* MODAL DE DETALHES */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #e2e8f0;
}

.modal-body {
    padding: 2rem;
}

.modal-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modal-section {
    background: #f8fafc;
    padding: 0rem;
    border-radius: 8px;
   
}

.modal-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

/* Quando o texto for grande, exibir em linhas */
.detail-item {
    min-width: 100%;
    flex: 1 1 100%;
    word-break: break-word;
}

@media (max-width: 900px) {
    .section-grid {
        flex-direction: column;
    }
    .detail-item {
        min-width: unset;
    }
}
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}


/* RODAPÉ */
.footer {
    background: #1e293b;
    color: white;
    padding: 0rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00B04F;
}

.footer-column p {
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-info .company-name {
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    font-size: inherit;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        word-break: break-word;
        font-size: 1.05rem;
}

@media (max-width: 600px) {
    .contact-info .company-name {
        font-size: 0.95rem;
        word-break: break-word;
        text-align: center;
        padding: 0 0.5rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

.contact-icon {
    font-size: 1.0rem;
    width: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1px 1.5rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #cbd5e1;
    display: inline;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.3rem;
    flex-wrap: wrap;
}

.footer-bottom p {
     margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #00B04F;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .results-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-list .product-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-info {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .modal-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        justify-items: center;
    }
}

@media (max-width: 480px) {

    .footer-content {
        padding: 0 0.2rem;
        gap: 1rem;
    }
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

