/* ==========================================
   PÁGINA DE AVALIAÇÕES RECENTES
   Estilos para a seção que exibe as últimas
   avaliações dos clientes
   ========================================== */

    .avaliacoes-recentes-container {
        margin-top: 40px;
        margin-bottom: 40px;
        background: #f9f9f9;
        padding: 20px 0;
    }

    .avaliacoes-wrapper {
        padding: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .avaliacoes-scroll-row {
        display: flex;
        flex-wrap: nowrap;
        margin-left: -6px;
        margin-right: -6px;
    }

    .avaliacao-col {
        flex: 0 0 280px;
        max-width: 280px;
        padding: 0 6px;
    }

    .avaliacao-card {
        background: white;
        border-radius: 8px;
        padding: 10px 10px;
        margin-bottom: 10px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
        height: 220px;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }

    .avaliacao-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .avaliacao-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .avaliacao-estrelas {
        color: #ffc107;
        font-size: 16px;
    }

    .avaliacao-data {
        color: #999;
        font-size: 12px;
    }

    .avaliacao-texto {
        flex: 1;
        margin-bottom: 15px;
    }

    .avaliacao-texto p {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        font-style: italic;
        margin: 0;
    }

    .avaliacao-footer {
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .avaliacao-cliente {
        margin-bottom: 10px;
        color: #333;
        font-weight: 600;
    }

    .avaliacao-cliente i {
        margin-right: 5px;
        color: var(--cor-tema);
    }

    .avaliacao-produto {
        display: flex;
        align-items: center;
        font-size: 12px;
    }

    .avaliacao-produto a {
        display: flex;
        align-items: center;
        color: #666;
        text-decoration: none;
    }

    .avaliacao-produto a:hover {
        color: var(--cor-tema);
    }

    .avaliacao-produto img {
        width: 30px;
        height: 30px;
        object-fit: cover;
        border-radius: 4px;
        margin-right: 8px;
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .avaliacao-card {
            height: auto;
            min-height: 260px;
        }

        .avaliacoes-wrapper {
            padding: 10px;
        }
    }

/* ==========================================
   PÁGINA SOBRE NÓS
   Estilos para a página institucional que
   apresenta a empresa
   ========================================== */

.pagina-intro {
    margin-bottom: 60px;
}

.pagina-titulo {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.pagina-subtitulo {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.pagina-divisor {
    position: relative;
    margin-top: 30px;
}

.pagina-divisor span {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: var(--cor-tema);
    position: relative;
}

.pagina-divisor span::before,
.pagina-divisor span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: var(--cor-tema);
    top: 0;
}

.pagina-divisor span::before {
    right: 90px;
}

.pagina-divisor span::after {
    left: 90px;
}

/* Container principal */
.sobrenos-principal-container {
    margin-top: 40px;
}

/* Cards */
.pagina-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
}

.texto-sobre {
    padding: 40px;
}

/* Header do sobre */
.sobre-header {
    margin-bottom: 30px;
}

.sobre-badge {
    display: inline-block;
    background: var(--cor-tema);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.pagina-secao-titulo {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

/* Conteúdo */
.sobre-conteudo {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.sobre-conteudo p {
    margin-bottom: 20px;
}

/* Estatísticas */
.sobre-stats {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 0 10px;
}

.stat-numero {
    font-size: 36px;
    font-weight: 700;
    color: var(--cor-tema);
    margin-bottom: 5px;
}

.stat-texto {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Galeria */
.galeria-sobre {
    padding: 20px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.galeria-item.grande {
    grid-column: span 2;
    height: 250px;
}

.galeria-item:not(.grande) {
    height: 150px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-overlay i {
    font-size: 24px;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

/* Animações */
[data-animate] {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

[data-animate="fadeInUp"] {
    animation-name: fadeInUp;
}

[data-animate="fadeInLeft"] {
    animation-name: fadeInLeft;
}

[data-animate="fadeInRight"] {
    animation-name: fadeInRight;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsividade */
@media (max-width: 991px) {
    .pagina-titulo {
        font-size: 36px;
    }
    
    .texto-sobre {
        padding: 30px;
    }
    
    .stat-numero {
        font-size: 30px;
    }
    
    .galeria-item.grande {
        height: 200px;
    }
    
    .galeria-item:not(.grande) {
        height: 120px;
    }
}

@media (max-width: 767px) {
    .sobrenos-principal-container .col-md-6:first-child {
        margin-bottom: 30px;
    }
    
    .pagina-titulo {
        font-size: 30px;
    }
    
    .pagina-subtitulo {
        font-size: 16px;
    }
    
    .texto-sobre {
        padding: 25px;
    }
    
    .galeria-grid {
        gap: 10px;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
}

/* Opcional: Lightbox simples para as imagens */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* ==========================================
   SEÇÃO DE DIFERENCIAIS
   Estilos para destacar os pontos fortes
   e diferenciais da empresa
   ========================================== */

/* Seção de Diferenciais */
.servicos-diferenciais {
    background: #f8f9fa;
    padding: 60px 0;
    position: relative;
}

/* Cards de Serviço */
.servico-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 200px;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Ícones */
.servico-icon {
    font-size: 36px;
    color: var(--cor-tema);
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.servico-card:hover .servico-icon {
    transform: scale(1.1);
}

/* Títulos e Textos */
.servico-card h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.servico-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Animações de entrada */
[data-animate] {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

[data-animate="fadeInLeft"] {
    animation-name: fadeInLeft;
}

[data-animate="fadeInRight"] {
    animation-name: fadeInRight;
}

[data-animate="fadeInUp"] {
    animation-name: fadeInUp;
}

[data-delay="200"] {
    animation-delay: 0.2s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsividade */
@media (max-width: 991px) {
    .servicos-diferenciais {
        padding: 50px 0;
    }
    
    .servico-card {
        padding: 20px 15px;
        min-height: 180px;
    }
}

@media (max-width: 767px) {
    .servico-card {
        margin-bottom: 20px;
        min-height: auto;
    }
    
    .servico-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .servico-card h3 {
        font-size: 16px;
    }
    
    .servico-card p {
        font-size: 13px;
    }
}

/* Efeito sutil de borda colorida no hover */
.servico-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cor-tema);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.servico-card:hover::after {
    transform: scaleX(1);
}

/* ==========================================
   SEÇÃO DE ASSISTÊNCIA TÉCNICA
   Estilos para a área que apresenta os
   serviços técnicos oferecidos
   ========================================== */

/* Seção de Assistência Técnica */
.assistencia-tecnica-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 40px 0;
}

.assistencia-tecnica-section .section-header {
    margin-bottom: 50px;
}

.assistencia-tecnica-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.assistencia-tecnica-section .section-title i {
    color: var(--cor-tema);
    margin-right: 10px;
}

.assistencia-tecnica-section .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Serviços */
.assistencia-tecnica-section .servicos-grid {
    margin-bottom: 50px;
}

.assistencia-tecnica-section .servico-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.assistencia-tecnica-section .servico-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cor-tema);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.assistencia-tecnica-section .servico-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assistencia-tecnica-section .servico-box:hover::before {
    transform: scaleX(1);
}

/* Ícone do Serviço */
.assistencia-tecnica-section .servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cor-tema), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.assistencia-tecnica-section .servico-icon i {
    font-size: 36px;
    color: white;
}

.assistencia-tecnica-section .servico-box:hover .servico-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Título do Serviço */
.assistencia-tecnica-section .servico-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Lista de Serviços */
.assistencia-tecnica-section .servico-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.assistencia-tecnica-section .servico-lista li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.assistencia-tecnica-section .servico-lista li i {
    color: var(--cor-tema);
    margin-right: 10px;
    font-size: 12px;
}

/* Botão Saiba Mais */
.assistencia-tecnica-section .btn-servico {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    background: var(--cor-tema);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.assistencia-tecnica-section .btn-servico:hover {
    background: #333;
    color: white;
    text-decoration: none;
}

/* Call to Action */
.assistencia-tecnica-section .servicos-cta {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.assistencia-tecnica-section .servicos-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.assistencia-tecnica-section .servicos-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.assistencia-tecnica-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.assistencia-tecnica-section .cta-buttons .btn-cta {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.assistencia-tecnica-section .btn-whatsapp {
    background: #25D366;
    color: white;
}

.assistencia-tecnica-section .btn-whatsapp:hover {
    background: #1EBE57;
    color: white !important;
    text-decoration: none;
}

.assistencia-tecnica-section .btn-contato {
    background: var(--cor-tema);
    color: white;
}

.assistencia-tecnica-section .btn-contato:hover {
    background: #333;
    color: white;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .assistencia-tecnica-section {
        padding: 40px 0;
    }

    .assistencia-tecnica-section .section-title {
        font-size: 26px;
    }

    .assistencia-tecnica-section .servico-box {
        padding: 25px;
    }

    .assistencia-tecnica-section .servico-icon {
        width: 70px;
        height: 70px;
    }

    .assistencia-tecnica-section .servico-icon i {
        font-size: 30px;
    }

    .assistencia-tecnica-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .assistencia-tecnica-section .cta-buttons .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.assistencia-tecnica-section .servico-box {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.assistencia-tecnica-section .servico-box:nth-child(1) { animation-delay: 0.1s; }
.assistencia-tecnica-section .servico-box:nth-child(2) { animation-delay: 0.2s; }
.assistencia-tecnica-section .servico-box:nth-child(3) { animation-delay: 0.3s; }
.assistencia-tecnica-section .servico-box:nth-child(4) { animation-delay: 0.4s; }
.assistencia-tecnica-section .servico-box:nth-child(5) { animation-delay: 0.5s; }
.assistencia-tecnica-section .servico-box:nth-child(6) { animation-delay: 0.6s; }

/* ==========================================
   PÁGINA NOSSOS SERVIÇOS
   Estilos para a página que lista todos
   os serviços disponíveis
   ========================================== */

/* Reset básico */
.servicos-main {
    padding: 60px 0;
}

/* Seção hero com título principal */
.servicos-hero {
    padding: 120px 0 80px;
    margin-top: -20px;
    position: relative;
    overflow: hidden;
}

/* Adicionando overlay escuro */
.servicos-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Aumentei a opacidade de 0.5 para 0.7 */
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* Breadcrumb Minimal */
.breadcrumb-minimal {
    padding: 10px 0;
    margin-bottom: 40px;
    list-style: none;
    display: flex;
    gap: 10px;
}

.breadcrumb-minimal li {
    color: #999;
}

.breadcrumb-minimal li:after {
    content: '/';
    margin-left: 10px;
    color: #ddd;
}

.breadcrumb-minimal li:last-child:after {
    display: none;
}

.breadcrumb-minimal a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-minimal a:hover {
    color: var(--cor-tema);
}

/* Tabs Navigation */
.servicos-tabs {
    margin-bottom: 50px;
}

.servicos-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    border: none;
}

.servicos-nav li a {
    padding: 12px 30px;
    border-radius: 50px;
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.servicos-nav li.active a,
.servicos-nav li a:hover {
    background: var(--cor-tema);
    color: white !important;

}

/* Tab Content */
.servicos-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 50px;
    margin-bottom: 60px;
}

.servico-detail {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servico-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.servico-descricao {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Features */
.servico-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 30px;
}

.feature i {
    color: var(--cor-tema);
    font-size: 18px;
}

/* Actions */
.servico-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-action.primary {
    background: #25D366;
    color: white;
}

.btn-action.primary:hover {
    background: #1EBE57;
    transform: translateY(-2px);
    text-decoration: none;
    color: white !important;
}

.btn-action.secondary {
    background: transparent;
    color: var(--cor-tema);
    border: 2px solid var(--cor-tema);
}

.btn-action.secondary:hover {
    background: var(--cor-tema);
    color: white;
    text-decoration: none;
    color: #ffffff !important;
}

/* Service Image */
.servico-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 15px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--cor-tema);
}

/* Why Choose Us */
.why-choose-us {
    margin-bottom: 60px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.why-choose-us::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.reason-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.reason-card .reason-icon {
    flex-shrink: 0;
    margin-bottom: 25px;
}

.reason-card h3 {
    flex-shrink: 0;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.reason-card p {
    flex-grow: 1;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cor-tema), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.reason-icon i {
    font-size: 36px;
    color: white;
}


/* Melhorias para múltiplos itens */
.why-choose-us .row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.why-choose-us .col-xl-3,
.why-choose-us .col-lg-4,
.why-choose-us .col-md-6,
.why-choose-us .col-sm-12 {
    padding: 0 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

/* CTA Bottom */
.cta-bottom {
    margin: 80px -15px 0;
}

.cta-bg {
    background: linear-gradient(135deg, var(--cor-tema), #333);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg::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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,32L48,64C96,96,192,160,288,170.7C384,181,480,139,576,144C672,149,768,203,864,192C960,181,1056,107,1152,90.7C1248,75,1344,117,1392,138.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--cor-tema);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    text-decoration: none;
    color: var(--cor-tema);
}

/* No Services */
.no-services {
    padding: 60px 0;
    color: #999;
}

.no-services i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

/* Responsividade */
@media (max-width: 768px) {
    .servicos-hero {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .servicos-content {
        padding: 30px 20px;
    }

    .servico-features {
        flex-direction: column;
    }

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

    .btn-action {
        width: 100%;
        justify-content: center;
    }

    .servicos-nav {
        flex-direction: column;
    }

    .servicos-nav li a {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   PÁGINA SOBRE NÓS (DETALHADA)
   Estilos específicos para a página
   institucional completa
   ========================================== */

/* Estilos gerais */
.about-us {
    padding: 40px 0;
}

/* Breadcrumb personalizado */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.breadcrumb li {
    font-size: 14px;
}

.breadcrumb li a {
    color: #666;
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: var(--cor-tema);
}

/* Introdução */
.pagina-intro {
    margin-bottom: 60px;
}

.pagina-titulo {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.pagina-subtitulo {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.pagina-divisor {
    position: relative;
}

.pagina-divisor span {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: var(--cor-tema);
    position: relative;
}

.pagina-divisor span::before,
.pagina-divisor span::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background: var(--cor-tema);
    top: 0;
}

.pagina-divisor span::before {
    right: 70px;
}

.pagina-divisor span::after {
    left: 70px;
}

/* Cards principais */
.pagina-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    height: 100%;
}

.texto-sobre {
    padding-right: 60px;
}

/* Header do sobre */
.sobre-header {
    margin-bottom: 30px;
}

.sobre-badge {
    display: inline-block;
    background: rgba(var(--cor-tema-rgb), 0.1);
    color: var(--cor-tema);
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pagina-secao-titulo {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.sobre-conteudo {
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    font-size: 16px;
}

/* Seção de valores */
.sobrenos-valores {
    margin-top: 40px;
}

.valores-titulo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.valor-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.valor-card:hover {
    background: #fff;
    border-color: var(--cor-tema);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.valor-icon {
    width: 50px;
    height: 50px;
    background: var(--cor-tema);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.valor-icon i {
    font-size: 24px;
    color: white;
}

.valor-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.valor-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Galeria */
.galeria-sobre {
    padding: 30px;
}

.galeria-titulo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.galeria-grid {
    margin-bottom: 30px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
}

.galeria-item.principal {
    height: 300px;
}

.galeria-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.galeria-row .galeria-item {
    height: 120px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

/* Contato rápido */
.contato-rapido {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.contato-rapido h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.contato-item i {
    width: 30px;
    color: var(--cor-tema);
    font-size: 16px;
}

/* Animações */
[data-animate] {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

[data-animate="fadeInUp"] {
    animation-name: fadeInUp;
}

[data-animate="fadeInLeft"] {
    animation-name: fadeInLeft;
}

[data-animate="fadeInRight"] {
    animation-name: fadeInRight;
}

[data-delay="100"] {
    animation-delay: 0.1s;
}

[data-delay="200"] {
    animation-delay: 0.2s;
}

[data-delay="300"] {
    animation-delay: 0.3s;
}

[data-delay="400"] {
    animation-delay: 0.4s;
}

[data-delay="500"] {
    animation-delay: 0.5s;
}

[data-delay="600"] {
    animation-delay: 0.6s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 991px) {
    .texto-sobre {
        padding-right: 40px;
    }

    .pagina-titulo {
        font-size: 36px;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .galeria-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .sobrenos-principal-container .col-md-7 {
        margin-bottom: 30px;
    }

    .pagina-card {
        padding: 25px;
    }

    .texto-sobre {
        padding-right: 0;
    }

    .pagina-titulo {
        font-size: 30px;
    }

    .galeria-item.principal {
        height: 200px;
    }

    .galeria-row .galeria-item {
        height: 100px;
    }
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}







/* CSS para os Produtos Recentes - INDEX ========================================*/
.module.product-simple .product-layout {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
}

.module.product-simple .product-layout:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-color: var(--cor-tema);
}

/* Animação de entrada */
.module.product-simple .product-layout {
    animation: fadeInScale 0.5s ease forwards;
    opacity: 0;
}

.module.product-simple .product-layout:nth-child(1) { animation-delay: 0.1s; }
.module.product-simple .product-layout:nth-child(2) { animation-delay: 0.2s; }
.module.product-simple .product-layout:nth-child(3) { animation-delay: 0.3s; }
.module.product-simple .product-layout:nth-child(4) { animation-delay: 0.4s; }
.module.product-simple .product-layout:nth-child(5) { animation-delay: 0.5s; }
.module.product-simple .product-layout:nth-child(6) { animation-delay: 0.6s; }
.module.product-simple .product-layout:nth-child(7) { animation-delay: 0.7s; }
.module.product-simple .product-layout:nth-child(8) { animation-delay: 0.8s; }
.module.product-simple .product-layout:nth-child(9) { animation-delay: 0.9s; }
.module.product-simple .product-layout:nth-child(10) { animation-delay: 1s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Melhorar a imagem */
.module.product-simple .item-img-info {
    overflow: hidden;
    border-radius: 6px;
}

.module.product-simple .item-img-info img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module.product-simple .product-layout:hover .item-img-info img {
    transform: scale(1.1);
}

/* Título com hover */
.module.product-simple .item-title a {
    transition: color 0.3s ease;
    text-decoration: none;
}

.module.product-simple .product-layout:hover .item-title a {
    color: var(--cor-tema);
}



/* Destaque no título da seção */
.module.product-simple .modtitle {
    position: relative;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: var(--cor-tema);
    border-radius: 5px 5px 0 0;
}

.module.product-simple .modtitle span {
    color: #ffffff !important;
    font-weight: 600;
}

/* Removendo a linha de baixo */
.module.product-simple .modtitle:after {
    display: none;
}





/* IMAGEM BANNER WEB */
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .swiper-slide img {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-slide:hover img {
    transform: scale(1.08) rotate(1deg);
  }

  .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.3) 50%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s;
  }

  .swiper-slide:hover::before {
    left: 150%;
  }

  .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 0 rgba(255,255,255,0.2);
    transition: all 0.4s ease;
  }

  .swiper-slide:hover::after {
    box-shadow: inset 0 0 50px 0 rgba(255,255,255,0.2);
  }

  .swiper-button-next,
  .swiper-button-prev {
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: scale(0.8);
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1);
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
    color: white;
  }





        /* CABEÇARIO */

.main-menu ul.megamenu > li > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cor-tema);
    transition: all 0.3s ease;
}

.main-menu ul.megamenu > li > a:hover:after {
    width: 80%;
    left: 10%;
}



/* SOBRE NOS / SERVIÇOS */

/* Estilos padrão para múltiplas páginas */

/* Estilos para a seção de introdução */
.pagina-intro {
    margin-bottom: 40px;
}

.pagina-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pagina-subtitulo {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
}

.pagina-divisor {
    width: 80px;
    height: 3px;
    background: #3498db;
    margin: 15px auto;
    position: relative;
}

.pagina-divisor span {
    display: block;
    width: 40px;
    height: 3px;
    background: #e74c3c;
    position: absolute;
    right: 0;
}

/* Estilos para a seção de título */
.pagina-secao-titulo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.pagina-secao-descricao {
    font-size: 1.1rem;
    color: #666;
}

/* Estilos para cards */
.pagina-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin-bottom: 20px;
}

.pagina-card-titulo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.pagina-card-texto {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Estilos para links */
.pagina-link {
    color: #3498db;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagina-link:hover {
    color: #2c3e50;
    text-decoration: none;
}

/* Estilos para botões padrão */
.pagina-botao {
    display: inline-block;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
    cursor: pointer;
}

.pagina-botao:hover, 
.pagina-botao:focus {
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.pagina-botao i {
    margin-right: 8px;
}

/* Estilos para botão WhatsApp */
.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* Animação de pulse para o botão */
.pulse {
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
    }
    
    50% {
        transform: scale(1.05);
    }
    
    100% {
        transform: scale(1);
    }
}

/* Estilos para listas com ícones */
.pagina-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagina-lista li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: #555;
}

.pagina-lista-icon {
    color: #3498db;
    margin-right: 10px;
    font-size: 18px;
}

/* Estilos do accordion para a página de serviços */
.servicos-accordion {
    margin-top: 20px;
}

.servicos-panel {
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.servicos-panel-cabecalho {
    background-color: #f8f9fa;
    padding: 0;
    border: none;
}

.servicos-toggle {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    position: relative;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.servicos-toggle:hover {
    background-color: #f1f1f1;
    color: #3498db;
    text-decoration: none;
}

.servicos-toggle:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    color: #3498db;
}

.servicos-toggle:not(.collapsed):after {
    transform: translateY(-50%) rotate(180deg);
}

.servicos-panel-conteudo {
    padding: 20px;
    background-color: #fff;
}

.servicos-descricao {
    color: #666;
    line-height: 1.6;
}

.servicos-vazio {
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Estilos para a página Sobre Nós - fotos */
.sobrenos-foto-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.sobrenos-img-principal {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.sobrenos-foto-wrapper:hover .sobrenos-img-principal {
    transform: scale(1.05);
}

.sobrenos-foto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(52, 152, 219, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

.sobrenos-foto-descricao {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    font-style: italic;
    margin-bottom: 25px;
}

.sobrenos-galeria {
    margin-top: 20px;
}

.sobrenos-foto-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sobrenos-foto-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.sobrenos-foto-item:hover img {
    transform: scale(1.05);
}

.sobrenos-valor-item {
    margin-bottom: 25px;
}

.sobrenos-valor-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 10px 0;
}

.sobrenos-valor-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Estilos para a página de Termos de Uso */
.termos-navegacao {
    margin-bottom: 30px;
}

.termos-indice {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.termos-indice li {
    flex: 0 0 50%;
    margin-bottom: 10px;
}

.termos-indice-link {
    display: inline-block;
    padding: 5px 0;
}

.termos-indice-link:hover {
    transform: translateX(5px);
}

.termos-secao {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.termos-secao:target {
    box-shadow: 0 5px 25px rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

.termos-texto {
    color: #666;
    line-height: 1.7;
}

.termos-texto p {
    margin-bottom: 15px;
}

.termos-lista li {
    padding-left: 5px;
}

.termos-contato-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.termos-contato-info p {
    margin-bottom: 8px;
}

.termos-atualizacao {
    font-style: italic;
    color: #999;
    margin-top: 30px;
    text-align: right;
}

.termos-botao-container {
    margin: 40px 0;
}

/* Responsividade */
@media (max-width: 767px) {
    .pagina-titulo {
        font-size: 2rem;
    }
    
    .pagina-card {
        margin-top: 20px;
    }
    
    .termos-indice li {
        flex: 0 0 100%;
    }
    
    .sobrenos-galeria .col-xs-6 {
        padding: 0 5px;
    }
}

 /* Tamanho personalizado para o botão WhatsApp desta página */
        .whatsapp-btn {
            font-size: 1.7rem;
        }



/* Estilos específicos para a página de FAQ - Adicione ao seu CSS padrão */

/* Categorias de FAQ */
.faq-categorias {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-categoria-link {
    display: inline-block;
    margin: 0 15px;
    padding: 8px 5px;
    font-weight: 600;
    position: relative;
    font-size: 1.1rem;
}

.faq-categoria-link:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.faq-categoria-link.active:after {
    width: 100%;
}

/* Cartão de FAQ */
.faq-card {
    border-radius: 8px;
}

/* Lista de perguntas */
.faq-lista {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo da pergunta */
.faq-pergunta {
    background-color: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-pergunta:hover {
    background-color: #f1f1f1;
}

.faq-pergunta.active {
    background-color: #e8f4fc;
}

.faq-icon {
    color: #3498db;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-pergunta h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    flex-grow: 1;
}

.faq-seta {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-pergunta.active .faq-seta {
    transform: translateY(-50%) rotate(180deg);
}

/* Estilo da resposta */
.faq-resposta {
    background-color: #fff;
    padding: 0;
    overflow: hidden;
}

.faq-resposta.in {
    padding: 20px;
}

.faq-resposta p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-resposta ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-resposta ul li {
    margin-bottom: 8px;
    color: #666;
}

.faq-resposta a {
    color: #3498db;
    font-weight: 500;
}

/* Seção de contato rápido */
.faq-contato {
    margin: 40px 0 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-contato p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Responsividade */
@media (max-width: 767px) {
    .faq-categoria-link {
        margin: 0 8px;
        font-size: 0.95rem;
    }
    
    .faq-pergunta h3 {
        font-size: 15px;
    }
    
    .faq-pergunta {
        padding: 12px 15px;
    }
    
    .faq-icon {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .faq-seta {
        right: 15px;
    }
}



/* LISTAR PRODUTOS */

/* Estilo para os cards de produtos recentes */
.module.product-simple .product-layout {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efeito de hover nos cards */
.module.product-simple .product-layout:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    border-color: var(--cor-tema);
}

/* Efeito shine no hover (brilho que passa pelo card) */
.module.product-simple .product-layout:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
}

.module.product-simple .product-layout:hover:after {
    opacity: 1;
    left: 130%;
    transition: all 0.7s ease-in-out;
}

/* Animação de entrada */
.module.product-simple .product-layout {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay em cascata para cada item */
.module.product-simple .product-layout:nth-child(1) { animation-delay: 0.1s; }
.module.product-simple .product-layout:nth-child(2) { animation-delay: 0.2s; }
.module.product-simple .product-layout:nth-child(3) { animation-delay: 0.3s; }
.module.product-simple .product-layout:nth-child(4) { animation-delay: 0.4s; }
.module.product-simple .product-layout:nth-child(5) { animation-delay: 0.5s; }

/* Melhorias na imagem do produto */
.module.product-simple .item-img-info {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.module.product-simple .item-img-info img {
    transition: transform 0.4s ease;
    object-fit: cover;
}

.module.product-simple .product-layout:hover .item-img-info img {
    transform: scale(1.12);
}

/* Melhorias no título do produto */
.module.product-simple .item-title {
    margin: 10px 0 8px;
}

.module.product-simple .item-title a {
    color: #444;
    font-weight: 600;
    transition: color 0.3s ease;
}

.module.product-simple .product-layout:hover .item-title a {
    color: var(--cor-tema);
}

/* Estrelas de avaliação */
.module.product-simple .rating {
    margin-bottom: 8px;
}

.module.product-simple .rating .fa-star {
    color: #ffc107;
}

.module.product-simple .rating .fa-star-o {
    color: #ddd;
}

/* Preços */
.module.product-simple .content_price {
    display: flex;
    align-items: baseline;
}

.module.product-simple .price-new {
    color: var(--cor-tema);
    font-weight: 700;
    font-size: 16px;
}

.module.product-simple .price-old {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
    font-size: 13px;
}

/* Título da seção */
.module.product-simple .modtitle {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.module.product-simple .modtitle span {
    font-weight: 700;
    color: #333;
    position: relative;
    z-index: 2;
}

.module.product-simple .modtitle:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--cor-tema);
}

/* Badge para produtos em promoção */
.module.product-simple .produto-promo:before {
    content: 'OFERTA';
    position: absolute;
    top: 10px;
    right: -30px;
    transform: rotate(45deg);
    background: var(--cor-tema);
    color: white;
    padding: 5px 30px;
    font-size: 11px;
    font-weight: bold;
    z-index: 1;
}

/* Estilo também para os cards de produtos mais vendidos */
.product-item-container {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.product-item-container:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    transform: translateY(-8px);
    border-color: var(--cor-tema);
}

/* Efeito shine nos cards de produtos vendidos */
.product-item-container:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
}

.product-item-container:hover:after {
    opacity: 1;
    left: 130%;
    transition: all 0.7s ease-in-out;
}

/* Imagem do produto na lista principal */
.product-item-container .img-1,
.product-item-container .img-2 {
    transition: transform 0.4s ease;
}

.product-item-container:hover .img-1,
.product-item-container:hover .img-2 {
    transform: scale(1.12);
}

/* Botões de adicionar ao carrinho */
.product-item-container .addToCart {
    background: var(--cor-tema);
    border-color: var(--cor-tema);
    transition: all 0.3s ease;
}

.product-item-container .addToCart:hover {
    background: #333;
    border-color: #333;
}

/* Animação de entrada para os cards de produtos vendidos */
@keyframes fadeInStaggered {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-layout.col-lg-15 {
    animation: fadeInStaggered 0.6s ease-out forwards;
    opacity: 0;
}

/* Aplicar delay em cascata para cada item */
.products-list .product-layout:nth-child(1) { animation-delay: 0.05s; }
.products-list .product-layout:nth-child(2) { animation-delay: 0.1s; }
.products-list .product-layout:nth-child(3) { animation-delay: 0.15s; }
.products-list .product-layout:nth-child(4) { animation-delay: 0.2s; }
.products-list .product-layout:nth-child(5) { animation-delay: 0.25s; }
.products-list .product-layout:nth-child(6) { animation-delay: 0.3s; }
.products-list .product-layout:nth-child(7) { animation-delay: 0.35s; }
.products-list .product-layout:nth-child(8) { animation-delay: 0.4s; }
.products-list .product-layout:nth-child(9) { animation-delay: 0.45s; }
.products-list .product-layout:nth-child(10) { animation-delay: 0.5s; }



/* RODAPE */

  /* ----- WhatsApp Flutuante Modernizado ----- */
    /* WhatsApp Flutuante */
    .whatsapp-flutuante {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 1000;
    }

    .whatsapp-btn {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: white;
        padding: 12px 20px;
        border-radius: 30px;
        text-decoration: none;
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .whatsapp-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        color: white !important;
        text-decoration: none;
    }

    .whatsapp-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
    }

    .whatsapp-btn i {
        font-size: 26px;
    }

    .whatsapp-texto {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    /* Efeito de pulso refinado */
    @keyframes pulso {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }
        50% {
            opacity: 0;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    .whatsapp-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #25D366;
        border-radius: 30px;
        opacity: 0;
        animation: pulso 2.5s ease-out infinite;
    }

    /* ----- Footer Modernizado ----- */
    .footer-container {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #dee2e6 50%, #ced4da 75%, #adb5bd 100%);
        color: #495057;
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08);
    }

    .footer-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #6c757d, #495057, #343a40);
    }

    .footer-middle {
        padding: 60px 0 30px;
        position: relative;
    }

    /* Logo e info de contato */
    .footer-logo {
        display: inline-block;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .footer-logo:hover {
        transform: translateY(-3px);
    }

    .contato-info {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contato-info li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

    .contato-info a {
        color: #495057;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

    .contato-info a:hover {
        color: #212529;
        transform: translateX(5px);
    }

    .contato-info i {
        width: 30px;
        height: 30px;
        background: #e9ecef;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        font-size: 14px;
        color: #6c757d;
        transition: all 0.3s ease;
    }

    .contato-info a:hover i {
        background: #495057;
        color: white;
        transform: scale(1.1);
    }

    /* Títulos e Links */
    .footer-titulo {
        position: relative;
        color: #212529;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }

    .footer-titulo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: #495057;
        transition: width 0.3s ease;
    }

    .footer-box:hover .footer-titulo::after {
        width: 60px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }

    .footer-links a {
        color: #495057;
        text-decoration: none;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: #212529;
        transform: translateX(5px);
    }

    .footer-links a i {
        margin-right: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .footer-links a:hover i {
        color: #495057;
        transform: scale(1.2);
    }

    /* Redes Sociais */
    .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .social-links li {
        margin-bottom: 15px;
    }

    .social-links a {
        display: flex;
        align-items: center;
        color: #495057;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 8px 15px;
        border-radius: 50px;
        background: #e9ecef;
    }

    .social-links a i {
        font-size: 18px;
        margin-right: 12px;
        transition: all 0.3s ease;
    }

    .social-links a span {
        font-weight: 500;
    }

    /* Instagram */
    .instagram-link:hover {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        color: white !important;
    }

    /* WhatsApp */
    .whatsapp-link:hover {
        background: #25D366;
        color: white !important;
    }

    /* Facebook */
    .facebook-link:hover {
        background: #3b5998;
        color: white !important;
    }

    /* YouTube */
    .youtube-link:hover {
        background: #FF0000;
        color: white !important;
    }

    /* Pagamentos */
    .pagamentos-row {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pagamentos-container {
        background: white;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .pagamentos-titulo {
        font-size: 16px;
        color: #333;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .pagamentos-img {
        max-width: 320px;
        transition: transform 0.3s ease;
    }

    .pagamentos-img:hover {
        transform: scale(1.03);
    }

    /* Footer Bottom */
    .footer-bottom {
        background: linear-gradient(135deg, #495057 0%, #343a40 100%);
        padding: 15px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 14px;
    }

    .copyright {
        color: #e9ecef;
    }

    .developer {
        text-align: right;
        color: #e9ecef;
    }

    .developer-link {
        color: #adb5bd;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }

    .developer-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: #adb5bd;
        transition: width 0.3s ease;
    }

    .developer-link:hover::after {
        width: 100%;
    }

    .developer-link:hover {
        color: #f8f9fa;
    }

   
    .back-to-top.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: #495057;
        color: white;
        box-shadow: 0 5px 15px rgba(73, 80, 87, 0.4);
        transform: translateY(-5px);
    }

    /* Responsividade */
    @media (max-width: 992px) {
        .footer-middle {
            padding: 40px 0 20px;
        }

        .developer {
            text-align: center;
            margin-top: 10px;
        }

        .copyright {
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .whatsapp-flutuante {
            bottom: 20px;
            right: 20px;
        }

        .whatsapp-texto {
            display: none;
        }

        .whatsapp-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            justify-content: center;
            padding: 0;
        }

       .whatsapp-btn i {
        margin: 0;
        font-size: 30px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-align: center;
    }

        .back-to-top {
            right: 90px;
            bottom: 20px;
        }
    }

    .swal-whatsapp-container {
    z-index: 99999999 !important; /* Maior que o z-index padrão das modais Bootstrap (1050) */
}




.btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2) !important;
    transition: all 0.3s ease;
}

.btn-primary:hover:before {
    left: 100%;
    background: rgba(255,255,255,0.2) !important;
}

.btn-primary:active {
    transform: scale(0.95);
}



.class-btn-primary:hover {
    background: rgba(255,255,255,0.2) !important;
    color: var(--cor-tema);
}




    /* ========== RESET E CONFIGURAÇÕES GLOBAIS ========== */
    * {
        box-sizing: border-box;
    }

    /* ========== GRID DE PRODUTOS ========== */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px 0;
        justify-items: center;
        width: 100%;
    }

    /* ========== CARD DO PRODUTO ========== */
    .product-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 320px;
        max-width: 300px;
        width: 100%;
        animation: fadeInUp 0.6s ease forwards;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    /* ========== IMAGENS ========== */
    .product-image-wrapper {
        position: relative;
        aspect-ratio: 1;
        overflow: hidden;
        background: #f8f9fa;
    }

    .product-link {
        display: block;
        width: 100%;
        height: 100%;
    }

    .product-image,
    .product-image-hover {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: all 0.4s ease;
    }

    .product-image-hover {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transform: scale(1.1);
    }

    .product-card:hover .product-image-hover {
        opacity: 1;
        transform: scale(1.15);
    }

    .product-card:hover .product-image {
        opacity: 0;
    }

    /* ========== BADGE E AÇÕES ========== */
    .product-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: linear-gradient(135deg, #ff4757, #ff3742);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        z-index: 2;
        box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    }

    .product-actions {
        position: absolute;
        top: 12px;
        right: 12px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        z-index: 2;
    }

    .product-card:hover .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .action-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .action-btn:hover {
        background: var(--cor-tema, #ff4757);
        color: white;
        transform: scale(1.1);
        text-decoration: none;
    }

    /* ========== INFORMAÇÕES DO PRODUTO ========== */
    .product-info {
        padding: 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .product-rating {
        display: flex;
        gap: 2px;
        margin-bottom: 4px;
    }

    .product-rating .fa-stack {
        font-size: 12px;
        width: 1em;
        height: 1em;
    }

    .product-rating .fa-star {
        color: #ffc107;
    }

    .product-rating .fa-star-o {
        color: #e0e0e0;
    }

    .product-title {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        color: #333;
        margin-bottom: -8px;
    }



    .product-status {
        font-size: 12px;
        color: #036ffc;
        font-weight: 500;
        letter-spacing: 0.5px;
        margin-bottom: -10px;
    }

    .product-price {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin: 6px 0;
    }

    .current-price {
        font-size: 15px;
        font-weight: 700;
        color: var(--cor-tema, #ff4757);
        line-height: 1.2;
    }

    .old-price {
        font-size: 13px;
        color: #999;
        text-decoration: line-through;
        line-height: 1.2;
    }



    /* ========== ESTADO VAZIO ========== */
    .no-products {
        grid-column: 1 / -1;
        text-align: center;
        padding: 80px 20px;
        color: #666;
    }

    .no-products i {
        font-size: 64px;
        color: #ddd;
        margin-bottom: 24px;
    }

    .no-products p {
        font-size: 18px;
        margin: 0;
    }

    /* ========== PAGINAÇÃO ========== */
    .pagination-container {
        display: flex;
        justify-content: center;
        margin: 40px 0;
    }

    .pagination-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        background: white;
        padding: 12px 20px;
        border-radius: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .pagination-btn {
        min-width: 40px;
        height: 40px;
        border-radius: 20px;
        background: #f8f9fa;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 14px;
        border: 2px solid transparent;
    }

    .pagination-btn:hover,
    .pagination-btn.active {
        background: var(--cor-tema, #ff4757);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    }

    .pagination-btn.active {
        border-color: var(--cor-tema, #ff4757);
    }

    /* ========== RESPONSIVIDADE ========== */
    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 15px;
        }
    }

    @media (max-width: 992px) {
        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
    }

    @media (max-width: 768px) {
        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
            padding: 15px 0;
        }

        .product-card {
            width: 100%;
            height: auto;
            min-height: 280px;
            max-width: none;
        }

        .product-image-wrapper {
            height: 180px;
            flex-shrink: 0;
        }

        .product-info {
            padding: 8px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-title {
            font-size: 12px;
            line-height: 1.2;

        }

        .product-status {
            font-size: 10px;
        }

        .product-price {
            margin: 4px 0;
            gap: 1px;
        }

        .current-price {
            font-size: 13px;
            line-height: 1.1;
        }

        .old-price {
            font-size: 11px;
            line-height: 1.1;
        }


        .pagination-wrapper {
            padding: 8px 16px;
            gap: 6px;
        }

        .pagination-btn {
            min-width: 36px;
            height: 36px;
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
        }

        .product-card {
            min-height: 250px;
        }

        .product-image-wrapper {
            height: 180px;
        }

        .product-info {
            padding: 6px;
        }

        .product-title {
            font-size: 11px;
        }

        .current-price {
            font-size: 12px;
        }

    }

    .product-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .product-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .product-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .product-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .product-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .product-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    /* ========== MELHORIAS DE ACESSIBILIDADE ========== */
    .product-card:focus-within {
        outline: 2px solid var(--cor-tema, #ff4757);
        outline-offset: 2px;
    }

    .action-btn:focus,
    .pagination-btn:focus {
        outline: 2px solid var(--cor-tema, #ff4757);
        outline-offset: 2px;
    }

    /* ========== LOADING STATE ========== */
    .product-image.lazy {
        opacity: 0;
        transition: opacity 0.3s;
    }

    .product-image.lazy.loaded {
        opacity: 1;
    }

    /* ========== DARK MODE SUPPORT ========== */
    @media (prefers-color-scheme: dark) {
        .product-card {
            background: #2a2a2a;
            color: #fff;
        }

        .product-title a {
            color: #fff;
        }

        .no-products {
            color: #ccc;
        }

        .pagination-wrapper {
            background: #2a2a2a;
        }

        .pagination-btn {
            background: #404040;
            color: #fff;
        }
    }

    /* ========== ALINHAMENTO À ESQUERDA PARA POUCOS PRODUTOS ========== */
    /* Classe alternativa para navegadores que não suportam :has() */
    .products-grid.align-left {
        justify-content: flex-start !important;
        justify-items: flex-start !important;
        margin: 0 !important;
    }

    .products-grid.align-left .product-card {
        margin-left: 0 !important;
    }

    /* ========== LAYOUTS ESPECÍFICOS PARA POUCOS PRODUTOS ========== */






    .modal-header {
        border-radius: 5px 5px 0 0;
        color: #fff;
        padding: 15px;
    }
    
    .modal-title {
        font-size: 20px;
        font-weight: 600;
    }
    
    .modal-title i {
        margin-right: 10px;
    }
    
    .mensagem-alerta {
        font-size: 16px;
        line-height: 1.6;
        padding: 15px;
    }
    
    .alert-success {
        background-color: #28a745;
    }
    
    .alert-info {
        background-color: #17a2b8;
    }
    
    .alert-warning {
        background-color: #ffc107;
        color: #000;
    }
    
    .alert-danger {
        background-color: #dc3545;
    }
    
    .mt-3 {
        margin-top: 15px;
    }
    
    .mt-4 {
        margin-top: 20px;
    }
    
    .btn-primary {
        background-color: var(--cor-tema);
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .btn-primary:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        color: #fff !important;
    }
    
    /* ==========================================
       SEÇÃO DE ASSISTÊNCIA TÉCNICA COMPACTA
       Versão otimizada para ocupar menos espaço
       ========================================== */
    .assistencia-tecnica-compact {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 40px 0;
        margin: 30px 0;
        border-radius: 15px;
    }
    
    .assistencia-titulo {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .assistencia-titulo i {
        color: var(--cor-tema);
        font-size: 32px;
    }
    
    .assistencia-descricao {
        font-size: 16px;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .assistencia-servicos {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .servico-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        background: white;
        border-radius: 25px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        font-size: 14px;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .servico-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .servico-item i {
        color: var(--cor-tema);
        font-size: 16px;
    }
    
    .assistencia-cta {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        text-align: center;
        height: 100%;
    }
    
    .assistencia-cta h3 {
        font-size: 22px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }
    
    .assistencia-cta p {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-whatsapp, .btn-servicos {
        padding: 12px 20px;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .btn-whatsapp {
        background: #25D366;
        color: white;
    }
    
    .btn-whatsapp:hover {
        background: #1EBE57;
        color: white !important;
        text-decoration: none;
        transform: translateY(-2px);
    }
    
    .btn-servicos {
        background: var(--cor-tema);
        color: white;
    }
    
    .btn-servicos:hover {
        background: #333;
        color: white !important;
        text-decoration: none;
        transform: translateY(-2px);
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
        .assistencia-tecnica-compact {
            padding: 30px 0;
        }
        
        .assistencia-titulo {
            font-size: 24px;
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
        
        .assistencia-servicos {
            justify-content: center;
        }
        
        .assistencia-cta {
            margin-top: 20px;
        }
    }