/* Reset Minimalista */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1.5;
}

/* Sobrescrever Bootstrap - Remover espaçamentos indesejados */
body > header,
body > section,
header + section,
nav + section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Header Base */
.site-header {
    background-color: #000000;
    width: 100%;
    position: relative;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

/* Barra Superior */
.header-top {
    background-color: #000000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Remover margens do container dentro do header-nav */
.header-nav .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col {
    flex: 1;
    padding: 0 0.5rem;
}

.col-auto {
    flex: 0 0 auto;
    padding: 0 0.5rem;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.header-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Barra de Pesquisa */
.search-bar {
    flex: 1;
    max-width: 600px;
    margin: 0 1rem;
}

.search-form {
    position: relative;
    display: flex;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.5rem 3rem 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #ffffff;
    color: #333;
    font-size: 0.9rem;
}

.search-input::placeholder {
    color: #999;
}

.search-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button i {
    color: #333;
}

/* Ícones da Barra Superior */
.header-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.header-icon-item:hover {
    opacity: 0.8;
}

.header-icon-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}


/* Barra de Navegação Inferior */
.header-nav {
    background-color: #000000;
    padding: 0;
    margin: 0;
    margin-bottom: 0 !important;
}

.header-nav .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
    margin: 0;
}

.nav-link:hover {
    background-color: #D4AF37;
    color: #000000;
}

.nav-link.has-dropdown::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.7rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #D4AF37;
    color: #000000;
}

/* Botão hamburger: oculto no desktop */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    margin: 0 0 0 auto;
    border: none;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    touch-action: manipulation;
}
.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}
.nav-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color 0.2s;
    pointer-events: none; /* clique passa para o botão no mobile */
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s;
}
.nav-toggle-icon::before {
    top: -7px;
}
.nav-toggle-icon::after {
    top: 7px;
}
.header-nav.nav-open .nav-toggle-icon {
    background-color: transparent;
}
.header-nav.nav-open .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.header-nav.nav-open .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
    .search-bar {
        max-width: 400px;
    }

    .header-icons {
        gap: 1rem;
    }

    .nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .header-top .row {
        flex-direction: column;
        gap: 1rem;
    }

    .search-bar {
        max-width: 100%;
        margin: 0;
    }

    .header-icons {
        justify-content: center;
        width: 100%;
    }

    /* Mobile: mostrar botão hamburger e layout do container da nav */
    .header-nav .container-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 100;
    }
    /* Mobile: menu recolhido por padrão; só aparece quando .nav-open */
    .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        order: 99;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0.5rem;
    }
    .header-nav.nav-open .nav-menu {
        display: flex !important;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        width: 100%;
        justify-content: space-between;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .nav-item:hover .dropdown-menu,
    .nav-item.active .dropdown-menu {
        display: block;
    }
}

/* ============================================
   PÁGINA DE PEDIDOS (MODERNA E ELEGANTE)
   ============================================ */

.orders-page {
    margin: 0;
    padding: 0;
}

/* Breadcrumb */
.orders-breadcrumb {
    padding: 1.5rem 0;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Header */
.orders-header {
    padding: 3rem 0 2rem;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.orders-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.2;
}

.orders-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Conteúdo */
.orders-content {
    padding: 3rem 0;
    margin: 0;
    background-color: #ffffff;
}

.orders-category {
    margin-bottom: 4rem;
}

.orders-category:last-child {
    margin-bottom: 0;
}

.category-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 3px solid #D4AF37;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-section-title i {
    color: #D4AF37;
    font-size: 1.5rem;
}

/* Tabela */
.orders-page .table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    font-size: 1rem;
}

.orders-table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
}

.orders-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.orders-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.orders-table tbody tr:hover {
    background-color: #f8f9fa;
}

.orders-table tbody tr:last-child {
    border-bottom: none;
}

.orders-table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
}

/* Coluna de Imagem */
.col-image {
    width: 120px;
}

.product-image-cell {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-table-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.orders-table tbody tr:hover .product-table-image {
    transform: scale(1.1);
}

/* Coluna de Título */
.col-title {
    min-width: 300px;
}

.product-table-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

.product-table-description {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* Coluna de Quantidade */
.col-quantity {
    width: 180px;
}

.quantity-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e9ecef;
    background-color: #ffffff;
    color: #666666;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.quantity-btn:hover {
    border-color: #D4AF37;
    background-color: #D4AF37;
    color: #000000;
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 70px;
    height: 36px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
}

.quantity-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Oculta setas nativas do input number para evitar incremento duplo com o botão + */
.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Coluna de Ações */
.col-actions {
    width: 80px;
    text-align: center;
}

.btn-remove-item {
    width: 36px;
    height: 36px;
    border: 2px solid #e9ecef;
    background-color: #ffffff;
    color: #dc3545;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-remove-item:hover {
    border-color: #dc3545;
    background-color: #dc3545;
    color: #ffffff;
    transform: scale(1.1);
}

.btn-remove-item:active {
    transform: scale(0.95);
}

/* Layout de Duas Colunas para Pedidos */
.orders-layout-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

/* Coluna de Produtos (Esquerda) */
.orders-products-column {
    flex: 1;
    min-width: 0; /* Permite que a coluna encolha */
}

/* Coluna de Resumo (Direita) */
.orders-summary-column {
    flex: 0 0 380px; /* Largura fixa de 380px */
    position: relative;
}

/* Resumo Fixo (Sticky) */
.sticky-summary {
    position: sticky;
    top: 100px; /* Distância do topo quando fixo */
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: box-shadow 0.3s ease;
    max-height: calc(100vh - 120px); /* Altura máxima baseada na viewport */
    overflow-y: auto; /* Scroll interno se necessário */
    z-index: 10; /* Garante que fique acima de outros elementos */
}

.sticky-summary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Scrollbar customizada para o resumo */
.sticky-summary::-webkit-scrollbar {
    width: 6px;
}

.sticky-summary::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sticky-summary::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

.sticky-summary::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* Ações Finais (Mantido para compatibilidade, mas não usado mais) */
.orders-actions {
    padding: 3rem 0 4rem;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
    display: none; /* Oculto pois agora está na lateral */
}

.orders-summary {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.summary-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #D4AF37;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.summary-content {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
}

.summary-value {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
    color: #D4AF37;
}

.summary-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-order-primary {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-order-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-order-primary i {
    font-size: 1.3rem;
}

.btn-order-secondary {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-order-secondary:hover {
    background-color: #dc3545;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.btn-order-secondary i {
    font-size: 1.1rem;
}

/* Responsive Página de Pedidos */
@media (max-width: 991px) {
    .orders-title {
        font-size: 2.5rem;
    }
    
    .category-section-title {
        font-size: 1.5rem;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 1rem 0.75rem;
    }
    
    .col-image {
        width: 100px;
    }
    
    .product-image-cell {
        width: 80px;
        height: 80px;
    }
    
    /* Layout de duas colunas vira uma coluna em tablets */
    .orders-layout-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .orders-summary-column {
        flex: 1;
        width: 100%;
    }
    
    .sticky-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .orders-header {
        padding: 2rem 0 1.5rem;
    }
    
    .orders-title {
        font-size: 2rem;
    }
    
    .orders-content {
        padding: 2rem 0;
    }
    
    .orders-category {
        margin-bottom: 3rem;
    }
    
    .category-section-title {
        font-size: 1.25rem;
    }
    
    /* Mobile: tabela vira cards para tudo caber na tela */
    .orders-page .table-responsive {
        overflow-x: visible;
    }
    
    .orders-table thead {
        display: none;
    }
    
    .orders-table tbody tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 1.25rem;
        padding: 1rem;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .orders-table tbody td {
        display: block;
        padding: 0.75rem 0;
        border: none;
    }
    
    .orders-table tbody td.col-image,
    .orders-table tbody td.col-title {
        width: 100%;
    }
    
    /* Quantidade e Ações na mesma linha: [ − ] [ input ] [ + ] [ Excluir ] */
    .orders-table tbody td.col-quantity,
    .orders-table tbody td.col-actions {
        width: auto;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .orders-table tbody td.col-quantity::before {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
    
    .orders-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #666;
        margin-bottom: 0.5rem;
    }
    
    .orders-table tbody td.col-image::before {
        margin-bottom: 0.35rem;
    }
    
    .orders-table tbody td.col-image {
        text-align: center;
        padding-top: 0.5rem;
    }
    
    .orders-table tbody td.col-title {
        padding-top: 0.5rem;
    }
    
    .orders-table tbody td.col-quantity .quantity-input-group {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    /* Rótulo "Ações" oculto no mobile; botão Excluir fica ao lado do + */
    .orders-table tbody td.col-actions::before {
        display: none;
    }
    
    .orders-table tbody td.col-actions {
        padding-left: 0.5rem;
    }
    
    .orders-table tbody td.col-actions .btn-remove-item {
        min-width: 44px;
        min-height: 44px;
    }
    
    .orders-table {
        font-size: 0.9rem;
    }
    
    .col-image,
    .col-title {
        width: 100%;
    }
    
    .product-image-cell {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .product-table-title {
        font-size: 1rem;
    }
    
    .product-table-description {
        font-size: 0.85rem;
    }
    
    .quantity-input-group {
        gap: 0.5rem;
    }
    
    .quantity-btn,
    .quantity-input {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .quantity-input {
        width: 56px;
        flex-shrink: 0;
    }
    
    /* Layout mobile: uma coluna */
    .orders-layout-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .orders-summary-column {
        flex: 1;
        width: 100%;
        order: -1; /* Resumo aparece primeiro no mobile */
    }
    
    .sticky-summary {
        position: relative;
        top: 0;
        padding: 1.5rem;
    }
    
    .orders-summary {
        padding: 1.5rem;
    }
    
    .summary-actions {
        flex-direction: column;
    }
    
    .btn-order-primary,
    .btn-order-secondary {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .orders-title {
        font-size: 1.75rem;
    }
    
    .orders-description {
        font-size: 1rem;
    }
    
    .orders-page .table-responsive {
        border-radius: 8px;
    }
    
    .orders-table tbody tr {
        padding: 0.875rem;
    }
    
    .orders-table tbody td {
        padding: 0.5rem 0;
    }
    
    .product-table-title {
        font-size: 0.95rem;
    }
    
    .product-table-description {
        display: none;
    }
    
    .quantity-btn,
    .quantity-input {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }
    
    .quantity-input {
        width: 52px;
    }
    
    /* Layout mobile pequeno */
    .orders-layout-wrapper {
        gap: 1rem;
    }
    
    .sticky-summary {
        padding: 1.25rem;
    }
    
    .orders-summary {
        padding: 1.25rem;
    }
    
    .summary-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   CAROUSEL / SLIDER
   ============================================ */

.carousel-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Sobrescrever qualquer margem do Bootstrap em elementos semânticos */
header, section, nav, main, article, aside, footer {
    margin: 0;
    padding: 0;
}

/* Garantir que não haja espaço entre header e slider */
.site-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.site-header + .carousel-section,
.site-header + section.carousel-section,
header.site-header + section.carousel-section,
.header-nav + .carousel-section,
nav.header-nav + section.carousel-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Garantir que o carousel não tenha margem superior */
.carousel-section {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

.carousel {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel-inner::after {
    content: "";
    display: table;
    clear: both;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin: 0;
    margin-right: -100%;
    padding: 0;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

/* Indicadores (Dots) */
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators button {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 12px;
    height: 12px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    border-radius: 50%;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: #000000;
}

.carousel-indicators button:hover {
    opacity: 0.75;
}

/* Controles de Navegação (Setas) */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
    cursor: pointer;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.d-block {
    display: block !important;
}

.d-none {
    display: none !important;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
    .d-md-none {
        display: none !important;
    }
}

.w-100 {
    width: 100% !important;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-item img {
        max-height: 400px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .carousel-indicators {
        margin-bottom: 0.5rem;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   CORREÇÃO FINAL - REMOVER ESPAÇO BRANCO
   ============================================ */
body header.site-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body header.site-header nav.header-nav {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body header.site-header + section.carousel-section,
body header.site-header ~ section.carousel-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Garantir que não haja espaço branco visível */
.site-header,
.header-nav,
.carousel-section,
.carousel {
    border: none !important;
    outline: none !important;
}

/* Remover qualquer espaçamento vertical extra */
.header-nav {
    line-height: 1;
}

/* Garantir que não haja espaço entre elementos */
.site-header::after,
.header-nav::after {
    content: none !important;
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

.carousel-section::before {
    content: none !important;
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

/* Forçar elementos a serem block e remover qualquer espaçamento */
.site-header,
.carousel-section {
    display: block;
    vertical-align: top;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    background-color: #ffffff;
    padding: 3rem 0;
    margin: 0;
    margin-top: 0 !important;
    padding-top: 3rem;
    width: 100%;
}

/* Garantir que não haja espaço entre slider e features */
.carousel-section + .features-section,
section.carousel-section + section.features-section {
    margin-top: 0 !important;
    padding-top: 3rem;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
    align-items: center;
    justify-content: center;
}

.feature-item {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 3rem;
    color: #D4AF37;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1);
    color: #B8941F;
}

.feature-text {
    color: #D4AF37;
    line-height: 1.4;
}

.feature-line-1,
.feature-line-2 {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #D4AF37;
}

.feature-line-1 {
    margin-bottom: 0.25rem;
}

.feature-line-2 {
    margin-top: 0;
}

/* Features Dots - Oculto por padrão (visível apenas mobile) */
.features-dots {
    display: none;
}

/* ============================================
   CARROSSEL FEATURES - APENAS MOBILE (< 576px)
   ============================================ */
@media (max-width: 575.98px) {
    .features-section {
        padding: 1.5rem 0;
    }

    .features-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .features-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        margin: 0;
        padding: 0 16px;
        gap: 20px;
        scrollbar-width: none;
    }

    .features-row::-webkit-scrollbar {
        display: none;
    }

    .features-row > .feature-item.col-12 {
        min-width: 120px !important;
        flex: 0 0 auto !important;
        max-width: 140px !important;
        width: auto !important;
        scroll-snap-align: start;
        margin-bottom: 0;
        padding: 0.5rem 0;
    }

    .feature-icon {
        margin-bottom: 0.5rem;
    }

    .feature-icon i {
        font-size: 2.2rem;
    }

    .feature-line-1,
    .feature-line-2 {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Indicadores (dots) */
    .features-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 0 0;
    }

    .features-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #e0d5b8;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .features-dot.active {
        background-color: #D4AF37;
        transform: scale(1.25);
    }
}

/* Grid Responsivo - Bootstrap Logic */
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-3,
.col-md-4,
.col-md-6,
.col-md-10 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-lg-4,
.col-lg-6,
.col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Spacing Utilities */
.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-md-0 {
    margin-bottom: 0;
}

.text-center {
    text-align: center;
}

/* Breakpoints */
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .feature-item {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    
    .feature-item {
        margin-bottom: 0;
    }
    
    .features-section {
        padding: 3.5rem 0;
    }
    
    .feature-icon i {
        font-size: 3.5rem;
    }
    
    .feature-line-1,
    .feature-line-2 {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    
    .features-section {
        padding: 4rem 0;
    }
    
    .feature-icon i {
        font-size: 4rem;
    }
    
    .feature-line-1,
    .feature-line-2 {
        font-size: 1.15rem;
    }
}

/* ============================================
   CATEGORIES & PRODUCTS SECTION (MODERNA)
   ============================================ */

.categories-products-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin: 0;
    margin-top: 0 !important;
    width: 100%;
}

/* Garantir que não haja espaço entre features e categories-products */
.features-section + .categories-products-section,
section.features-section + section.categories-products-section {
    margin-top: 0 !important;
    padding-top: 4rem;
}

/* Garantir que não haja espaço entre categories-products e transform */
.categories-products-section + .transform-section,
section.categories-products-section + section.transform-section {
    margin-top: 0 !important;
    padding-top: 5rem;
}

/* Barra de Navegação de Categorias */
.categories-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background-color: #2c2c2c;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-tab {
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

/* Painéis de Produtos */
.products-panels {
    position: relative;
    min-height: 400px;
}

.products-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.products-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

/* Cards de Produtos Modernos */
.product-card-modern {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    width: 100%;
    min-height: 350px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.product-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
    border-radius: 16px 16px 0 0;
}

.product-card-modern:hover .product-img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
    border-top: none;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    min-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.product-title a {
    text-align: center;
    display: block;
}

.product-description {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-rating {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #D4AF37;
    font-size: 1rem;
}

.stars i {
    font-size: inherit;
}

.btn-quote {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-quote:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-quote:active {
    transform: translateY(0);
}

.btn-quote i {
    font-size: 1.25rem;
}

.empty-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666666;
    font-size: 1.1rem;
}

/* Responsive Categories & Products */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .categories-nav {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .category-tab {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .categories-products-section {
        padding: 2rem 0;
    }

    .categories-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        gap: 10px;
        padding: 0.5rem 1rem;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        margin-bottom: 1.5rem;
        scrollbar-width: none;
    }

    .categories-nav::-webkit-scrollbar {
        display: none;
    }

    .category-tab {
        width: auto;
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: start;
        padding: 10px 20px;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        border-radius: 50px;
        background-color: #f2f2f2;
        color: #444;
        border: 1.5px solid #e0e0e0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
        transition: all 0.25s ease;
    }

    .category-tab::before {
        display: none;
    }

    .category-tab:hover {
        background-color: #e8e8e8;
        transform: none;
    }

    .category-tab.active {
        background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
        color: #000;
        border-color: #D4AF37;
        box-shadow: 0 3px 10px rgba(212, 175, 55, 0.35);
        font-weight: 700;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }
    
    .product-image-container {
        min-height: 300px;
    }
    
    .product-content {
        padding: 1.25rem;
    }
}

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image-container {
        min-height: 280px;
    }
    
    .product-title {
        font-size: 1rem;
        min-height: auto;
        text-align: center;
    }
    
    .product-title a {
        text-align: center;
        display: block;
    }
    
    .btn-quote {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   TRANSFORM SECTION (MODERNA E ELEGANTE)
   ============================================ */

.transform-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.transform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Header da Seção */
.transform-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transform-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 1.5rem 2.5rem;
    display: inline-block;
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    line-height: 1.3;
}

.transform-title:hover {
    border-color: #D4AF37;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.transform-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    padding: 0 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Conteúdo em Duas Colunas */
.transform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Coluna da Imagem */
.transform-image-col {
    position: relative;
}

.transform-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #f5f5f5;
}

.transform-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.transform-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
    min-height: 500px;
}

.transform-image-wrapper:hover .transform-image {
    transform: scale(1.05);
}

/* Coluna de Features */
.transform-features-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.transform-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.transform-feature-item:hover {
    padding-left: 1rem;
}

.transform-feature-icon {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.transform-feature-item:hover .transform-feature-icon {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.transform-feature-icon i {
    font-size: 1.75rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.transform-feature-item:hover .transform-feature-icon i {
    transform: scale(1.1);
}

.transform-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transform-feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.transform-feature-item:hover .transform-feature-title {
    color: #D4AF37;
}

.transform-feature-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.transform-feature-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 0.5rem 0;
}

/* Responsive Transform Section */
@media (max-width: 991px) {
    .transform-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .transform-image-col {
        order: 1;
    }
    
    .transform-features-col {
        order: 2;
    }
    
    .transform-title {
        font-size: 2rem;
        padding: 1.25rem 2rem;
    }
    
    .transform-description {
        font-size: 1rem;
    }
    
    .transform-image {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .transform-section {
        padding: 3.5rem 0;
    }
    
    .transform-header {
        margin-bottom: 3rem;
    }
    
    .transform-title {
        font-size: 1.75rem;
        padding: 1rem 1.5rem;
        border-radius: 30px;
    }
    
    .transform-description {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .transform-content {
        gap: 2.5rem;
    }
    
    .transform-feature-item {
        padding: 1.5rem 0;
        gap: 1.25rem;
    }
    
    .transform-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .transform-feature-icon i {
        font-size: 1.5rem;
    }
    
    .transform-feature-title {
        font-size: 1.2rem;
    }
    
    .transform-feature-text {
        font-size: 0.95rem;
    }
    
    .transform-image {
        min-height: 350px;
    }
}

@media (max-width: 575px) {
    .transform-section {
        padding: 3rem 0;
    }
    
    .transform-title {
        font-size: 1.5rem;
        padding: 0.875rem 1.25rem;
        line-height: 1.4;
    }
    
    .transform-description {
        font-size: 0.9rem;
    }
    
    .transform-feature-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 0;
        gap: 1rem;
    }
    
    .transform-feature-item:hover {
        padding-left: 0;
    }
    
    .transform-feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .transform-feature-icon i {
        font-size: 1.35rem;
    }
    
    .transform-feature-title {
        font-size: 1.1rem;
    }
    
    .transform-feature-text {
        font-size: 0.9rem;
    }
    
    .transform-image {
        min-height: 300px;
    }
}

/* ============================================
   BLOG SECTION (MODERNA E ELEGANTE)
   ============================================ */

.blog-section {
    background-color: #ffffff;
    padding: 5rem 0;
    margin: 0;
    width: 100%;
    position: relative;
}

/* Garantir que não haja espaço entre transform e blog */
.transform-section + .blog-section,
section.transform-section + section.blog-section {
    margin-top: 0 !important;
    padding-top: 5rem;
}

/* Header do Blog */
.blog-header {
    margin-bottom: 4rem;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Grid de Posts */
.blog-posts {
    margin-bottom: 3rem;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-image-container {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.blog-category span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #999999;
}

.blog-date i,
.blog-author i {
    font-size: 0.9rem;
    color: #D4AF37;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-post-title {
    color: #D4AF37;
}

.blog-excerpt {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    padding: 0;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card:hover .blog-read-more {
    color: #B8941F;
    transform: translateX(5px);
}

.blog-read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(3px);
}

/* Footer do Blog */
.blog-footer {
    margin-top: 2rem;
}

.btn-blog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-blog:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-blog i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-blog:hover i {
    transform: translateX(5px);
}

/* Responsive Blog Section */
@media (max-width: 991px) {
    .blog-section {
        padding: 4rem 0;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1.05rem;
    }
    
    .blog-header {
        margin-bottom: 3rem;
    }
    
    .blog-post-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 3.5rem 0;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .blog-header {
        margin-bottom: 2.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-post-title {
        font-size: 1.25rem;
    }
    
    .blog-excerpt {
        font-size: 0.95rem;
    }
    
    .blog-image-container {
        min-height: 220px;
    }
    
    .btn-blog {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-title {
        font-size: 1.75rem;
    }
    
    .blog-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-post-title {
        font-size: 1.15rem;
    }
    
    .blog-image-container {
        min-height: 200px;
    }
}

/* ============================================
   PÁGINA INTERNA DO BLOG (MODERNA E ELEGANTE)
   ============================================ */

.blog-internal-page {
    margin: 0;
    padding: 0;
}

/* Breadcrumb do Blog */
.blog-breadcrumb {
    padding: 1.5rem 0;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Hero do Post */
.blog-hero {
    padding: 3rem 0 2rem;
    margin: 0;
    background-color: #ffffff;
}

.blog-hero-content {
    text-align: center;
}

.blog-category-badge {
    margin-bottom: 1.5rem;
}

.blog-category-badge span {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.2;
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #666666;
}

.meta-item i {
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Imagem Destacada */
.blog-featured-image {
    padding: 0 0 3rem;
    margin: 0;
    background-color: #ffffff;
}

.featured-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    object-fit: cover;
}

/* Conteúdo do Post */
.blog-content-section {
    padding: 3rem 0;
    margin: 0;
    background-color: #f8f9fa;
}

.blog-post-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.post-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.intro-text {
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.post-body {
    margin-bottom: 2.5rem;
}

.post-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1.5rem 0;
    padding: 0;
    line-height: 1.3;
}

.post-body h2:first-of-type {
    margin-top: 0;
}

.post-body p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.9;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.post-conclusion {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e9ecef;
}

.post-conclusion h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.post-conclusion p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.9;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

/* Footer do Post */
.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tags-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tags-label i {
    color: #D4AF37;
}

.tag-link {
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    color: #666666;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    transform: translateY(-2px);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.share-btn.facebook {
    background-color: #1877F2;
    color: #ffffff;
}

.share-btn.twitter {
    background-color: #1DA1F2;
    color: #ffffff;
}

.share-btn.whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.share-btn.linkedin {
    background-color: #0077B5;
    color: #ffffff;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar do Blog */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.widget-title i {
    color: #D4AF37;
    font-size: 1.3rem;
}

.widget-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

/* Posts Relacionados na Sidebar */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.related-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    transform: translateX(5px);
}

.related-post-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-link:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-post-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-post-link:hover .related-post-title {
    color: #D4AF37;
}

.related-post-date {
    font-size: 0.85rem;
    color: #999999;
}

/* Lista de Categorias */
.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background-color: #f8f9fa;
    color: #666666;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    transform: translateX(5px);
}

.category-link i {
    color: #D4AF37;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(3px);
    color: #000000;
}

.category-count {
    font-size: 0.85rem;
    color: #999999;
    font-weight: 500;
}

.category-link:hover .category-count {
    color: #000000;
}

/* CTA Sidebar */
.sidebar-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
}

.btn-sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-sidebar-cta:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Seção de Posts Relacionados */
.blog-related-section {
    padding: 4rem 0;
    margin: 0;
    background-color: #ffffff;
}

.related-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 3rem 0;
    padding: 0;
    text-align: center;
}

/* Responsive Blog Interna */
@media (max-width: 991px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-post-content {
        padding: 2rem;
    }
    
    .post-body h2,
    .post-conclusion h2 {
        font-size: 1.75rem;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-meta {
        gap: 1.5rem;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .blog-content-section {
        padding: 2rem 0;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.15rem;
    }
    
    .post-body h2,
    .post-conclusion h2 {
        font-size: 1.5rem;
    }
    
    .post-body p,
    .post-conclusion p {
        font-size: 1rem;
    }
    
    .blog-sidebar {
        margin-top: 2rem;
    }
    
    .related-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .blog-breadcrumb {
        padding: 1rem 0;
    }
    
    .blog-hero-title {
        font-size: 1.75rem;
    }
    
    .blog-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .featured-image {
        min-height: 250px;
    }
    
    .blog-post-content {
        padding: 1.25rem;
    }
    
    .intro-text {
        font-size: 1.05rem;
    }
    
    .post-body h2,
    .post-conclusion h2 {
        font-size: 1.35rem;
    }
    
    .post-tags {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-share {
        flex-wrap: wrap;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

/* ============================================
   PÁGINA PRINCIPAL DO BLOG (MODERNA E ELEGANTE)
   ============================================ */

.blog-page {
    margin: 0;
    padding: 0;
}

/* Breadcrumb do Blog */
.blog-breadcrumb {
    padding: 1.5rem 0;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Header da Página do Blog */
.blog-page-header {
    padding: 4rem 0 3rem;
    margin: 0;
    background-color: #ffffff;
}

.blog-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.2;
}

.blog-page-subtitle {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Filtros do Blog */
.blog-filters {
    padding: 2rem 0;
    margin: 0;
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.blog-filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-filter-btn {
    padding: 0.875rem 1.75rem;
    background-color: transparent;
    color: #666666;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-filter-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.blog-filter-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.blog-filter-btn i {
    font-size: 1rem;
}

/* Conteúdo Principal */
.blog-main-content {
    padding: 3rem 0;
    margin: 0;
    background-color: #f8f9fa;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Paginação do Blog */
.blog-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Busca na Sidebar */
.blog-search-form {
    margin: 0;
    padding: 0;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-btn {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-cloud-link {
    padding: 0.625rem 1.25rem;
    background-color: #f8f9fa;
    color: #666666;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-cloud-link:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Responsive Blog Page */
@media (max-width: 991px) {
    .blog-page-header {
        padding: 3rem 0 2rem;
    }
    
    .blog-page-title {
        font-size: 2.5rem;
    }
    
    .blog-page-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-filters {
        padding: 1.5rem 0;
    }
    
    .blog-filter-buttons {
        gap: 0.75rem;
    }
    
    .blog-filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .blog-main-content {
        padding: 2rem 0;
    }
    
    .blog-posts-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .blog-page-header {
        padding: 2.5rem 0 1.5rem;
    }
    
    .blog-page-title {
        font-size: 2rem;
    }
    
    .blog-page-subtitle {
        font-size: 1rem;
    }
    
    .blog-filter-buttons {
        justify-content: flex-start;
    }
    
    .blog-filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .blog-posts-grid {
        gap: 1.25rem;
    }
    
    .blog-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 575px) {
    .blog-breadcrumb {
        padding: 1rem 0;
    }
    
    .blog-page-title {
        font-size: 1.75rem;
    }
    
    .blog-filter-btn {
        flex: 1;
        min-width: calc(50% - 0.375rem);
        justify-content: center;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
    }
}

/* ============================================
   FOOTER (MODERNO E ELEGANTE)
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    margin: 0;
    margin-top: 0 !important;
    width: 100%;
    position: relative;
}

/* Garantir que não haja espaço entre blog e footer */
.blog-section + .site-footer,
section.blog-section + footer.site-footer {
    margin-top: 0 !important;
    padding-top: 4rem;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo Footer */
.footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: inline-block;
    height: 60px;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.social-link i {
    font-size: 1.1rem;
}

/* Títulos das Colunas */
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Links do Footer */
.footer-nav {
    margin: 0;
    padding: 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #D4AF37;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Contato */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.contact-item i {
    color: #D4AF37;
    font-size: 1.4rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

.contact-item span {
    flex: 1;
    color: #1a1a1a;
    font-weight: 500;
}

/* Barra Inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #D4AF37;
}

.footer-legal .separator {
    color: #666666;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal .separator {
        display: none;
    }
    
    .contact-item {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        width: 20px;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
        font-size: 0.9rem;
    }
    
    .contact-item i {
        font-size: 1.1rem;
        width: 18px;
    }
    
    .footer-links a,
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-copyright,
    .footer-legal a {
        font-size: 0.85rem;
    }
}

/* ============================================
   BOTÃO FLUTUANTE WHATSAPP (MODERNO E CHAMATIVO)
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappFloat 3s ease-in-out infinite;
    font-weight: 600;
    font-size: 0.95rem;
    max-width: 220px;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-float-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-icon {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
}

.whatsapp-float-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.whatsapp-float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.whatsapp-float-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.whatsapp-float-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

.whatsapp-float-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #25D366;
    opacity: 0;
    animation: whatsappPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsappFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Responsive Botão WhatsApp */
@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.875rem 1.25rem;
        max-width: 180px;
        gap: 0.625rem;
    }
    
    .whatsapp-float-icon {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float-icon i {
        font-size: 1.5rem;
    }
    
    .whatsapp-float-label {
        font-size: 0.875rem;
    }
    
    .whatsapp-float-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 575px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        max-width: 50px;
        gap: 0;
    }
    
    .whatsapp-float-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float-icon i {
        font-size: 1.5rem;
    }
    
    .whatsapp-float-text {
        display: none;
    }
}

/* ============================================
   CONTACT PAGE (MODERNA E ELEGANTE)
   ============================================ */

.contact-page {
    padding: 4rem 0;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 60vh;
}

/* Cabeçalho da Página */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
}

.contact-page-subtitle {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Conteúdo Principal */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Coluna do Formulário */
.contact-form-col {
    position: relative;
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

.contact-form-description {
    color: #666666;
    font-size: 0.95rem;
    margin: 0 0 2rem 0;
    padding: 0;
    line-height: 1.6;
}

/* Formulário */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.required {
    color: #ff0000;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #ff0000;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
    border-color: #ff0000;
}

.form-group.error .form-error {
    display: block;
}

/* Botão de Envio */
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-text {
    display: block;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mensagem do Formulário */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
    margin-top: 0.5rem;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Honeypot - Campo invisível para proteção contra bots */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Coluna de Informações */
.contact-info-col {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.contact-info-wrapper {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

.contact-info-description {
    color: #666666;
    font-size: 0.95rem;
    margin: 0 0 2.5rem 0;
    padding: 0;
    line-height: 1.6;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: #000000;
}

.contact-info-content {
    flex: 1;
}

.contact-info-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

.contact-info-item-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.contact-info-item-text a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item-text a:hover {
    color: #D4AF37;
}

.whatsapp-link {
    color: #25D366 !important;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #20BA5A !important;
}

/* Horário de Funcionamento */
.contact-hours {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-hours-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-hours-title i {
    color: #D4AF37;
    font-size: 1.25rem;
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.hours-day {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 500;
}

.hours-time {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-col {
        position: static;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .contact-page {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-page-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .contact-info-items {
        gap: 1.5rem;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .contact-page {
        padding: 2rem 0;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-page-title {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 1.35rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   404 ERROR PAGE (MODERNA E ELEGANTE)
   ============================================ */

/* ============================================
   404 ERROR PAGE (MODERNA E ELEGANTE)
   ============================================ */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.error-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Número 404 */
.error-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.error-digit {
    font-size: 8rem;
    font-weight: 900;
    color: #D4AF37;
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.error-digit:nth-child(1) {
    animation-delay: 0s;
}

.error-digit:nth-child(2) {
    animation-delay: 0.2s;
}

.error-digit:nth-child(3) {
    animation-delay: 0.4s;
}

.error-digit-animated {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mensagem de Erro */
.error-message {
    margin-bottom: 3rem;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.error-description {
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Ícone */
.error-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite;
}

.error-icon i {
    font-size: 3rem;
    color: #000000;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Botões de Ação */
.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-error {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-error i {
    font-size: 1.1rem;
}

.btn-error-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    border-color: #D4AF37;
}

.btn-error-primary:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-error-secondary {
    background-color: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

.btn-error-secondary:hover {
    background-color: #D4AF37;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Links Úteis */
.error-links {
    margin-bottom: 3rem;
}

.error-links-title {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.error-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.error-links-list li {
    margin: 0;
    padding: 0;
}

.error-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.error-links-list a:hover {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.error-links-list a i {
    font-size: 0.9rem;
}

/* Barra de Busca */
.error-search {
    max-width: 500px;
    margin: 0 auto;
}

.error-search-title {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding: 0;
}

.error-search-form {
    display: flex;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.error-search-form:focus-within {
    border-color: #D4AF37;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.error-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    outline: none;
}

.error-search-input::placeholder {
    color: #999999;
}

.error-search-button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border: none;
    border-radius: 50%;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.error-search-button:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.error-search-button i {
    font-size: 1.1rem;
}

/* Responsive 404 Page */
@media (max-width: 767px) {
    .error-page {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .error-digit {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-icon {
        width: 100px;
        height: 100px;
    }
    
    .error-icon i {
        font-size: 2.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-error {
        width: 100%;
        justify-content: center;
    }
    
    .error-links-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-links-list a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .error-page {
        padding: 2rem 0;
    }
    
    .error-digit {
        font-size: 4rem;
        gap: 0.5rem;
    }
    
    .error-title {
        font-size: 1.75rem;
    }
    
    .error-description {
        font-size: 0.95rem;
    }
    
    .error-icon {
        width: 80px;
        height: 80px;
    }
    
    .error-icon i {
        font-size: 2rem;
    }
    
    .btn-error {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
    .error-search-form {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .error-search-button {
        width: 100%;
        border-radius: 10px;
        height: 45px;
    }
}

/* ============================================
   QUEM SOMOS PAGE (MODERNA E ELEGANTE)
   ============================================ */

.about-page {
    margin: 0;
    padding: 0;
}

/* Hero Section */
.about-hero {
    padding: 6rem 0 4rem;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #D4AF37;
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    opacity: 0.95;
}

/* Sobre Nós Section */
.about-section {
    padding: 5rem 0;
    margin: 0;
    background-color: #ffffff;
}

.about-content {
    padding-right: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
    padding: 0;
    line-height: 1.3;
}

.about-text {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.9;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image:empty,
.about-image img[src=""],
.about-image img:not([src]) {
    display: none;
}

/* Missão, Visão e Valores */
.about-mvv {
    padding: 5rem 0;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666666;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.mvv-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.mvv-icon i {
    font-size: 2.5rem;
    color: #000000;
}

.mvv-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.mvv-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    flex: 1;
}

/* Estatísticas */
.about-stats {
    padding: 5rem 0;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-stats .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #D4AF37;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

/* Diferenciais */
.about-differentials {
    padding: 5rem 0;
    margin: 0;
    background-color: #ffffff;
}

.differential-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-5px);
}

.differential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.differential-icon i {
    font-size: 2rem;
    color: #000000;
}

.differential-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
}

.differential-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Call to Action */
.about-cta {
    padding: 5rem 0;
    margin: 0;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.cta-text {
    font-size: 1.15rem;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 0 0 2.5rem 0;
    padding: 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #000000;
    color: #D4AF37;
    border-color: #000000;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Quem Somos */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-section,
    .about-mvv,
    .about-stats,
    .about-differentials,
    .about-cta {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
    }
    
    .mvv-icon {
        width: 80px;
        height: 80px;
    }
    
    .mvv-icon i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .about-hero {
        padding: 3rem 0 2rem;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-section,
    .about-mvv,
    .about-stats,
    .about-differentials,
    .about-cta {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .mvv-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   PÁGINA INTERNA DO PRODUTO (MODERNA E ELEGANTE)
   ============================================ */

.product-internal-page {
    margin: 0;
    padding: 0;
}

/* Breadcrumb */
.product-breadcrumb {
    padding: 1.5rem 0;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: #666666;
}

.breadcrumb-list li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #D4AF37;
}

.breadcrumb-list li[aria-current="page"] {
    color: #1a1a1a;
    font-weight: 600;
}

.breadcrumb-list li span {
    color: #cccccc;
    margin: 0 0.25rem;
}

/* Produto Principal */
.product-main {
    padding: 3rem 0;
    margin: 0;
    background-color: #ffffff;
}

/* Galeria de Imagens */
.product-gallery {
    margin-bottom: 2rem;
}

.product-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.gallery-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-zoom:hover {
    background-color: #D4AF37;
    color: #000000;
    transform: scale(1.1);
}

.gallery-zoom i {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.gallery-zoom:hover i {
    color: #000000;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.thumbnail {
    flex: 0 0 calc(25% - 0.5625rem);
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

/* Informações do Produto */
.product-info {
    padding-left: 2rem;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-rating .stars {
    color: #D4AF37;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.95rem;
    color: #666666;
}

.product-price-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.price-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

.price-note {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
    padding: 0;
}

.product-description-short {
    margin-bottom: 2rem;
}

.product-description-short p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.product-features {
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #666666;
}

.features-list li i {
    color: #D4AF37;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-product-primary {
    flex: 1;
    min-width: 200px;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-product-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #0d6b5f 100%);
}

.btn-product-primary i {
    font-size: 1.3rem;
}

.btn-product-secondary {
    padding: 1.25rem 2rem;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-product-secondary:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.product-shipping {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.shipping-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.shipping-row .shipping-item {
    flex: 1;
    min-width: 200px;
}

.shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.shipping-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.shipping-item strong {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.shipping-item p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
    padding: 0;
}

/* Descrição Detalhada */
.product-details {
    padding: 3rem 0;
    margin: 0;
    background-color: #f8f9fa;
}

.details-content {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
}

.details-tabs {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    background-color: #f8f9fa;
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: 150px;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.tab-btn:hover {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
}

.tab-btn.active {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
    background-color: #ffffff;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tabs-content {
    padding: 2.5rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel[aria-hidden="true"] {
    display: none;
}

.panel-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
}

.title-divider {
    border: none;
    border-top: 4px solid #D4AF37;
    margin: 0 0 2rem 0;
    padding: 0;
    width: 80px;
    opacity: 1;
}

.panel-content {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.9;
}

.panel-content p {
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.panel-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    padding: 0;
}

.panel-content h3:first-of-type {
    margin-top: 0;
}

/* Tabela de Especificações */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.specs-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    width: 40%;
    background-color: #f8f9fa;
}

.spec-value {
    padding: 1rem 1.5rem;
    color: #666666;
}

/* Avaliações */
.reviews-summary {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    text-align: center;
}

.summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.summary-number {
    font-size: 4rem;
    font-weight: 900;
    color: #D4AF37;
    line-height: 1;
}

.summary-stars {
    color: #D4AF37;
    font-size: 1.5rem;
}

.summary-count {
    font-size: 1rem;
    color: #666666;
}

.review-item {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-author strong {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.review-stars {
    color: #D4AF37;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.9rem;
    color: #999999;
}

.review-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Sidebar */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-title i {
    color: #D4AF37;
    font-size: 1.3rem;
}

.sidebar-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.btn-sidebar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-sidebar:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

.sidebar-list li i {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Produtos Relacionados */
.related-products {
    padding: 4rem 0;
    margin: 0;
    background-color: #ffffff;
}

.related-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-align: center;
}

.related-subtitle {
    font-size: 1.15rem;
    color: #666666;
    margin: 0 0 3rem 0;
    padding: 0;
    text-align: center;
}

.related-product-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.related-product-image {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.1);
}

.related-product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.related-product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.related-product-rating {
    margin: 0;
}

.related-product-rating .stars {
    color: #D4AF37;
    font-size: 0.9rem;
}

.btn-related {
    margin-top: auto;
    padding: 0.875rem 1.5rem;
    background-color: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.btn-related:hover {
    background-color: #D4AF37;
    color: #000000;
    transform: translateY(-2px);
}

/* Responsive Página Interna */
@media (max-width: 991px) {
    .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .product-main-image {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .product-main {
        padding: 2rem 0;
    }
    
    .product-name {
        font-size: 1.75rem;
    }
    
    .product-main-image {
        min-height: 300px;
    }
    
    .thumbnail {
        flex: 0 0 calc(50% - 0.375rem);
    }
    
    .thumbnail img {
        height: 80px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-product-primary,
    .btn-product-secondary {
        width: 100%;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
        border-left: 3px solid transparent;
    }
    
    .tab-btn.active {
        border-left-color: #D4AF37;
        border-bottom-color: #e9ecef;
    }
    
    .tabs-content {
        padding: 1.5rem;
    }
    
    .panel-title {
        font-size: 1.5rem;
    }
    
    .spec-label {
        width: 35%;
        padding: 0.75rem 1rem;
    }
    
    .spec-value {
        padding: 0.75rem 1rem;
    }
    
    .related-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .product-breadcrumb {
        padding: 1rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-main-image {
        min-height: 250px;
    }
    
    .thumbnail {
        flex: 0 0 calc(50% - 0.375rem);
    }
    
    .thumbnail img {
        height: 60px;
    }
    
    .product-shipping {
        padding: 1rem;
    }
    
    .shipping-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .shipping-row .shipping-item {
        min-width: 100%;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .related-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   PÁGINA DE CATEGORIA (MODERNA E ELEGANTE)
   ============================================ */

.category-page {
    margin: 0;
    padding: 0;
}

/* Breadcrumb da Categoria */
.category-breadcrumb {
    padding: 1.5rem 0;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Header da Categoria */
.category-header {
    padding: 3rem 0 2rem;
    margin: 0;
    background-color: #ffffff;
}

.category-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: center;
    line-height: 1.2;
}

.category-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    text-align: center;
}

.category-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem 0;
    padding: 0;
}

.count-number {
    font-size: 4rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    display: block;
    text-align: center;
}

.count-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
    text-align: center;
    display: block;
}


/* Grid de Produtos da Categoria */
.category-products {
    padding: 3rem 0;
    margin: 0;
    background-color: #f8f9fa;
}

.products-grid-category {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.products-grid-category .product-card-modern {
    position: relative;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    padding: 0.75rem;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.overlay-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    text-align: center;
}

.products-grid-category .product-content {
    padding: 1.5rem;
}

.products-grid-category .product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    padding: 0;
    line-height: 1.4;
    text-align: center;
}

.products-grid-category .product-title a {
    text-align: center;
    display: block;
}

.products-grid-category .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-grid-category .product-rating .stars {
    color: #D4AF37;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.85rem;
    color: #999999;
}

.products-grid-category .product-actions {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

.products-grid-category .btn-quote {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.products-grid-category .btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #0d6b5f 100%);
}

.products-grid-category .btn-quote i {
    font-size: 1.1rem;
}

/* Galeria de miniaturas nos cards */
.product-gallery-card {
    position: relative;
}

.product-thumbs-card {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    justify-content: center;
    flex-wrap: wrap;
}

.thumb-btn {
    width: 50px;
    height: 50px;
    padding: 2px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.thumb-btn:hover {
    border-color: #D4AF37;
}

.thumb-btn.active {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* Responsivo para miniaturas */
@media (max-width: 576px) {
    .thumb-btn {
        width: 42px;
        height: 42px;
    }
    
    .product-thumbs-card {
        gap: 0.35rem;
        padding: 0.5rem;
    }
}

/* Paginação */
.category-pagination {
    padding: 3rem 0;
    margin: 0;
    background-color: #ffffff;
}

.pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    color: #666666;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.pagination-btn.prev,
.pagination-btn.next {
    font-size: 1rem;
}

.pagination-dots {
    color: #999999;
    padding: 0 0.5rem;
    font-size: 0.95rem;
}

/* Responsive Página de Categoria */
@media (max-width: 991px) {
    .category-title {
        font-size: 2.5rem;
    }
    
    .category-count {
        align-items: center;
        margin: 1.5rem 0 1rem 0;
    }
    
    .count-number {
        font-size: 3rem;
    }
    
    .sort-options {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }
    
    .products-grid-category {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .category-header {
        padding: 2rem 0 1.5rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    
    .category-products {
        padding: 2rem 0;
    }
    
    .products-grid-category {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }
    
    .category-pagination {
        padding: 2rem 0;
    }
    
    .pagination-btn {
        min-width: 40px;
        height: 40px;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 575px) {
    .category-breadcrumb {
        padding: 1rem 0;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .count-number {
        font-size: 2.5rem;
    }
    
    .count-label {
        font-size: 0.9rem;
    }
    
    .products-grid-category {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE (MODERNA E ELEGANTE)
   ============================================ */

.privacy-policy-page {
    margin: 0;
    padding: 0;
}

/* Hero da Política */
.privacy-hero {
    padding: 4rem 0 3rem;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.2;
}

.privacy-intro {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    margin: 0 0 1rem 0;
    padding: 0;
}

.privacy-update {
    font-size: 0.95rem;
    color: #999999;
    margin: 0;
    padding: 0;
}

/* Índice */
.privacy-index {
    padding: 3rem 0;
    margin: 0;
    background-color: #ffffff;
}

.index-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.index-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.index-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 2px;
}

.index-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.index-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background-color: #ffffff;
    color: #666666;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.index-link:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    transform: translateX(5px);
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Conteúdo da Política */
.privacy-content {
    padding: 3rem 0 4rem;
    margin: 0;
    background-color: #f8f9fa;
}

.privacy-article {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.privacy-section {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 3px solid #D4AF37;
    line-height: 1.3;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    padding: 0;
}

.privacy-section h3:first-of-type {
    margin-top: 0;
}

.privacy-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 1rem 0;
    padding: 0;
}

.privacy-section p {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.9;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.info-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.info-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Alert Boxes */
.alert-box {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-left: 4px solid #D4AF37;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.alert-box strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.alert-box p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0 0 0.75rem 0;
}

.alert-box p:last-child {
    margin-bottom: 0;
}

.alert-box.important {
    background: linear-gradient(135deg, #ffe6e6 0%, #ffffff 100%);
    border-left-color: #dc3545;
}

/* Info Box */
.info-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.info-box strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.info-box p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

/* Tabelas */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    font-size: 0.95rem;
}

.legal-table thead {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
}

.legal-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
}

.legal-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    color: #666666;
}

.legal-table tbody tr:hover {
    background-color: #f8f9fa;
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-table a:hover {
    color: #B8941F;
    text-decoration: underline;
}

/* Operator Cards */
.operator-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.operator-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.right-item:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.right-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #000000;
    font-size: 1.5rem;
}

.right-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    padding: 0;
}

.right-item p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    border: 2px solid #e9ecef;
}

.contact-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

.contact-item span {
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Footer da Política */
.privacy-footer {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.footer-note {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-style: italic;
}

.footer-version {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.footer-version strong {
    color: #666666;
}

/* Responsive Política de Privacidade */
@media (max-width: 991px) {
    .privacy-hero {
        padding: 3rem 0 2rem;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-article {
        padding: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .privacy-hero {
        padding: 2.5rem 0 1.5rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-intro {
        font-size: 1.1rem;
    }
    
    .privacy-index {
        padding: 2rem 0;
    }
    
    .index-card {
        padding: 1.5rem;
    }
    
    .privacy-content {
        padding: 2rem 0 3rem;
    }
    
    .privacy-article {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
    }
    
    .privacy-section h4 {
        font-size: 1.1rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .table-responsive {
        font-size: 0.85rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 575px) {
    .privacy-title {
        font-size: 1.75rem;
    }
    
    .index-card {
        padding: 1.25rem;
    }
    
    .index-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .privacy-article {
        padding: 1.25rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.625rem 0.75rem;
    }
}

/* ============================================
   PÁGINA DE TERMOS DE USO (MODERNA E ELEGANTE)
   ============================================ */

.terms-page {
    margin: 0;
    padding: 0;
}

/* Hero dos Termos */
.terms-hero {
    padding: 4rem 0 3rem;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.terms-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.2;
}

.terms-intro {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    margin: 0 0 1rem 0;
    padding: 0;
}

.terms-update {
    font-size: 0.95rem;
    color: #999999;
    margin: 0;
    padding: 0;
}

/* Índice dos Termos */
.terms-index {
    padding: 3rem 0;
    margin: 0;
    background-color: #ffffff;
}

/* Conteúdo dos Termos */
.terms-content {
    padding: 3rem 0 4rem;
    margin: 0;
    background-color: #f8f9fa;
}

.terms-article {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.terms-section {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e9ecef;
}

.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 3px solid #D4AF37;
    line-height: 1.3;
}

.terms-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    padding: 0;
}

.terms-section h3:first-of-type {
    margin-top: 0;
}

.terms-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 1rem 0;
    padding: 0;
}

.terms-section p {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.9;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

/* Footer dos Termos */
.terms-footer {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

/* Reutiliza estilos da política de privacidade */
.terms-page .index-card,
.terms-page .index-title,
.terms-page .index-nav,
.terms-page .index-link,
.terms-page .info-list,
.terms-page .alert-box,
.terms-page .info-box,
.terms-page .contact-card,
.terms-page .contact-info,
.terms-page .contact-item,
.terms-page .footer-note,
.terms-page .footer-version {
    /* Herda todos os estilos da política de privacidade */
}

/* Responsive Termos de Uso */
@media (max-width: 991px) {
    .terms-hero {
        padding: 3rem 0 2rem;
    }
    
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-article {
        padding: 2.5rem;
    }
    
    .terms-section .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .terms-hero {
        padding: 2.5rem 0 1.5rem;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-intro {
        font-size: 1.1rem;
    }
    
    .terms-index {
        padding: 2rem 0;
    }
    
    .terms-content {
        padding: 2rem 0 3rem;
    }
    
    .terms-article {
        padding: 1.5rem;
    }
    
    .terms-section .section-title {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.25rem;
    }
    
    .terms-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .terms-title {
        font-size: 1.75rem;
    }
    
    .terms-article {
        padding: 1.25rem;
    }
    
    .terms-section .section-title {
        font-size: 1.35rem;
    }
}

/* ============================================
   404 ERROR PAGE (MODERNA E ELEGANTE)
   ============================================ */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.error-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Número 404 */
.error-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.error-digit {
    font-size: 8rem;
    font-weight: 900;
    color: #D4AF37;
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.error-digit:nth-child(1) {
    animation-delay: 0s;
}

.error-digit:nth-child(2) {
    animation-delay: 0.2s;
}

.error-digit:nth-child(3) {
    animation-delay: 0.4s;
}

.error-digit-animated {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mensagem de Erro */
.error-message {
    margin-bottom: 3rem;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.error-description {
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Ícone */
.error-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite;
}

.error-icon i {
    font-size: 3rem;
    color: #000000;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Botões de Ação */
.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-error {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-error i {
    font-size: 1.1rem;
}

.btn-error-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
    border-color: #D4AF37;
}

.btn-error-primary:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-error-secondary {
    background-color: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

.btn-error-secondary:hover {
    background-color: #D4AF37;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Links Úteis */
.error-links {
    margin-bottom: 3rem;
}

.error-links-title {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.error-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.error-links-list li {
    margin: 0;
    padding: 0;
}

.error-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.error-links-list a:hover {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.error-links-list a i {
    font-size: 0.9rem;
}

/* Barra de Busca */
.error-search {
    max-width: 500px;
    margin: 0 auto;
}

.error-search-title {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding: 0;
}

.error-search-form {
    display: flex;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.error-search-form:focus-within {
    border-color: #D4AF37;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.error-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    outline: none;
}

.error-search-input::placeholder {
    color: #999999;
}

.error-search-button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border: none;
    border-radius: 50%;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.error-search-button:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9a7d19 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.error-search-button i {
    font-size: 1.1rem;
}

/* Responsive 404 Page */
@media (max-width: 767px) {
    .error-page {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .error-digit {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-icon {
        width: 100px;
        height: 100px;
    }
    
    .error-icon i {
        font-size: 2.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-error {
        width: 100%;
        justify-content: center;
    }
    
    .error-links-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-links-list a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .error-page {
        padding: 2rem 0;
    }
    
    .error-digit {
        font-size: 4rem;
        gap: 0.5rem;
    }
    
    .error-title {
        font-size: 1.75rem;
    }
    
    .error-description {
        font-size: 0.95rem;
    }
    
    .error-icon {
        width: 80px;
        height: 80px;
    }
    
    .error-icon i {
        font-size: 2rem;
    }
    
    .btn-error {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
    .error-search-form {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .error-search-button {
        width: 100%;
        border-radius: 10px;
        height: 45px;
    }
}


/* ============================================
   MODAL DE PEDIDOS
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-title i {
    color: #D4AF37;
}

.modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background-color: #f8f9fa;
}

/* Formulário */
.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #D4AF37;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    color: #D4AF37;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
}

.form-group.col-md-6 {
    flex: 0 0 calc(50% - 0.5rem);
}

.form-label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label .required {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control.error {
    border-color: #dc3545;
}

.form-control.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-text {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.25rem;
}

/* CNPJ + Botão Buscar (modal pedidos) */
.cnpj-busca-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.cnpj-busca-wrapper .form-control {
    flex: 1;
    min-width: 180px;
}
.btn-buscar-cnpj {
    padding: 0.75rem 1.25rem;
    border: 2px solid #D4AF37;
    background-color: #D4AF37;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.btn-buscar-cnpj:hover {
    background-color: #c49e2e;
    border-color: #c49e2e;
    color: #000;
}
.field-cliente[readonly] {
    background-color: #f1f3f5;
    cursor: not-allowed;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Lista de Produtos Selecionados */
.selected-products-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.selected-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.selected-product-item:last-child {
    margin-bottom: 0;
}

.selected-product-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f8f9fa;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item-info {
    flex: 1;
}

.product-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.product-item-quantity {
    font-size: 0.9rem;
    color: #666666;
}

.order-summary-inline {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #D4AF37;
    margin-top: 1rem;
}

.summary-inline-item {
    font-size: 1rem;
    color: #1a1a1a;
}

.summary-inline-item strong {
    color: #D4AF37;
    margin-right: 0.5rem;
}

/* Botões */
.btn-modal-primary,
.btn-modal-secondary {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-modal-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000000;
}

.btn-modal-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-modal-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-modal-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-modal-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

/* Alertas */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 1.25rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group.col-md-6 {
        flex: 1;
    }

    .modal-footer {
        flex-direction: column-reverse;
    }

    .btn-modal-primary,
    .btn-modal-secondary {
        width: 100%;
    }
}

/* ============================================
   Banner de Consentimento de Cookies
   ============================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #ffffff;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
    padding: 1rem 0;
    transition: transform 0.35s ease, visibility 0.35s ease;
    visibility: visible;
}

.cookie-consent-banner--hidden {
    transform: translateY(100%);
    visibility: hidden;
    pointer-events: none;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #333333;
    flex: 1;
    min-width: 280px;
}

.cookie-consent-text a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #004499;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn.cookie-consent-accept {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cookie-consent-btn.cookie-consent-accept:hover {
    background: #0052a3;
}

.cookie-consent-prefs {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #333333;
    font-size: 0.9375rem;
    text-decoration: none;
}

.cookie-consent-prefs:hover {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-consent-prefs i {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-consent-btn.cookie-consent-accept {
        width: 100%;
    }
}

/* ============================================
   MODAL DE DETALHES DO PRODUTO - PEDIDOS
   ============================================ */

/* Botão Ver Detalhes na tabela */
.actions-btn-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: #17a2b8;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view-details:hover {
    background: #138496;
    transform: scale(1.05);
}

.btn-view-details i {
    font-size: 0.9rem;
}

/* Modal Container Large */
.modal-container-lg {
    max-width: 900px;
    width: 95%;
}

/* Loading State */
.details-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #6c757d;
}

.details-loading i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.details-loading p {
    margin: 0;
    font-size: 1rem;
}

/* Error State */
.details-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #dc3545;
}

.details-error i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.details-error p {
    margin: 0;
    font-size: 1rem;
}

/* Content Layout */
.details-content {
    padding: 0;
}

.details-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Gallery */
.details-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-main-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.details-thumbnails {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.details-thumb {
    width: 60px;
    height: 60px;
    padding: 0;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.2s ease;
}

.details-thumb:hover {
    border-color: #D4AF37;
}

.details-thumb.active {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Section */
.details-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}

.details-short-desc {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
}

.details-short-desc p {
    margin: 0 0 0.5rem;
}

/* Features */
.details-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.details-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.details-feature i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D4AF37;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.details-feature div {
    display: flex;
    flex-direction: column;
}

.details-feature strong {
    font-size: 0.9rem;
    color: #212529;
}

.details-feature span {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Add to Order Section */
.details-add-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #e9ecef;
    border-radius: 10px;
}

.details-qty-label {
    font-weight: 600;
    color: #212529;
    font-size: 0.95rem;
}

.details-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #ced4da;
    overflow: hidden;
}

.details-qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8f9fa;
    color: #495057;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.details-qty-btn:hover {
    background: #e9ecef;
}

.details-qty-input {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    -moz-appearance: textfield;
}

.details-qty-input::-webkit-outer-spin-button,
.details-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-to-order {
    flex: 1;
    min-width: 180px;
    padding: 0.75rem 1.25rem;
    background: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-add-to-order:hover {
    background: #218838;
}

.btn-add-to-order.btn-success {
    background: #28a745;
    animation: pulse-success 0.3s ease;
}

@keyframes pulse-success {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* View Full Page Link */
.details-view-page {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
}

.details-view-page:hover {
    color: #D4AF37;
    text-decoration: underline;
}

/* Full Description Section */
.details-full-desc {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.details-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 1rem;
}

.details-section-title i {
    color: #D4AF37;
}

.details-desc-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.details-desc-content p {
    margin: 0 0 1rem;
}

.details-desc-content ul,
.details-desc-content ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

/* Highlight row animation */
.highlight-row {
    animation: highlight-pulse 2s ease;
}

@keyframes highlight-pulse {
    0% { background-color: transparent; }
    25% { background-color: rgba(40, 167, 69, 0.2); }
    75% { background-color: rgba(40, 167, 69, 0.2); }
    100% { background-color: transparent; }
}

/* Responsive */
@media (max-width: 768px) {
    .details-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .details-main-image {
        max-height: 300px;
    }

    .details-product-title {
        font-size: 1.25rem;
    }

    .details-add-section {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-add-to-order {
        width: 100%;
    }

    .modal-container-lg {
        max-height: 90vh;
        margin: 1rem;
    }

    .actions-btn-group {
        flex-direction: column;
        gap: 0.25rem;
    }

    .btn-view-details,
    .btn-remove-item {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .details-thumb {
        width: 50px;
        height: 50px;
    }

    .details-features {
        padding: 0.75rem;
    }

    .details-feature i {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

