* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-oliva: #3c3d02;
    --azul-petroleo: #2d4861;
    --verde-vibrante: #11af22;
    --bege: #F5F5DC;
    --branco: #FFFFFF;
    --cinza: #666666;
    --cinza-claro: #f8f8f8;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--verde-oliva);
    background: var(--branco);
    line-height: 1.6;
}

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

/* Header Minimalista */
header {
    background: var(--branco);
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

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

.brand h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--verde-oliva);
    letter-spacing: 2px;
}

.brand p {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--azul-petroleo);
    margin-top: 4px;
    font-weight: 300;
}

/* Filtros Minimalistas */
.filters {
    padding: 60px 0 40px;
}

.filter-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar input,
.filter-bar select {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background: var(--branco);
    color: var(--verde-oliva);
    transition: all 0.3s ease;
    min-width: 200px;
}

.filter-bar input:focus,
.filter-bar select:focus {
    outline: none;
    border-color: var(--verde-vibrante);
}

.filter-bar input::placeholder {
    color: #999;
}

/* Modal de contato */
.contact-pop-btn {
    position: fixed;
    left: 24px;
    bottom: 26px;
    z-index: 998;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #11af22 0%, #2d4861 100%);
    color: var(--branco);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(17, 175, 34, 0.35);
    animation: contactPulse 2.6s ease-in-out infinite;
}

.contact-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 26, 0.56);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.contact-modal-overlay.active {
    display: flex;
}

.contact-modal {
    width: min(560px, 100%);
    background: linear-gradient(145deg, #ffffff 0%, #f8faf5 100%);
    border: 1px solid #dbe2d3;
    box-shadow: 0 22px 60px rgba(15, 25, 35, 0.35);
    padding: 32px;
    position: relative;
    animation: contactBounceIn 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.25);
}

.contact-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    color: var(--azul-petroleo);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.contact-modal-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--azul-petroleo);
    margin-bottom: 10px;
}

.contact-modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 500;
    color: var(--verde-oliva);
    margin-bottom: 10px;
}

.contact-modal-subtitle {
    color: var(--cinza);
    margin-bottom: 14px;
}

.contact-modal-form {
    display: grid;
    gap: 10px;
}

.contact-modal-form input,
.contact-modal-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ced6c6;
    background: #fff;
    color: var(--verde-oliva);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
    outline: none;
    border-color: var(--verde-vibrante);
    box-shadow: 0 0 0 3px rgba(17, 175, 34, 0.14);
}

.contact-modal-form textarea {
    resize: vertical;
    min-height: 92px;
}

.contact-modal-submit {
    width: 100%;
}

.contact-alert {
    margin: 0 0 14px 0;
    padding: 10px 12px;
    border: 1px solid;
    font-size: 14px;
}

.contact-alert-success {
    background: rgba(17, 175, 34, 0.2);
    border-color: rgba(17, 175, 34, 0.7);
    color: #defce1;
}

.contact-alert-error {
    background: rgba(232, 63, 63, 0.2);
    border-color: rgba(255, 109, 109, 0.8);
    color: #8d1111;
}

@keyframes contactBounceIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.92);
    }
    70% {
        opacity: 1;
        transform: translateY(-8px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes contactPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 28px rgba(17, 175, 34, 0.35);
    }
    50% {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 16px 32px rgba(17, 175, 34, 0.45);
    }
}

/* Grid de Produtos Minimalista */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0 80px;
}

.product-card {
    background: var(--branco);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 120%;
    overflow: hidden;
    background: var(--cinza-claro);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 24px 0;
}

.product-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--azul-petroleo);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--verde-oliva);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-rating {
    margin-bottom: 12px;
    color: var(--verde-vibrante);
    font-size: 14px;
}

.product-description {
    font-size: 14px;
    color: var(--cinza);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-price {
    font-size: 24px;
    color: var(--verde-oliva);
    font-weight: 500;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border: 1px solid;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.btn-primary {
    background: var(--verde-vibrante);
    border-color: var(--verde-vibrante);
    color: var(--branco);
}

.btn-primary:hover {
    background: #0d8719;
    border-color: #0d8719;
}

.btn-secondary {
    background: transparent;
    border-color: var(--azul-petroleo);
    color: var(--azul-petroleo);
}

.btn-secondary:hover {
    background: var(--azul-petroleo);
    color: var(--branco);
}

/* Footer Minimalista */
footer {
    border-top: 1px solid #e0e0e0;
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
}

footer p {
    font-size: 12px;
    color: var(--cinza);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--verde-vibrante);
    color: var(--branco);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(17, 175, 34, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(17, 175, 34, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-bar input,
    .filter-bar select {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .contact-pop-btn {
        left: 16px;
        bottom: 22px;
        padding: 12px 18px;
        font-size: 12px;
    }

    .contact-modal {
        padding: 26px 18px 18px;
    }

    .contact-modal h2 {
        font-size: 34px;
    }
}

/* Thumbnails minimalistas */
.product-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.thumbnail {
    width: 50px;
    height: 50px;
    object-fit: contain;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.product-thumbnails::-webkit-scrollbar {
    height: 2px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: var(--verde-vibrante);
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.pagination-container {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 16px;
    border: 1px solid var(--azul-petroleo);
    color: var(--azul-petroleo);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-link:hover, .page-link.active {
    background: var(--azul-petroleo);
    color: var(--branco);
}
