/* Importação das Fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000033;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
header {
    background-color: #000033;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.logo img {
    height: 45px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1;
    transition: 0.3s;
}

nav a:hover {
    color: #ffcc00;
    /* Amarelo de destaque */
}

nav li {
    position: relative;
}

.dropdown-toggle {
    color: white;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    transition: background 0.25s ease;
}

.dropdown-toggle:hover,
.dropdown.open>.dropdown-toggle {
    background: rgba(255, 204, 0, 0.12);
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.dropdown.open>.dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #000033;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    z-index: 1002;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: capitalize;
}

.dropdown-menu a:hover {
    background: rgba(255, 204, 0, 0.12);
}

/* Seção Destaques */
.destaques {
    padding: 40px 15px;
    text-align: center;
}

.title-section {
    font-family: 'Montserrat', sans-serif;
    color: #000033;
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.carousel-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.carousel-container img {
    width: 100%;
    max-width: 1000px;
    max-height: 320px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .carousel-container {
        min-height: 220px;
    }

    .carousel-container img {
        max-height: 220px;
    }
}

.dots {
    margin-top: 25px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background-color: #000033;
}

/* Faixa de Marcas Autorizadas */
.autorizadas {
    background-color: #000033;
    color: white;
    display: flex;
    padding: 50px 8%;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.quem-somos-destaque {
    background: #ffdd47;
    color: #000033;
    padding: 50px 8%;
    margin: 40px auto;
    border-radius: 28px;
    max-width: 1200px;
}

.quem-somos-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(320px, 1fr);
    gap: 30px;
    align-items: start;
}

.quem-somos-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    min-height: 360px;
}

.quem-somos-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quem-somos-text {
    max-width: 640px;
}

.quem-somos-text h3 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #000033;
}

.quem-somos-text .quem-somos-valores {
    margin: 0;
    padding-left: 1.2rem;
    list-style: disc;
}

.quem-somos-text .quem-somos-valores li {
    margin-bottom: 0.85rem;
    line-height: 1.6;
}

.quem-somos-text .section-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}

.quem-somos-destaque h2 {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    margin-bottom: 18px;
    line-height: 1.1;
}

.quem-somos-destaque p {
    font-size: 1rem;
    line-height: 1.8;
}

.quem-somos-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quem-somos-item {
    background: white;
    color: #000033;
    padding: 20px 22px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

@media (max-width: 900px) {
    .quem-somos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .quem-somos-destaque {
        padding: 30px 6%;
    }

    .quem-somos-image img {
        min-height: 260px;
    }

    .quem-somos-tags {
        grid-template-columns: 1fr;
    }
}

.info-texto {
    width: 40%;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    padding-right: 30px;
    font-size: 1.25rem;
    font-weight: 300;
}

.marcas-logos {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.marcas-logos img {
    height: 35px;
    max-width: 130px;
    object-fit: contain;
    /* Efeito para deixar logos brancos no fundo escuro */
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, opacity 0.3s;
    opacity: 0.85;
}

.marcas-logos a.marca-mais {
    width: 35px;
    height: 35px;
    border: 2px dashed rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    margin-left: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.marcas-logos a.marca-mais:hover {
    transform: scale(1.1);
    border-color: #ffcc00;
}

.marcas-completas {
    padding: 60px 20px;
    text-align: center;
}

.marcas-completas .marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 18px;
    align-items: center;
    justify-items: center;
    margin-top: 30px;
}

.marcas-completas .marcas-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 14px;
    width: 100%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000033;
}

.marcas-completas .marcas-card img {
    max-height: 56px;
    max-width: 90%;
    width: auto;
    display: block;
}

.marcas-completas .marcas-card span {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.marcas-completas .marcas-card {
    box-sizing: border-box;
    overflow: hidden;
}

/* Blog de Dicas */
.blog-section {
    padding: 70px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-hero {
    text-align: center;
    padding: 50px 0 40px;
}

.blog-hero p {
    color: #ffcc00;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    line-height: 1.1;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero p:last-of-type {
    color: #333;
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
}

.blog-controls {
    display: grid;
    gap: 18px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.filter-panel {
    max-width: 1000px;
    margin: 0 auto;
}

.filter-toggle {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: #000033;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.filter-toggle::after {
    content: "☰";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

.filter-toggle.open::after {
    content: "✕";
}

.filter-panel-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.filter-panel-content:not(.collapsed) {
    max-height: 1200px;
    opacity: 1;
    padding: 22px 0 0;
}

.blog-search {
    max-width: 600px;
    margin: 0 auto;
}

.blog-search input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-search input:focus {
    border-color: #000033;
    box-shadow: 0 0 0 4px rgba(0, 0, 51, 0.08);
}

.blog-filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.blog-filter-label {
    font-weight: 700;
    color: #000033;
}

.blog-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.blog-filter-buttons button {
    border: 1px solid #ddd;
    background: #f8f8f8;
    color: #333;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.9rem;
}

.blog-filter-buttons button.active,
.blog-filter-buttons button:hover {
    background: #000033;
    color: white;
    border-color: #000033;
}

.blog-search-count {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.sobre-hero-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 5%;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    min-height: 360px;
}

.sobre-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre-text .section-label {
    color: #ffcc00;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.88rem;
}

.sobre-text h2 {
    font-size: clamp(2rem, 2.3vw, 2.6rem);
    line-height: 1.05;
    color: #000033;
}

.sobre-text p {
    color: #343434;
    line-height: 1.85;
    max-width: 620px;
}

@media (max-width: 900px) {
    .sobre-hero-section {
        grid-template-columns: 1fr;
        padding: 0 4%;
    }

    .sobre-image img {
        min-height: 280px;
    }

    .sobre-text {
        padding-top: 10px;
    }

    .blog-grid {
        margin-top: 24px;
        padding: 0 4%;
    }
}

@media (max-width: 600px) {
    .sobre-hero-section {
        gap: 22px;
        margin-top: 30px;
    }

    .sobre-text h2 {
        font-size: clamp(1.8rem, 5vw, 2.3rem);
    }

    .sobre-text p {
        max-width: 100%;
    }
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.blog-card-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-tag {
    display: inline-block;
    background: #ffcc00;
    color: #000033;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.blog-card h2 {
    font-size: 1.3rem;
    color: #000033;
    line-height: 1.25;
}

.blog-card p {
    color: #4b4b4b;
    line-height: 1.8;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #666;
    font-size: 0.9rem;
}

.read-more-btn {
    background: #000033;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #1a1a1a;
}

.blog-posts {
    padding: 40px 0 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-detail {
    background: #fcfcfc;
    border: 1px solid #e2e2e2;
    border-radius: 18px;
    padding: 30px 30px 24px;
    margin-bottom: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.blog-detail h2 {
    font-size: 1.9rem;
    margin-bottom: 18px;
}

.blog-detail p {
    color: #3b3b3b;
    line-height: 1.8;
    margin-bottom: 16px;
}

.back-to-top {
    display: inline-block;
    margin-top: 10px;
    color: #000033;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.back-to-top:hover {
    border-color: #ffcc00;
}

/* Seção de Produtos */
.produtos {
    text-align: center;
    padding: 80px 20px;
}

.ver-mais-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.btn-ver-mais {
    display: inline-block;
    background-color: #000033;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.btn-ver-mais:hover {
    background-color: #1a1a1a;
}

.produtos-page {
    padding: 70px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.produtos-top {
    max-width: 900px;
    margin: 0 auto 40px;
    display: grid;
    gap: 18px;
    text-align: center;
}

.products-filter {
    display: grid;
    gap: 12px;
    justify-content: center;
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.filter-action-btn {
    background: #000033;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.25s ease;
}

.filter-action-btn:hover {
    background: #1a1a66;
}

.products-filter .filter-label {
    font-weight: 700;
    color: #000033;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.92rem;
}

.products-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}

.filter-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #000033;
}

.filter-checkbox span {
    color: #333;
}

.filter-checkbox input:checked+span {
    font-weight: 700;
}


.produtos-top p {
    color: #4b4b4b;
    max-width: 760px;
    margin: 0 auto;
}

.search-wrapper {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

#search-produto {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#search-produto:focus {
    border-color: #000033;
    box-shadow: 0 0 0 4px rgba(0, 0, 51, 0.08);
}

.search-count {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
}

.nenhum-produto {
    grid-column: 1 / -1;
    color: #333;
    font-size: 1rem;
    text-align: center;
    padding: 40px 0;
}

.filtros-produtos {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 45px;
}

.filtros-produtos span {
    font-family: 'Montserrat', sans-serif;
    color: #000033;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 3px solid transparent;
    padding-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.filtros-produtos span:hover {
    border-color: #ffcc00;
}

.menu-toggle {
    display: none;
    /* Esconde no computador */
}

/* Responsividade para Dispositivos Móveis */
/* Mobile Adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* APARECE no celular */
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .nav-menu {
        display: none;
        /* Esconde o menu */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000033;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
        min-width: auto;
        width: 100%;
    }

    .dropdown-menu a {
        padding: 12px 24px;
        border-radius: 0;
        display: block;
        width: 100%;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
        width: 100%;
        padding-right: 24px;
        text-align: right;
    }

    .info-texto {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        padding-bottom: 20px;
        text-align: center;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

footer {
    background-color: #000033;
    color: white;
    padding: 40px 20px;
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-info,
.footer-map,
.footer-social {
    flex: 1;
    text-align: left;
}

.footer-info h3,
.footer-map h3,
.footer-social h3 {
    color: #ffcc00;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.footer-info p {
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.footer-links a:hover {
    background: rgba(255, 204, 0, 0.15);
    color: #ffcc00;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.footer-info a {
    color: #ffffff;
    text-decoration: none;
}

.footer-info a:hover {
    color: #ffcc00;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}



.footer-social a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    color: white;
}

.footer-social a:hover {
    background: rgba(255, 204, 0, 0.2);
    transform: translateY(-1px);
}

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

@media (max-width: 768px) {
    .autorizadas {
        flex-direction: column;
        /* Empilha o texto sobre os logos */
        padding: 40px 5%;
    }

    .info-texto {
        width: 100%;
        /* Ocupa a largura total */
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .marcas-logos {
        width: 100%;
    }
}

/* Responsividade para Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .footer-info,
    .footer-map,
    .footer-social {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .produtos {
        padding: 60px 15px;
    }

    .filtros-produtos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }

    .filtros-produtos span {
        font-size: 1rem;
        padding: 8px 10px;
        white-space: nowrap;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 20px 0 0;
    }

    .produto-card {
        padding: 18px;
    }

    .produto-card img {
        max-height: 220px;
    }

    .btn-interesse {
        padding: 12px 14px;
    }
}

/* Grid de Produtos Responsivo */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.produto-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
}

.produto-card:focus-visible {
    outline: 3px solid #25d366;
    outline-offset: 2px;
}

.produto-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.produto-card-header img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
}

.produto-card h3 {
    font-size: 1.1rem;
    color: #000033;
    margin: 0;
    text-align: center;
}

.produto-modelo {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.produto-brand {
    color: #333;
    font-size: 0.95rem;
    margin: 0;
}

.produto-card-details {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.produto-card.active .produto-card-details {
    max-height: 400px;
    opacity: 1;
    margin-top: 18px;
}

.produto-descricao {
    color: #333;
    line-height: 1.55;
    margin: 0 0 14px;
}

.produto-codigo {
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

.btn-interesse {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    width: 100%;
    text-align: center;
    transition: background 0.3s;
}

.btn-interesse:hover {
    background-color: #128c7e;
}

/* Estilo do botão de filtro ativo */
.filter-btn.active {
    border-bottom: 3px solid #ffcc00;
    color: #000033;
}