:root {
    --primary-blue: #004aad;
    --white: #ffffff;
    --secondary-blue: #0056d6;
    --accent-blue: #003d8f;
}

/* Header */
header {
    background-color: var(--white) !important;
    border-bottom: 2px solid var(--primary-blue);
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #003d91;
    border-color: #003d91;
}

.navbar-nav .nav-link {
    font-weight: 600; 
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 17px!important; 
    letter-spacing: 0.5px; 
}

.navbar-nav .nav-link:hover {
    color: #003d91 !important;
    transform: translateY(-2px);
}

.card {
    border: 1px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link {
    color: rgba(0, 0, 0, 0.55) !important; 
}

.nav-link:hover {
    color: #004aad !important;
    transition: all 0.3s ease;
}

/* Estilo para item de menu ativo */
.nav-link.active {
    color: #004aad !important;
    border-bottom: 2px solid #004aad !important;
    padding-bottom: 4px !important;
}

/* Garantir que o hover funcione normalmente nos outros itens */
.nav-link:not(.active):hover {
    color: #004aad !important;
    border-bottom: 2px solid #004aad !important;
    padding-bottom: 4px !important;
}

/* Estilo para dropdown item ativo */
.dropdown-item.active {
    background-color: #f8f9fa !important;
    color: #004aad !important;
}

/* Dropdown items */
.dropdown-item {
    color: rgba(0, 0, 0, 0.55) !important;
}

.dropdown-item:hover {
    background-color: #004aad !important;
    color: white !important;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        font-size: 1.2rem; 
        text-align: center;
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 1.1rem;
    }
}

/* Carrossel Principal */
.carousel-img {
    height: 700px;
    object-fit: cover;
    object-position: center;
    transition: transform 4s ease-in-out;
    transform: scale(1);
}

.carousel-item.active .carousel-img {
    transform: scale(1.1);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.6), rgba(0, 74, 173, 0.3));
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-30%, -70%);
    z-index: 2;
    text-align: center;
    color: white;
    width: 80%;
}

.carousel-text {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.btn-carousel {
    background: rgba(255, 255, 255, 0.1)!important;
    color: white!important;
    border: 1px solid rgba(255, 255, 255, 0.8)!important;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2)!important;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px)!important;
}

.btn-carousel:hover {
    background: rgba(255, 255, 255, 0.2)!important;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 1)!important;
}

.btn-carousel:active {
    transform: translateY(-1px) scale(1.02);
}

.carousel-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

@media (max-width: 768px) {
    .carousel-img {
        height: 280px;
    }
    
    .carousel-caption {
        top: 70%;
        width: 90%;
    }
    
    .carousel-text {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .btn-carousel {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-img {
        height: 220px;
    }
    
    .carousel-caption {
        top: 75%;
    }
    
    .carousel-text {
        font-size: 1rem;
    }
    
    .btn-carousel {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Seção de Categorias */
.categories-section-full {
    text-align: center;
}

.categories-section-full .row {
    justify-content: center !important;
}

.category-card-full {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 70px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; 
}

.category-card-full:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.category-icon {
    color: white;
    font-size: 1.4rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.category-card-full:hover .category-icon {
    opacity: 1;
    transform: scale(1.1);
}

.category-name-full {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.categories-section-full .col-xl-2,
.categories-section-full .col-lg-3,
.categories-section-full .col-md-4,
.categories-section-full .col-sm-6 {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* Responsividade para categorias */
@media (min-width: 1200px) {
    .category-card-full {
        min-width: 140px;
    }
}

@media (max-width: 1199px) {
    .category-card-full {
        min-width: 130px;
    }
    .category-card-full .category-icon {
        font-size: 1.3rem;
    }
    .category-card-full .category-name-full {
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
    .category-card-full {
        height: 65px;
        padding: 12px 10px;
        min-width: 110px;
    }
    .category-card-full .category-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    section[style*="padding-top: 46px"],
    section[style*="padding: 35px 0"] { 
        padding: 25px 0 !important;
    }
    .category-card-full {
        height: 60px;
        padding: 10px 8px;
        min-width: 100px;
    }
    .category-card-full .category-icon {
        font-size: 1.1rem;
    }
    .category-card-full .category-name-full {
        font-size: 0.65rem;
    }
}

@media (max-width: 575px) {
    section[style*="padding-top: 46px"],
    section[style*="padding: 35px 0"] {
        padding: 20px 0 !important;
    }
    .category-card-full {
        height: 55px;
        min-width: 90px;
        padding: 8px 6px;
    }
    .category-card-full .category-content {
        gap: 3px;
    }
}

/* Seção de Produtos */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    height: 280px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.05), rgba(0, 74, 173, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.2);
    border-color: var(--primary-blue);
}

.product-image-container {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 15px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    z-index: 2;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.85), rgba(0, 74, 173, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
    backdrop-filter: blur(2px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.product-name {
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    z-index: 2;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-name {
    color: #003d91;
    transform: translateY(-2px);
}

.row .col-xl-2,
.row .col-lg-3,
.row .col-md-4,
.row .col-sm-6 {
    display: flex;
    margin-bottom: 30px;
}

/* Modal customizado */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, var(--primary-blue), #0056d6);
    color: white;
    border-radius: 0;
    padding: 20px 25px;
}

.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-title {
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
    padding: 20px 25px;
}

.modal-body {
    padding: 30px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; 
}

/* Imagem do modal com tamanho padronizado */
.modal-body img {
    width: 100%;
    max-width: 500px; 
    height: 400px; 
    object-fit: cover; 
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

/* Responsividade para modal */
@media (max-width: 991px) {
    .modal-body img {
        max-width: 400px;
        height: 320px;
    }
    .modal-body {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .modal-body {
        padding: 20px;
        min-height: 300px;
    }
    .modal-body img {
        max-width: 100%;
        height: 280px;
    }
}

@media (max-width: 575px) {
    .modal-body {
        padding: 15px;
        min-height: 250px;
    }
    .modal-body img {
        height: 220px;
    }
}

.btn-outline-primary {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

/* Responsividade para produtos */
@media (max-width: 1199px) {
    .product-card {
        height: 260px;
    }
    .product-image-container {
        height: 140px;
    }
    .product-name {
        font-size: 0.9rem;
        height: 55px;
    }
}

@media (max-width: 991px) {
    .product-card {
        height: 240px;
        padding: 15px;
    }
    .product-image-container {
        height: 130px;
    }
    .product-name {
        font-size: 0.85rem;
        height: 50px;
    }
    .zoom-icon {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .product-card {
        height: 220px;
        padding: 12px;
        margin-bottom: 20px;
    }
    .product-image-container {
        height: 120px;
        margin-bottom: 12px;
    }
    .product-name {
        font-size: 0.8rem;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .product-card {
        height: 200px;
        padding: 10px;
    }
    .product-image-container {
        height: 110px;
    }
    .product-name {
        font-size: 0.75rem;
        height: 40px;
    }
    .zoom-icon {
        font-size: 1.8rem;
    }
}

/* Botão Ver Todos */
.btn-ver-todos {
    background: linear-gradient(135deg, var(--primary-blue), #0056d6);
    color: white;
    padding: 12px 28px; 
    border-radius: 25px; 
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem; 
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3); 
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.8px; 
    position: relative;
    overflow: hidden;
}

.btn-ver-todos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-ver-todos:hover::before {
    left: 100%;
}

.btn-ver-todos:hover {
    background: linear-gradient(135deg, #003d91, #004aad);
    color: white;
    transform: translateY(-2px) scale(1.03); 
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.4); 
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ver-todos i {
    transition: transform 0.3s ease;
    margin-left: 8px; 
    font-size: 1.1rem; 
}

.btn-ver-todos:hover i {
    transform: translateX(6px); 
}

/* Responsividade para o botão */
@media (max-width: 767px) {
    .btn-ver-todos {
        padding: 10px 24px; 
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .btn-ver-todos {
        padding: 9px 20px; 
        font-size: 0.85rem; 
        letter-spacing: 0.5px;
    }
    .btn-ver-todos i {
        font-size: 1rem; 
        margin-left: 6px; 
    }
}

/* Seção de Diferenciais */
.diferencial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.diferencial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* Ícones maiores e mais centralizados */
.diferencial-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.diferencial-icon i {
    color: white;
    font-size: 4rem;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.diferencial-card:hover .diferencial-icon i {
    opacity: 1;
    transform: scale(1.1);
}

.diferencial-title {
    color: white;
    font-weight: 700;
    margin: 0;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

/* Divisória */
.diferencial-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    margin: 15px auto;
    border-radius: 2px;
}

.diferencial-text {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    font-weight: 400;
}

/* Responsividade para diferenciais */
@media (max-width: 1199px) {
    .diferencial-icon {
        width: 110px;
        height: 110px;
    }
    .diferencial-icon i {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .diferencial-card {
        padding: 35px 20px;
    }
    .diferencial-icon {
        width: 100px;
        height: 100px;
    }
    .diferencial-icon i {
        font-size: 3.2rem;
    }
    .diferencial-title {
        font-size: 1.4rem;
    }
    .diferencial-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .diferencial-card {
        margin-bottom: 25px;
        padding: 30px 20px;
    }
    .diferencial-icon {
        width: 90px;
        height: 90px;
    }
    .diferencial-icon i {
        font-size: 2.8rem;
    }
    .diferencial-title {
        font-size: 1.3rem;
    }
    .diferencial-text {
        font-size: 0.95rem;
    }
    .btn-ver-todos {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .btn-ver-todos {
        padding: 10px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    .diferencial-card {
        padding: 25px 15px;
    }
    .diferencial-icon {
        width: 80px;
        height: 80px;
    }
    .diferencial-icon i {
        font-size: 2.5rem;
    }
    .diferencial-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    .diferencial-title::after {
        width: 50px;
        height: 2px;
        margin: 12px auto;
    }
    .diferencial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Seção Sobre Nós */
.sobre-content {
    padding: 20px 0;
}

.sobre-title {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sobre-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #0056d6);
    margin-bottom: 30px;
    border-radius: 2px;
    position: relative;
}

.sobre-divider::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 15px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
    opacity: 0.6;
}

.sobre-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.sobre-text:last-child {
    margin-bottom: 0;
}

.sobre-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.sobre-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.sobre-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.sobre-image-container:hover .sobre-image {
    transform: scale(1.05);
}

.sobre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.3), rgba(0, 74, 173, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sobre-image-container:hover .sobre-overlay {
    opacity: 1;
}

/* Responsividade para seção Sobre */
@media (max-width: 991px) {
    .sobre-title {
        font-size: 2.2rem;
    }
    .sobre-text {
        font-size: 1rem;
    }
    .sobre-image {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .sobre-content {
        text-align: center;
        padding: 15px 0;
    }
    .sobre-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .sobre-divider {
        margin: 0 auto 25px auto;
    }
    .sobre-text {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
    .sobre-image {
        height: 300px;
    }
    .sobre-image-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .sobre-title {
        font-size: 1.8rem;
    }
    .sobre-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .sobre-image {
        height: 250px;
    }
    .sobre-divider {
        width: 60px;
        height: 3px;
    }
    .sobre-divider::after {
        width: 12px;
        height: 3px;
        right: -15px;
    }
}

/* Body da página de produtos */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Sidebar de produtos */
.products-sidebar {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 20px;
    height: fit-content;
    border: 1px solid rgba(0, 74, 173, 0.1);
}

.products-sidebar h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-blue);
    font-size: 1.3rem;
}

.products-category-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    gap: 12px;
}
.products-category-item i {
    flex-shrink: 0;
    width: 20px;
    font-size: 1.1rem;
    margin-top: 1px;
    margin-right: 0; 
}

.products-category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.products-category-item:hover {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.05), rgba(0, 74, 173, 0.1));
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.products-category-item:hover::before {
    transform: scaleY(1);
}

.products-category-item.active {
    background: linear-gradient(135deg, var(--primary-blue), #0056d6);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    transform: translateX(5px);
}

.products-category-item.active::before {
    transform: scaleY(1);
    background: white;
}

.products-category-item .category-text {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

/* Search box inline */
.products-search-box-inline {
    display: flex;
    justify-content: flex-end;
}

.products-search-input-inline {
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 18px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.products-search-input-inline:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.3rem rgba(0, 74, 173, 0.15);
    transform: translateY(-1px);
}

.products-search-btn-inline {
    background: linear-gradient(135deg, var(--primary-blue), #0056d6);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
}

.products-search-btn-inline:hover {
    background: linear-gradient(135deg, #003d8f, #004aad);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
}

/* Header da seção de produtos */
.products-header {
    background: linear-gradient(135deg, white, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 74, 173, 0.1);
}

.products-header h2 {
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0;
    font-size: 2.2rem;
}

.products-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin-top: 8px;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
}


.products-product-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    width: 100%;
    height: 300px; 
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.products-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.03), rgba(0, 74, 173, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.products-product-card:hover::before {
    opacity: 1;
}

.products-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.15);
    border-color: var(--primary-blue);
}

/* Container da imagem */
.products-product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    width: 100%;
    height: 200px; 
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
}

/* Imagem do produto */
.products-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 18px 18px 0 0;
}

.products-product-card:hover .products-product-image {
    transform: scale(1.1);
    filter: brightness(1.05) saturate(1.1);
}

/* Overlay da imagem */
.products-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.85), rgba(0, 74, 173, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 18px 18px 0 0;
    backdrop-filter: blur(2px);
}

.products-product-card:hover .products-product-overlay {
    opacity: 1;
}

.products-zoom-icon {
    color: white;
    font-size: 2rem;
    animation: pulseZoom 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes pulseZoom {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Informações do produto */
.products-product-info {
    padding: 14px;
    height: 100px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.products-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    height: 40px; 
}

.products-product-card:hover .products-product-name {
    color: var(--primary-blue);
}

.products-product-category {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    height: 25px; 
}

.products-product-card:hover .products-product-category {
    opacity: 1;
}

.products-product-category i {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Container para quando não há produtos */
.products-no-products-full {
    grid-column: 1 / -1; /* Ocupa toda a largura do grid */
}

/* Quando não há produtos */
.products-no-products {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, white, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 74, 173, 0.1);
}

.products-no-products i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    opacity: 0.6;
}

.products-no-products h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Responsividade para página de produtos */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .products-product-card {
        height: 290px;
    }
    
    .products-product-image-container {
        height: 190px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-product-card {
        height: 320px;
    }
    
    .products-product-image-container {
        height: 220px;
    }
    
    .products-product-info {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .products-sidebar {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-product-card {
        height: 280px;
    }
    
    .products-product-image-container {
        height: 180px;
    }
    
    .products-product-info {
        padding: 15px;
        height: 100px;
    }
    
    .products-header h2 {
        font-size: 1.8rem;
    }
    
    .products-subtitle {
        font-size: 1rem;
    }
    
    .products-search-box-inline {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-product-card {
        height: 300px;
        max-width: 100%;
    }
    
    .products-product-image-container {
        height: 200px;
    }
    
    .products-product-info {
        padding: 15px;
        height: 100px;
    }
    
    .products-sidebar {
        padding: 15px;
    }
    
    .products-category-item {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* Barra de busca no topo  */
.products-search-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem; 
    margin-top: 1rem; 
}

.products-search-top .input-group {
    width: 350px;
}

.products-search-input-top {
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.products-search-input-top:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.3rem rgba(0, 74, 173, 0.15);
    transform: translateY(-2px);
}

.products-search-btn-top {
    background: linear-gradient(135deg, var(--primary-blue), #0056d6);
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
}

.products-search-btn-top:hover {
    background: linear-gradient(135deg, #003d8f, #004aad);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
}

.row {
    margin-bottom: 1.5rem;
}

/*PÁGINA DE DOWNLOADS*/

.downloads-header {
    background: linear-gradient(135deg, white, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 74, 173, 0.1);
}

.downloads-title {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0;
}

.downloads-title i {
    margin-right: 15px;
}

.downloads-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 500;
}

.downloads-stats .badge {
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* Grid de Downloads */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; 
    padding: 20px 0; 
}

/* Cards de Download */
.download-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 180px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 40px; 
    position: relative;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.15);
    border-color: var(--primary-blue);
}

/* Ícone do Card */
.download-card-icon {
    text-align: center;
    margin-bottom: 15px; 
}

.download-card-icon i {
    font-size: 2.5rem; 
    color: var(--primary-blue);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.download-card:hover .download-card-icon i {
    opacity: 1;
    transform: scale(1.1);
}

/* Conteúdo do Card */
.download-title {
    font-size: 1.1rem; 
    font-weight: 700;
    color: #333;
    margin-bottom: 15px; 
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta informações */
.download-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.download-info small {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary-blue), #0056d6);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
    text-decoration: none;
    font-size: 0.9rem;
    position: absolute;
    bottom: -20px; 
    right: 30px;
    z-index: 10;
}

.download-btn:hover {
    background: linear-gradient(135deg, #003d8f, #004aad);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
    color: white;
}

.download-btn i {
    margin-right: 6px;
}

/* Responsividade */
@media (max-width: 768px) {
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 30px; 
    }
    
    .download-card {
        height: auto;
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .download-meta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .downloads-header {
        padding: 25px;
        text-align: center;
    }
    
    .downloads-title {
        font-size: 2rem;
    }
    
    .downloads-stats {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .downloads-stats .badge {
        display: inline-block;
        text-align: center;
    }
    
    .download-btn {
        position: static;
        margin-top: 15px;
    }
}

/* Footer */

   .main-footer {
    position: relative;
    padding: 40px 0 0px;
    color: white;
    overflow: hidden;
}

/* Background com degradê azul */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        #0056d6 50%, 
        var(--accent-blue) 100%);
    z-index: -1;
}

/* Conteúdo do footer */
.footer-content {
    padding-top: 5px;
    position: relative;
    z-index: 1;
}

/* Logo do footer */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    filter: brightness(0) invert(1);
}

.footer-company-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Títulos das seções */
.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

/* Descrição da empresa */
.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Itens de informação */
.footer-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-info-item i {
    color: white;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 0.8rem;
    min-width: 20px;
}

.footer-info-item span {
    line-height: 1.5;
}

/* Separador */
.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    margin: 30px 0 20px;
}

/* Rodapé inferior */

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-developer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.developer-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.developer-link:hover {
    color: #87CEEB;
    border-bottom-color: #87CEEB;
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 15px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-company-name {
        font-size: 1.3rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-info-item {
        font-size: 0.9rem;
    }
}

/* Quem somos - Hero melhorado e moderno */
.quem-somos-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de formas geométricas no fundo */
.quem-somos-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.quem-somos-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

/* Bordinha azul clara no bottom */
.quem-somos-hero {
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, 
        rgba(135, 206, 235, 0.8) 0%, 
        rgba(173, 216, 230, 0.9) 50%, 
        rgba(135, 206, 235, 0.8) 100%) 1;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.2);
}

.quem-somos-hero .container {
    position: relative;
    z-index: 2;
}

.quem-somos-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 3px 15px rgba(0,0,0,0.2);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    position: relative;
}

/* Linha decorativa no título */
.quem-somos-hero .hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(135, 206, 235, 0.9) 100%);
    border-radius: 2px;
}

.quem-somos-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Botão decorativo opcional */
.quem-somos-hero .hero-button {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quem-somos-hero .hero-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .quem-somos-hero {
        padding: 60px 0 40px;
    }
    
    .quem-somos-hero::before {
        width: 400px;
        height: 400px;
        right: -30%;
    }
    
    .quem-somos-hero::after {
        width: 300px;
        height: 300px;
        left: -25%;
    }
    
    .quem-somos-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .quem-somos-hero .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .quem-somos-hero {
        padding: 50px 0 35px;
    }
    
    .quem-somos-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .quem-somos-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quem-somos-hero .hero-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Seções Gerais da Página Quem Somos */
.nossa-historia,
.nossa-missao,
.numeros-empresa,
.nossa-equipe,
.quem-somos-diferenciais {
    padding: 60px 0;
}

.nossa-historia {
    background: white;
}

.nossa-missao {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.numeros-empresa {
    background: var(--primary-blue);
    color: white;
}

.nossa-equipe {
    background: white;
}

.quem-somos-diferenciais {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Headers das Seções */
.nossa-historia .section-header,
.nossa-missao .section-header,
.numeros-empresa .section-header,
.nossa-equipe .section-header,
.quem-somos-diferenciais .section-header {
    margin-bottom: 50px;
}

.nossa-historia .section-title,
.nossa-missao .section-title,
.nossa-equipe .section-title,
.quem-somos-diferenciais .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.numeros-empresa .section-title {
    color: white;
}

.nossa-historia .section-subtitle,
.nossa-missao .section-subtitle,
.nossa-equipe .section-subtitle,
.quem-somos-diferenciais .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.numeros-empresa .section-subtitle {
    color: rgba(255,255,255,0.9);
}

/* Nossa História */
.historia-content {
    padding-right: 30px;
}

.historia-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.historia-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Cards de Missão */
.nossa-missao .missao-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.nossa-missao .missao-card:hover {
    transform: translateY(-10px);
}

.nossa-missao .missao-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.nossa-missao .missao-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.nossa-missao .missao-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Números da Empresa */
.numeros-empresa .row {
    display: flex;
    justify-content: center !important;
    align-items: center;
}

.numero-card {
    text-align: center;
    padding: 30px 20px;
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
}

.numero-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.numero-value {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.numero-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Equipe */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-role {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* Diferenciais */
.quem-somos-diferenciais .diferencial-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.quem-somos-diferenciais .diferencial-item:hover {
    transform: translateY(-5px);
}

.quem-somos-diferenciais .diferencial-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-right: 20px;
    min-width: 60px;
}

.quem-somos-diferenciais .diferencial-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.quem-somos-diferenciais .diferencial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .quem-somos-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .nossa-historia .section-title,
    .nossa-missao .section-title,
    .nossa-equipe .section-title,
    .quem-somos-diferenciais .section-title {
        font-size: 2rem;
    }
    
    .historia-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .quem-somos-diferenciais .diferencial-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quem-somos-diferenciais .diferencial-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Seção Localização */
.nossa-localizacao {
    background: white;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
}

.nossa-localizacao .section-header {
    margin-bottom: 0 !important; 
    padding: 40px 15px 0; 
}

.nossa-localizacao .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.nossa-localizacao .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Container do Mapa */
.mapa-container {
    position: relative;
    width: 100%;
    max-width: 100vw; 
}

.mapa-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    width: 100%;
}

.mapa-frame:hover {
    transform: none;
    box-shadow: none;
}

.mapa-frame::before {
    display: none;
}

.mapa-frame iframe {
    width: 100%;
    height: 600px; 
    border: none;
    border-radius: 0;
    display: block;
    max-width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .nossa-localizacao .section-header {
        padding: 30px 15px 15px;
    }
    
    .nossa-localizacao .section-title {
        font-size: 2rem;
    }
    
    .mapa-frame iframe {
        height: 450px; 
    }
}

@media (max-width: 576px) {
    .nossa-localizacao .section-header {
        padding: 25px 15px 10px;
    }
    
    .mapa-frame iframe {
        height: 400px; 
    }
}

/* Fale Conosco - Hero */
.contact-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #004AAD 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}
.contact-hero .container {
    position: relative;
    z-index: 2;
}
.contact-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}
.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}
/* Conteúdo do Contato */
.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}
/* Formulário */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.contact-form-wrapper .form-title {
    color: #004AAD;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}
.contact-form .form-group {
    margin-bottom: 25px;
}
.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}
.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}
.contact-form .form-control:focus {
    border-color: #004AAD;
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
}
.btn-contact {
    background: #004AAD;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    color: white;
}
.btn-contact:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
}
/* Informações de Contato */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}
.contact-info .info-title {
    color: #004AAD;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.info-item:hover {
    background: #f8f9fa;
}
.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.info-icon i {
    color: #004AAD !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
}
.info-content h4 {
    color: #004AAD;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.info-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}
/* WhatsApp */
.whatsapp-contact {
    margin-top: 30px;
    text-align: center;
}
.btn-whatsapp {
    background: #25D366;
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}
/* Responsividade */
@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0 30px;
    }
    
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-info {
        padding: 30px;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 15px;
    }
    
    .info-content {
        text-align: center !important;
        width: 100%;
    }
    
    .info-content h4 {
        text-align: center !important;
        margin-bottom: 8px;
    }
    
    .info-content p {
        text-align: center !important;
        margin: 0 auto;
    }
    
    .contact-form .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .contact-form .row .col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 575px) {
    .contact-form .col-md-6 {
        margin-bottom: 0 !important;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px !important;
    }
    
    .info-content {
        text-align: center !important;
    }
    
    .info-content h4,
    .info-content p {
        text-align: center !important;
    }
}

/*Login Admin*/
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.login-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.login-header p {
    color: #666;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background: var(--accent-blue);
}

.alert {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo h2 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.5rem;
}

/* Dashboard Admin */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: var(--light-gray);
}
/* Sidebar */
.admin-sidebar {
    width: 260px;
    background: var(--primary-blue);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}
.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--accent-blue);
    text-align: center;
}
.sidebar-header h2 {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}
.sidebar-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}
.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-section {
    padding: 1rem 1.5rem 0.5rem;
}
.section-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.sidebar-nav a:hover {
    background: var(--accent-blue);
    color: var(--white);
    border-left-color: var(--white);
}
.sidebar-nav a.active {
    background: var(--accent-blue);
    color: var(--white);
    border-left-color: var(--white);
}
.sidebar-nav a i {
    width: 20px;
    margin-right: 0.75rem;
    text-align: center;
}
/* Main Content */
.admin-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Header */
.admin-header {
    background: var(--primary-blue) !important;
    color: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}
.sidebar-toggle:hover {
    background: var(--accent-blue);
}
.admin-header h1 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.user-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}
.btn-logout {
    background: var(--danger-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-logout:hover {
    background: #c82333;
    border-color: var(--white);
}
/* Dashboard Content */
.dashboard-content {
    padding: 2rem;
    flex: 1;
}
.welcome-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.welcome-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    background: var(--primary-blue);
}
.stat-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-blue);
    font-size: 1rem;
}
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: var(--primary-blue);
}
.stat-content small {
    color: var(--text-gray);
}
/* Quick Actions */
.quick-actions {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.quick-actions h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    min-height: 100px;
}
.action-card:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}
.action-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
/* Footer */
.admin-footer {
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    font-size: 0.9rem;
}
.admin-footer p {
    margin: 0;
    opacity: 0.9;
}
/* Responsivo */
@media (max-width: 768px) {
    .admin-sidebar {
        margin-left: -260px;
        transition: margin-left 0.3s ease;
        z-index: 1500;
    }
    
    .admin-sidebar.mobile-open {
        margin-left: 0;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .admin-header {
        padding: 1rem !important;
    }
    
    .admin-header h1 {
        font-size: 1.2rem;
    }
    
    .user-name {
        display: none; /* Esconde o nome no mobile para economizar espaço */
    }
    
    .dashboard-content {
        padding: 1rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem !important;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .action-card {
        padding: 1rem !important;
        min-height: 80px;
    }
    
    .action-card i {
        font-size: 1.5rem;
    }
    
    .welcome-card {
        padding: 1.5rem !important;
    }
    
    .quick-actions {
        padding: 1.5rem !important;
    }
}
/* Overlay para mobile quando sidebar está aberta */
@media (max-width: 768px) {
    .admin-sidebar.mobile-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 260px;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-header {
        padding: 0.75rem !important;
    }
    
    .sidebar-toggle {
        padding: 0.25rem !important;
    }
    
    .btn-logout {
        padding: 0.375rem 0.75rem !important;
        font-size: 0.8rem;
    }
    
    .dashboard-content {
        padding: 0.75rem !important;
    }
    
    .welcome-card h2 {
        font-size: 1.3rem;
    }
    
    .action-card span {
        font-size: 0.9rem;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .actions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.admin-sidebar {
    transition: margin-left 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-toggle {
    cursor: pointer;
    z-index: 1600;
    position: relative;
}

@media (max-width: 768px) {
    .sidebar-toggle {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }
    
    .sidebar-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

@media (min-width: 769px) {
    .sidebar-toggle {
        display: none !important;
    }
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Administração */

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-header h2 {
    color: var(--primary-blue);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-danger, .btn-sm {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-blue);
}

.btn-secondary {
    background: var(--text-gray);
    color: var(--white);
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: var(--danger-red);
    color: var(--white);
}

.btn-danger:hover {
    background: #c82333;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

/* Content Card */
.content-card, .form-card, .info-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-card {
    padding: 0;
    overflow: hidden;
}

.form-card, .info-card {
    padding: 2rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.admin-table th {
    background: var(--light-gray);
    color: var(--primary-blue);
    font-weight: 600;
    position: sticky;
    top: 0;
}

.admin-table tr:hover {
    background: rgba(0, 74, 173, 0.05);
}

.user-info-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.current-user {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.8rem;
}

.text-muted {
    color: var(--text-gray);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-gray);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-gray);
    margin-bottom: 1rem;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

/* Forms */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-help {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Info Card */
.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    padding-left: 1.5rem;
}

.info-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.info-card li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        min-width: auto;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .admin-table {
        font-size: 0.8rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Badges e Status */
.admin-badge {
    background: var(--warning-orange);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.protected-user {
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.user-info-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action buttons melhoradas */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Catálogos Admin*/
.catalog-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.catalog-info i {
    color: var(--danger-red);
    font-size: 1.1rem;
}

.catalog-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.file-size {
    background: var(--light-gray);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.download-count {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--success-green);
    font-weight: 600;
}

.btn-info {
    background: var(--info-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-info:hover {
    background: #117a8b;
    color: var(--white);
}

/* Filtros */
.filters-section {
    margin-bottom: 1.5rem;
}

.filters-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filters-form {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
}

/* Resultados */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.results-count {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-control-sm {
    padding: 0.4rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Filtros com espaçamento correto */
.filters-card {
    margin-bottom: 1.5rem;
}

.filters-section {
    padding: 0;
}

.filters-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.filters-form {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.5rem;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.results-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.results-count {
    color: var(--text-dark);
    font-size: 1rem;
}

.results-range {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.filter-applied {
    color: var(--primary-blue);
}

.form-control-sm {
    padding: 0.4rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Tabela simplificada */
.admin-table th:first-child {
    width: 80px;
}

.id-column {
    font-weight: 600;
    color: var(--text-gray);
}

/* Produtos Admin */
.product-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-gray);
}

.product-thumb-placeholder {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    border: 2px solid var(--border-gray);
    font-size: 1.2rem;
}

.product-name {
    color: var(--primary-blue);
    font-size: 1rem;
    height: 90px;
}

.category-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

/* Paginação */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gray);
}

.pagination-info {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pagination-info strong {
    color: var(--primary-blue);
}

.pagination-controls {
    display: flex;
    gap: 0.25rem;
}

.pagination-btn {
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-gray);
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    min-width: 40px;
    text-align: center;
    font-weight: 500;
}

.pagination-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-actions {
        justify-content: stretch;
    }
    
    .filter-actions .btn-primary,
    .filter-actions .btn-secondary {
        flex: 1;
    }
    
    .results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .pagination-wrapper {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .product-info {
        gap: 0.75rem;
    }
    
    .product-thumb,
    .product-thumb-placeholder {
        width: 50px;
        height: 50px;
    }
}

