/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@600&display=swap');

:root {
    --bg-color: #EAEAEA; /* Cinza claro inspirado no logo */
    --text-color: #111111;
    --accent-color: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* Header e Navegação */
header {
    background-color: var(--bg-color);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

header img { height: 80px; }

nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover { color: #666; }





/* Seções Gerais */
section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; margin-bottom: 40px; }

/* Home - Missão, Visão, Valores */
.mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.mvv-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

/* Inovação Têxtil */
.inovacao-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

/* Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.produto-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}
.produto-card:hover { transform: translateY(-5px); }
.produto-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; }
.produto-preco { font-weight: 600; font-size: 1.2rem; margin-top: 10px; }
.btn-comprar {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--text-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* Contato */
.contato-info { text-align: center; font-size: 1.2rem; }
.contato-info a { color: var(--text-color); font-weight: 600; }

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #fff;
    margin-top: 40px;
}
/* style.css (base existente + novas regras) */

/* ... (restante do CSS anterior) ... */

/* NOVA SEÇÃO DE PILARES DE EXCELÊNCIA (BASEADO NA INOVAÇÃO TÊXTIL) */
.textil-innovation-section {
    padding: 60px 20px; /* Mais padding para destacar a seção */
    max-width: 1200px;
    margin: 0 auto;
}

.textil-innovation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Grade responsiva */
    gap: 30px;
    margin-top: 40px;
}

.innovation-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra suave para destacar */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.innovation-icon-svg {
    height: 60px; /* Altura do ícone, similar à imagem */
    width: auto;
    /* A cor é do próprio SVG se carregado via <img> */
    margin-bottom: 20px;
}

.innovation-card h3 {
    font-family: 'Playfair Display', serif; /* Mantendo a fonte de títulos do site */
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.innovation-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* =========================================================
   ESTILOS PARA A PÁGINA DE PRODUTOS (PAGINAÇÃO E MODAL)
========================================================= */

/* Botões dos Cards */
.botoes-card {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-visualizar {
    padding: 10px 15px;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-visualizar:hover {
    background: #f4f4f4;
}

.btn-comprar {
    border: 1px solid var(--text-color);
}

/* Estilização da Paginação */
.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-pagination, .page-number {
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-pagination:hover, .page-number:hover {
    background-color: var(--text-color);
    color: #fff;
    border-color: var(--text-color);
}

.page-number.active {
    background-color: var(--text-color);
    color: #fff;
    border-color: var(--text-color);
    pointer-events: none;
}

.btn-pagination.disabled {
    color: #aaa;
    background-color: #f9f9f9;
    border-color: #eee;
    cursor: not-allowed;
    pointer-events: none;
}

/* Modal (Janela para visualizar imagem maior) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    padding-top: 50px; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); /* Fundo escuro com transparência */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.3s;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}




