/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #e6e9f2;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1d2b46;
    color: white;
    padding: 15px 40px;
    flex-wrap: wrap;
    min-height: 70px;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.header .logo img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header .logo:hover img {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav a.active {
    background-color: #2F446B;
    color: white;
}

.whatsapp-header {
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-header:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Banner de Produtos */
.produtos-banner {
    background: linear-gradient(135deg, #1d2b46 0%, #2F446B 50%, #1d2b46 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.produtos-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 43, 70, 0.1);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.stats-banner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e6e9f2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Seção de Produtos */
.produtos-section {
    padding: 3rem 0;
    background: #e6e9f2;
}

.produtos-header {
    text-align: center;
    margin-bottom: 2rem;
}

.busca-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.busca-container input {
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    outline: none;
}

.busca-container input:focus {
    box-shadow: 0 8px 40px rgba(47, 68, 107, 0.2);
    transform: translateY(-2px);
}

.busca-container i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #2F446B;
    font-size: 1.3rem;
}

/* Filtros Rápidos */
.filtros-rapidos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 20px;
}

.filtro-rapido {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    background: white;
    color: #2F446B;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.filtro-rapido:hover {
    background: #2F446B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(47, 68, 107, 0.3);
}

.filtro-rapido.active {
    background: linear-gradient(135deg, #1d2b46 0%, #2F446B 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(29, 43, 70, 0.4);
}

/* Layout Principal */
.produtos-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Menu Lateral */
.menu-lateral {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border: 1px solid rgba(47, 68, 107, 0.1);
}

.menu-lateral::-webkit-scrollbar {
    width: 6px;
}

.menu-lateral::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.menu-lateral::-webkit-scrollbar-thumb {
    background: #2F446B;
    border-radius: 3px;
}

.menu-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e6e9f2;
}

.menu-header h3 {
    color: #1d2b46;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.categoria-item {
    margin-bottom: 0.5rem;
}

.categoria-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, #1d2b46 0%, #2F446B 100%);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.categoria-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 43, 70, 0.3);
}

.categoria-header.active {
    background: linear-gradient(135deg, #2F446B 0%, #1d2b46 100%);
}

.categoria-icon {
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.categoria-header.active .toggle-icon {
    transform: rotate(180deg);
}

.categoria-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    margin-bottom: 1rem;
}

.categoria-content.active {
    max-height: 1000px;
    padding: 1rem;
}

.fabricacao-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: #e8f4fd;
    color: #1d2b46;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 4px solid #2F446B;
}

.subcategoria-item {
    margin-bottom: 0.5rem;
}

.subcategoria-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    background: #e6e9f2;
    color: #1d2b46;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.subcategoria-header:hover {
    background: #d1d8e8;
    transform: translateX(5px);
}

.subcategoria-header.active {
    background: #2F446B;
    color: white;
}

.subcategoria-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 1rem;
}

.subcategoria-content.active {
    max-height: 500px;
    padding: 0.5rem 0;
}

.sub-subcategoria-item {
    margin-bottom: 0.3rem;
}

.sub-subcategoria-header {
    padding: 0.6rem;
    background: #f1f3f6;
    color: #1d2b46;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.sub-subcategoria-header:hover {
    background: #e6e9f2;
    transform: translateX(3px);
}

.produto-submenu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    background: #e6e9f2;
    color: #1d2b46;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.produto-submenu-item:hover {
    background: #d1d8e8;
    transform: translateX(5px);
}

/* Área Principal de Produtos */
.produtos-main {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(47, 68, 107, 0.1);
}

.produtos-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e6e9f2;
}

.produtos-info h2 {
    color: #1d2b46;
    font-size: 2rem;
    font-weight: 700;
}

.produtos-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#produtos-contador {
    color: #2F446B;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: #e6e9f2;
    border-radius: 20px;
}

/* Grid de Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.produto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(47, 68, 107, 0.1);
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.categoria-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #1d2b46 0%, #2F446B 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
    text-transform: uppercase;
}

.produto-imagem {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e6e9f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.produto-imagem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(47,68,107,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.05);
}

.produto-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-marca {
    color: #2F446B;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.produto-nome {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d2b46;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    min-height: 2.6rem;
}

.produto-descricao {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.produto-actions {
    margin-top: auto;
}

.btn-detalhes {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #1d2b46 0%, #2F446B 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-detalhes:hover {
    background: linear-gradient(135deg, #2F446B 0%, #1d2b46 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 43, 70, 0.3);
}

/* Paginação */
.paginacao {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.paginacao button {
    padding: 0.8rem 1rem;
    border: 2px solid #e6e9f2;
    background: white;
    color: #2F446B;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 45px;
}

.paginacao button:hover:not(:disabled) {
    background: #e6e9f2;
    transform: translateY(-2px);
}

.paginacao button.active {
    background: linear-gradient(135deg, #1d2b46 0%, #2F446B 100%);
    color: white;
    border-color: #2F446B;
}

.paginacao button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-content {
    background: white;
    border-radius: 20px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: #ff3742;
    transform: scale(1.1);
}

.modal-header {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 2px solid #e6e9f2;
}

.modal-imagem {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e6e9f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.modal-imagem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(47,68,107,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.modal-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.modal-info h2 {
    color: #1d2b46;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.modal-marca {
    color: #2F446B;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: #e6e9f2;
    border-radius: 20px;
    display: inline-block;
}

.modal-info p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.modal-body {
    padding: 2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    color: #1d2b46;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.modal-section h3 i {
    margin-right: 0.8rem;
    color: #2F446B;
    font-size: 1.2rem;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f3f6;
    color: #555;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.modal-section li:before {
    content: '•';
    color: #2F446B;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    font-size: 1.2rem;
}

.modal-footer {
    padding: 2rem;
    border-top: 2px solid #e6e9f2;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.btn-modal {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 150px;
    font-size: 0.9rem;
}

.btn-documentacao {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.btn-documentacao:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-orcamento {
    background: linear-gradient(135deg, #1d2b46 0%, #2F446B 100%);
    color: white;
}

.btn-orcamento:hover {
    background: linear-gradient(135deg, #2F446B 0%, #1d2b46 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 43, 70, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Footer */
.testediv {
    background-color: #1d2b46;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 2px;
}

.contato-mapa iframe {
    width: 100%;
    height: 300px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.contato-mapa iframe:hover {
    filter: grayscale(0%);
}

.newsletter {
    background-color: #2F446B;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.newsletter h1 {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 600;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    flex: 1;
    min-width: 200px;
    outline: none;
}

.newsletter button {
    padding: 15px 30px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.footer-main {
    background-color: #1d2b46;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #e6e9f2;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #2F446B;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .produtos-layout {
        grid-template-columns: 280px 1fr;
        gap: 1.5rem;
    }
    
    .menu-lateral {
        padding: 1rem;
    }
}

@media (max-width: 968px) {
    .produtos-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .menu-lateral {
        position: static;
        max-height: none;
        margin-bottom: 2rem;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .modal-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-imagem {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 15px 20px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .stats-banner {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 200px;
    }
    
    .filtros-rapidos {
        gap: 0.5rem;
    }
    
    .filtro-rapido {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .btn-modal {
        min-width: auto;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter input {
        width: 100%;
        max-width: 400px;
    }
    
    .newsletter button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .busca-container input {
        padding: 1rem 3rem 1rem 1rem;
        font-size: 1rem;
    }
    
    .produtos-main {
        padding: 1rem;
    }
    
    .produtos-info {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .produtos-info h2 {
        font-size: 1.5rem;
    }
    
    .produto-card {
        height: auto;
        min-height: 380px;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}


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

