* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Host Grotesk
}


:root {
    /* Cores principais */
    --cor-primaria: #1a55ff;
    --cor-secundaria: #0be5e7;
    --cor-suporte: #032eae;
    --cor-preto: #212121;
    
    /* Tons neutros */
    --branco: #ffffff;
    --cinza-claro: #f4faff;
    --texto-suave: #555555;
}
body {
    background: #f2f2f2;
    color: var(--cor-preto);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ================= HEADER ================= */

.header {
    padding: 10px 0 0 0;
}

.listaCategorias {
    background-color: var(--branco);
    display: flex;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 20px 20px;
    margin: 8px 0 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.listaCategorias li {
    white-space: nowrap; /* impede quebrar o nome */
}

.listaCategorias a {
    display: inline-block;
    color: var(--cor-preto);
    margin-left: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: .2s ease;
}

.listaCategorias a:hover {
    color: var(--cor-suporte);
}

.nav {
    padding: 20px;
    border-radius: 15px;
    background-color: #01e2ee00;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h3 {
    color: var(--cor-preto);
}

.logo {
    width: 150px;
    height: auto;
}

.logo span {
    color:var(--cor-secundaria);
}

nav a {
    color: var(--cor-preto);
    margin-left: 30px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: .3s;
}

nav a:hover {
    color: var(--cor-preto);
}

.btn-nav {
    background: var(--cor-primaria);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    transition: .3s;
}

.btn-nav:hover {
    color: var(--cinza-claro);
    background: var(--cor-suporte);
}
.btn-primary {
    border: var(--cor-secundaria) solid 1px ;
    background: #01e2eea0 ;
    color: var(--cor-preto);
    padding: 10px 18px;
    border-radius: 8px;
    transition: .3s;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 20px 50px rgba(1, 44, 46, 0.15);
    transition: 0.2s;
}

.btn-primary:hover {
    color: var(--cor-secundaria);
    border: #01e2ee4b solid 1px ;
    background: var(--cor-suporte);
    transform: scale(1.05);
}

/* ================= HERO ================= */

.hero {
    position: relative;
    background-image: url('../img/banner-hero-anaeletro-branco.jpg') ;
    background-size: cover;
    padding: 20px 0 140px 0;
    color: var(--cor-preto);
}

.hero-content {
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 25px 0 25px 0;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* VANTAGENS */

.vantagens-flutuante {
    position: absolute;
    bottom: -100px;
    width: 100%;
}

.vantagens-linha {
    border-radius: 15px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vantagem {
    background-color: var(--branco);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 20px 20px;
    color: var(--cor-preto);
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.separador {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.6);
}


/* CARROSSEL */
.vitrine-header {
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

.vitrine-header h2 {

    font-size: 38px;
    margin-bottom: 15px;
    color: var(--cor-preto);
}

.vitrine-header p {
    color: var(--cor-preto);
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
}

/* PRODUTOS */
.secao-header {
    text-align: center;
    margin-bottom: 70px;
}

.secao-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--cor-preto);
}

.secao-header p {
    color: var(--cor-preto);
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
}

.grid-categorias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD */
.card-categoria {
    background-color: var(--branco);
    border-radius: 4px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(0, 8, 160, 0.04);
    position: relative;
    overflow: hidden;
}

.card-categoria:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 8, 160, 0.1);
    border-color: var(--cor-secundaria);
}


.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.6s;
    border-radius: 4px;
}

.card-categoria:hover img {
    transform: scale(1.01);
}

.card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;

}

.card-content {
    padding: 10px;
}

.card-content h3 {
    color: var(--cor-preto);
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
}

.card-content p {
    text-align: center;
    font-size: 15px;
    margin-bottom: 50px;
    color: #555;
}
@media(max-width: 500px){
    .btn-secundario {
        font-size: 12px;
        font-weight: 700;
        padding: 10px;
}

    .card-content h3 {
        text-align: left;
        font-size: 22px;
        margin-bottom: 0;
    }

    .card-content p {
        text-align: left;
        font-size: 15px;
        margin-bottom: 16px;
        color: #555;
}}

.btn-secundario {
    border: var(--cor-suporte) solid 1px;
    color: var(--cor-suporte);
    padding: 10px 60px;
    border-radius: 12px;
    transition: .3s;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 20px 50px rgba(1, 44, 46, 0.089);
    transition: 0.2s;
}

.btn-secundario:hover {
    color: var(--branco);
    border: #01e2ee4b solid 1px ;
    background: var(--cor-suporte);
    transform: scale(0.2);
}
.div-btn-vitrine {
    margin: 40px;
    display: flex;
    justify-content: center;
}

.btn-vitrine {
    background-color: var(--cor-primaria);
    color: var(--branco);
    padding: 10px 60px;
    border-radius: 12px;
    transition: .3s;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 20px 50px rgba(1, 44, 46, 0.15);
    transition: 0.2s;
    display: inline-block;
    text-align: center;
}
.btn-vitrine:hover {
    border: var(--cor-secundaria) solid 1px;
    color: var(--cor-suporte);
    background-color: #04d9ff9f;
    transform: scale(1.05);
}


/* ================= FAQ REINVENTADO ================= */
.faq {
    padding: 100px 0;
}

.faqContainer {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq h2 {
    text-align: center;
    color: var(--cor-preto);
    font-size: 32px;
    margin-bottom: 50px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eef2ff;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 8, 160, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--cor-secundaria);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 85, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--cor-preto);
    text-align: left;
}

.faq-question::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--cor-secundaria);
    border-bottom: 2px solid var(--cor-secundaria);
    transform: rotate(45deg);
    transition: 0.3s ease;
    margin-left: 20px;
}

/* Quando o FAQ está aberto */
.faq-item.active .faq-question::after {
    transform: rotate(-135deg);
}

.faq-item.active {
    border-color: var(--cor-secundaria);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    padding-bottom: 25px;
    font-size: 16px;
}

/* FOOTER */
.footer {
    background: #131313;
    color: #ffffff;
    padding: 80px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

@media (max-width: 600px) {
    .listaCategorias {
        display: none;
    }

    .footer {
        padding: 12px;
    }

    .footer-grid { 
        display: block; 
        text-align: left !important;
    }
    
    .footer-box { 
        display: block;
        flex-direction: column; 
        align-items: flex-start !important;
        text-align: left !important;
        padding: 12px 0;
    }

    .footer-nav {
        display: flex;
        flex-direction: column; 
        align-items: flex-start !important; 
        width: 100%;
    
    }

    .footer-nav a {
        display: block;
        width: auto;
        text-align: left !important;
        margin-left: 0 !important;
    }

    .footer-box h4 {
        margin-left: 0;
        margin-bottom: 15px;
        text-align: left;
        width: 100%;
    }

    .categorias {
        padding: 10px 0;
    }
}

.logo-footer {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.footer-box h4 {
    color: var(--cor-secundaria);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-nav a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.legal-info {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #ccc;
    text-decoration: underline;
    font-size: 14px;
}

.payment-methods p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

/* BANNER DE COOKIES */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(0, 8, 160, 0.534);
    backdrop-filter: blur(10px);
    border: 1px solid var(--cor-secundaria);
    padding: 20px;
    border-radius: 15px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: var(--cor-secundaria);
    font-weight: bold;
}

.btn-cookie {
    background: var(--cor-secundaria);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cookie:hover {
    background: #ffffff;
}

/* Responsividade Footer */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 900px) {

    .vantagens-flutuante {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }

    .vantagens-linha {
        border-radius:20px ;
        /* background: rgb(255, 255, 255); */
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .vantagem {
        width: 300px;
        backdrop-filter: blur(20px);
        border-radius: 8px;
        padding: 20px 20px;
        font-weight: 600;
        font-size: 18px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
    .separador {
        display: none;
    }

    .hero {
        padding-bottom: 80px;
    }

    .categorias {
        padding: 10px 0;
    }
}
/* ================= CTA FINAL ================= */
.cta-final {
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-container {
    padding: 30px 30px;
    border-radius: 20px;
    background-image: url(../img/bg-cta.jpg);
    background-size: cover;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
    }
    .cta-illustration {
        order: -1;
    }
    .cta-container {
        padding: 30px 30px;
        border-radius: 20px;
    }
}

/* BOTÃO PRINCIPAL */
.btn-principal {
    display: inline-block;
    padding: 16px 40px;
    background: var(--cor-secundaria);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(1,226,238,0.4);
}

.menu-toggle {
    display: none; /* Escondido no desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--cor-suporte);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--cor-secundaria);
        padding: 20px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    #nav-links.active { display: flex; }
    
    nav a { 
        margin: 10px 0; 
        color: var(--cor-preto); 
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 900px) {
    .menu-toggle {
        display: flex; 
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    #nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: var(--branco);
        padding: 8px;
        z-index: 1000;
    }

    #nav-links.active {
        display: flex; 
    }

    nav a {
        margin: 15px 0;
        color: var(--cor-preto);
        text-align: center;
    }
}

.footer-box i {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
    color: var(--cor-secundaria);
    vertical-align: middle;
    margin-right: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--cor-secundaria);
}

.payment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.payment-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.linkScb {
    color: #fff;
    text-decoration: none;
}

.social-links a {
    text-decoration: none !important;
}

/* ================= PÁGINA DE PRIVACIDADE ================= */
.politica-container {
    padding: 10px 0 80px 0; 
    background-color: #f9f9f9;
}

.politica-content {
    max-width: 900px; 
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    color: #333;
    line-height: 1.8;
}

.politica-content h1 {
    color: var(--cor-preto);
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.politica-content h2 {
    color: var(--cor-preto);
    font-size: 24px;
    margin: 30px 0 15px 0;
    border-left: 5px solid var(--cor-secundaria);
    padding-left: 15px;
}

.politica-content h3 {
    font-size: 18px;
    color: var(--cor-preto);
}

.politica-secao {
    margin-bottom: 30px;
}

.politica-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.politica-content li {
    margin-bottom: 8px;
}

.divisor {
    border: 0;
    border-top: 1px solid #eee;
    margin: 40px 0;
}

.politica-footer-texto {
    text-align: center;
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    .politica-content {
        width: 95%;
        padding: 25px;
    }
}

.logoScb {
    width: 100px;
    height: auto;

}
.logoScbFAQ {
    width: 120px;
    height: auto;
    text-decoration: none;
    margin-bottom: 40px;
}

.hero-mobile-img {
    display: none;
}
.logoAnaeletroMobile {
    display: none;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    
    }

    .hero-mobile-img {
        display: block; 
        width: 100%;
        max-width: 500px;
/*         margin-top: -50px; */
        margin-bottom: -40px;

    }

    .hero-mobile-img img {
        width: 100%;

    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 40px;
        line-height: 1.0;
    }
    .btn-primary{
    color: var(--cor-secundaria);
    border: #01e2ee4b solid 1px ;
    background: var(--cor-suporte);
    }
    .logoAnaeletroMobile {
        display: block;
    }
}

/* ================= SEÇÃO SCB CRÉDITO ================= */
.scb-info {
    padding: 40px 0 20px 0;
}

.scb-card {
    display: flex;
    align-items: center;
    background: #f4faff; 
    border: 1px solid #e0eefd;
    padding: 20px 30px;
    border-radius: 15px;
    gap: 20px;
    transition: 0.3s;
}

.scb-card:hover {
    border-color: var(--cor-secundaria);
    box-shadow: 0 5px 15px rgba(0, 8, 160, 0.05);
}

.scb-icon i {
    color: var(--cor-suporte);
    width: 28px;
    height: 28px;
    stroke-width: 1.5px;
    display: block;
}

.scb-text p {
    color: var(--cor-suporte);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.btn-scb-link {
    margin-left: auto; 
    color: var(--cor-suporte);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-scb-link i {
    width: 16px;
    transition: transform 0.3s;
}

.btn-scb-link:hover {
    color: var(--cor-secundaria);
}

.btn-scb-link:hover i {
    transform: translateX(3px);
}

/* Responsivo para SCB */
@media (max-width: 768px) {
    .scb-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .btn-scb-link {
        margin: 10px auto 0 auto;
    }
}

/* ================= PÁGINA DE PRODUTOS ================= */

/* Cabeçalho de Categorias */
.categoria-header {
    margin: 60px 0 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.categoria-header h2 {
    color: var(--cor-preto);
    font-size: 2rem;
    font-weight: 800;
    white-space: nowrap;
}

.categoria-header .linha-design {
    height: 4px;
    flex-grow: 1;
    background: linear-gradient(to right, var(--cor-secundaria), transparent);
    border-radius: 10px;
}

/* Grid e Cards */
.grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.card-produto {
    background: var(--branco);
    border-radius: 16px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-produto:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(26, 85, 255, 0.12);
    border-color: var(--cor-secundaria);
}

.img-container {
    width: 100%;
    height: 160px;
    background-color: #f0f4f8;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conteudo-produto {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.conteudo-produto h3 {
    font-size: 1.1rem;
    color: var(--cor-preto);
    margin-bottom: 8px;
    font-weight: 700;
}

.conteudo-produto p {
    font-size: 0.9rem;
    color: var(--texto-suave);
    line-height: 1.4;
    margin-bottom: 15px;
}

.btn-card {
    margin-top: auto;
    padding: 10px;
    border: 1.5px solid var(--cor-primaria);
    color: var(--cor-primaria);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
}

.btn-card:hover {
    background: var(--cor-primaria);
    color: var(--branco);
}

@media (max-width: 768px) {
    .pagamento-grid { grid-template-columns: 1fr; }
}

/* ===== CARROSSEL DE CATEGORIAS ===== */

.categorias-home {
    padding: 60px 0;
    background: #f4faff;
}

.carousel-wrapper {
    position: relative;
}

.carousel-categorias {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 4px 20px 4px;
}

.carousel-categorias::-webkit-scrollbar {
    display: none;
}

.categoria-card {
    min-width: 240px;
    flex: 0 0 auto;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--cor-preto);
    font-weight: 700;
    border: 1px solid #e6edf5;
    transition: 0.3s;
}

.categoria-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.categoria-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.categoria-card span {
    display: block;
    padding: 14px;
    text-align: center;
}

@media (max-width: 768px) {

    .categoria-card {
        min-width: 180px;
    }

    .carousel-btn {
        display: none;
    }

}

/* ===== CARROSSEL ===== */
.vitrine {
    padding: 120px 0; 
}

.carousel {
    overflow: hidden;
    width: 100%;
    padding: 20px 0; 
}

.carousel-track {
    display: flex;
    align-items: center; 
    gap: 12px;
    transition: transform 0.6s ease;
}

.carousel-item {
    min-width: calc(100% / 3);
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.45s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.carousel-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;

}

/* ITEM EM DESTAQUE */
@media (max-width: 768px) {

    .carousel-item {
        min-width: 100%;
    }

    .carousel::after {
        content: "← deslize →";
        display: block;
        text-align: center;
        margin-top: 10px;
        font-size: 13px;
        color: var(--cor-preto);
        opacity: 0.7;
    }

@media (max-width: 768px) {

    .vitrine {
        padding: 50px 0 30px 0;
    }

    .vitrine .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .vitrine-header {
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .vitrine-header h2 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .vitrine-header p {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .carousel {
        padding: 8px 0 12px 0;
    }
    .secao-header {
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .secao-header h2 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .secao-header p {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
}
}
@media (max-width: 768px) {

    .grid-categorias {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .card-categoria {
        width: 100%;
        padding: 20px 14px;
    }

    .card-img img {
        height: 150px;
        object-fit: cover;
    }

    .card-content h3 {
        font-size: 1rem;
        padding: 2px;
        text-align: center;
    }    
    .card-content p {
        font-size: 0.8rem;
        text-align: center;
        
    }
    .btn-secundario {
        width: 100%;
        margin: 0;
        padding: 6px 15px;
        white-space: normal;
        word-break: break-word;
    }

}
.grid-categorias > * {
    min-width: 0;
}

@media (max-width: 768px) {
    .listaCategorias {
        display: none;
    }
    /* seção mais contida */
    .carousel {
        width: 100%;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        gap: 0;
        width: 100%;
        transform: translateX(0);
        flex-wrap: nowrap;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        transform: scale(1);
        margin: 0;
        min-width: 100%
    }

}

/* === CORREÇÃO GLOBAL MOBILE === */
@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    /* ===== SEÇÃO DO CARROSSEL ===== */
    .secao-categorias {
        overflow: hidden;
        width: 100%;
    }

    .carousel-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .carousel-track {
        display: flex;
        gap: 0;
        width: 100%;
        will-change: transform;
    }

    .carousel-item {
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        box-sizing: border-box;
    }

    .carousel-item.active {
        transform: none;
    }
}
    .selo-novo{
    position:absolute;
    top:10px;
    left:10px;
    background:var(--cor-primaria);
    color:white;
    font-size:12px;
    font-weight:bold;
    padding:4px 8px;
    border-radius:4px;
    z-index:2;
    }