/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    background-color: #1a1a1a;
    background-image: url('imagens/banner01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    background-attachment: scroll;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(254, 240, 55, 0.2) 50%, rgba(15, 15, 15, 0.4) 100%);
    z-index: 2;
}

/* Removido - usando apenas background principal */

/* Container removido - estrutura simplificada */

/* Slide removido - estrutura simplificada */

.slide.active {
    opacity: 1;
}

/* Slides visíveis - regra problemática removida */

/* Fallback para navegadores que não suportam background-attachment: fixed */
@supports not (background-attachment: fixed) {
    .slide-bg {
        background-attachment: scroll;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
    }
}

/* slide-bg removido - background aplicado diretamente no hero-slideshow */

.hero-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(254, 240, 55, 0.6) 50%, rgba(15, 15, 15, 0.9) 100%);
    z-index: 2;
}

/* Background removido - agora aplicado diretamente no .hero-slideshow */

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    padding: 0 var(--spacing-md);
    z-index: 15;
    width: 100%;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInDown 1s ease;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease 0.2s both;
}

.slide-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease 0.4s both;
}

.slide-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease 0.6s both;
}

/* ===== CONTROLES DO SLIDESHOW ===== */
.slide-dots {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
}

.slide-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slide-btn.prev {
    left: var(--spacing-lg);
}

.slide-btn.next {
    right: var(--spacing-lg);
}

/* ===== BANNER PARALLAX ===== */
.banner-parallax {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../imagens/camuflado.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-image {
    display: none;
}

/* Fallback para navegadores que não suportam background-attachment: fixed */
@supports not (background-attachment: fixed) {
    .parallax-bg {
        background-attachment: scroll;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }
}

.parallax-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.floating-skull {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    animation: floatSkull 4s ease-in-out infinite;
}

.skull-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(254, 240, 55, 0.5));
}


/* Animações do banner parallax */
@keyframes floatSkull {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

/* ===== SEÇÃO QUEM SOMOS ===== */
.quem-somos {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.quem-somos-content {
    max-width: 100%;
    margin: 0 auto;
}

.quem-somos-text {
    text-align: left;
    line-height: 1.4;
}

.quem-somos-text p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.quem-somos-text p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* ===== SEÇÃO INSTITUCIONAL ===== */
.institucional {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.institucional-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.institucional-card {
    background: var(--bg-dark);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--bg-lighter);
}

.institucional-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2rem;
    color: #000000;
    overflow: hidden;
}

.card-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--spacing-xs);
}

.institucional-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.institucional-card p {
    color: var(--text-gray);
    line-height: 1.4;
    text-align: left;
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.depoimentos {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-dark);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.depoimento-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--bg-lighter);
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.depoimento-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.depoimento-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.depoimento-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.depoimento-titulo h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.depoimento-content {
    margin-bottom: var(--spacing-lg);
}

.depoimento-content p {
    color: var(--text-gray);
    line-height: 1.4;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

.depoimento-autor {
    border-top: 1px solid var(--bg-lighter);
    padding-top: var(--spacing-md);
}

.autor-info h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
}

.autor-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* ===== SEÇÃO DE CONTATO ===== */
.contato {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-dark);
}

.contato-logo {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.logo-contato {
    width: 150px;
    height: auto;
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.logo-contato:hover {
    opacity: 1;
    transform: scale(1.05);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--bg-lighter);
    transition: all var(--transition-normal);
}

.contato-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000000;
    flex-shrink: 0;
}

.contato-icon i {
    color: #000000 !important;
    font-size: 1.2rem;
    display: block;
}

.contato-detalhes h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
}

.contato-detalhes p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.contato-formulario {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--bg-lighter);
}

.contato-formulario h3 {
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    font-size: 1.3rem;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-md);
    border: 1px solid var(--bg-lighter);
    border-radius: var(--border-radius);
    background: var(--bg-dark);
    color: var(--text-white);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(254, 240, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contato-mapa {
    margin-top: var(--spacing-xxl);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

.contato-mapa h3 {
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    font-size: 1.3rem;
    text-align: center;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-lg);
}

.mapa-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mapa-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ===== SEÇÃO PRODUTOS EM DESTAQUE ===== */
.produtos-destaque {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-dark);
}

.categoria-produtos {
    margin-bottom: var(--spacing-xxl);
}

.categoria-produtos:last-child {
    margin-bottom: 0;
}

.categoria-titulo {
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.categoria-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    justify-items: center;
}

.produto-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--bg-lighter);
    max-width: 280px;
    width: 100%;
}



.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.produto-imagem {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.05);
}

.produto-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--primary-color);
    color: #000000;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.produto-info {
    padding: var(--spacing-lg);
}

.produto-info h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.produto-descricao {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.produto-preco {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.preco-atual {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.preco-antigo {
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: line-through;
}

.produto-acoes {
    display: flex;
    gap: var(--spacing-sm);
}

.produto-acoes .btn {
    flex: 1;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
}

.produto-acoes .btn-primary {
    flex: 0 0 auto;
    width: 50px;
    padding: var(--spacing-sm);
}

.produtos-ver-mais {
    text-align: center;
    margin-top: var(--spacing-xxl);
}

/* ===== CHAMADA PARA PRODUTOS ===== */
.chamada-produtos {
    padding: var(--spacing-xxl) 0;
    background: var(--gradient-dark);
    text-align: center;
}

.chamada-content h2 {
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.chamada-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SEÇÃO DE VÍDEOS ===== */
.videos-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.videos-carousel {
    display: flex;
    gap: var(--spacing-xl);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: var(--spacing-lg) 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.videos-carousel::-webkit-scrollbar {
    display: none;
}

.video-item {
    min-width: 350px;
    background: var(--bg-dark);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-item h3 {
    color: var(--text-white);
    padding: var(--spacing-md);
    margin: 0;
    font-size: 1.2rem;
}

.video-item p {
    color: var(--text-gray);
    padding: 0 var(--spacing-md) var(--spacing-md);
    margin: 0;
}

/* ===== CONTROLES DO CARROSSEL ===== */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.carousel-btn {
    background: var(--primary-color);
    color: #000000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ===== ANIMAÇÕES ESPECÍFICAS ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== EFEITOS DE HOVER IMPRESSIONANTES ===== */

/* Hover Effects para Cards de Produtos */
.produto-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 240, 55, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.produto-card:hover::before {
    left: 100%;
}

.produto-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(254, 240, 55, 0.3);
}

.produto-card:hover .produto-imagem {
    transform: scale(1.1);
}

.produto-imagem {
    transition: transform 0.4s ease;
}

/* Hover Effects para Botões */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::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:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fef037 0%, #f4d03f 100%);
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fef037;
    color: #fef037;
}

/* Hover Effects para Cards Institucionais */
.institucional-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.institucional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 240, 55, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.institucional-card:hover::before {
    opacity: 1;
}

.institucional-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(254, 240, 55, 0.2);
}

.institucional-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon {
    transition: all 0.3s ease;
}

/* Hover Effects para Cards de Depoimentos */
.depoimento-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.depoimento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(254, 240, 55, 0.05) 0%, rgba(26, 26, 26, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.depoimento-card:hover::after {
    opacity: 1;
}

.depoimento-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(254, 240, 55, 0.1);
}

.depoimento-card:hover .depoimento-foto img {
    transform: scale(1.1);
}

.depoimento-foto img {
    transition: transform 0.3s ease;
}

/* Hover Effects para Filtros */
.filtro-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filtro-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 240, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.filtro-btn:hover::before {
    left: 100%;
}

.filtro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.filtro-btn.active {
    background: linear-gradient(135deg, #fef037 0%, #f4d03f 100%);
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(254, 240, 55, 0.3);
}

/* Hover Effects para Vídeos */
.video-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 240, 55, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-item:hover::before {
    opacity: 1;
}

.video-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(254, 240, 55, 0.2);
}

.video-item:hover .video-container {
    transform: scale(1.05);
}

.video-container {
    transition: transform 0.3s ease;
}

/* Hover Effects para WhatsApp Float */
.whatsapp-float {
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Hover Effects para Links do Footer */
.footer-content a {
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-content a:hover::after {
    width: 100%;
}

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

/* ===== ANIMAÇÕES DE LOADING E TRANSIÇÕES ===== */

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 150px;
    height: auto;
    max-height: 150px;
    margin-bottom: 30px;
    animation: pulseLogo 2s ease-in-out infinite;
    object-fit: contain;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(254, 240, 55, 0.3);
    border-top: 3px solid #fef037;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: #fef037;
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Transições Suaves para Seções */
section {
    transition: all 0.3s ease;
}

/* Animações de Entrada para Elementos */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Animações de Destaque */
.highlight {
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(254, 240, 55, 0.2);
        box-shadow: 0 0 20px rgba(254, 240, 55, 0.3);
    }
    100% {
        background-color: transparent;
    }
}

/* Animações de Pulsação */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

/* Animações de Rotação */
.rotate {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animações de Bounce */
.bounce {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Transições para Imagens */
img {
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* Transições para Texto */
h1, h2, h3, h4, h5, h6 {
    transition: all 0.3s ease;
}

p {
    transition: all 0.3s ease;
}

/* Animações de Progresso */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(254, 240, 55, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fef037 0%, #f4d03f 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Animações de Contador */
.counter {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #fef037;
    font-size: 2rem;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animações de Partículas */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fef037;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
}

/* Animações de Glitch */
.glitch {
    position: relative;
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

/* ===== EFEITOS PARALLAX AVANÇADOS ===== */

/* Parallax para Seções */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../imagens/ambiente01.jfif');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.parallax-bg-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../imagens/ambiente02.jfif');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.parallax-bg-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../imagens/ambiente03.jfif');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Parallax Overlay */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(254, 240, 55, 0.1) 50%, rgba(15, 15, 15, 0.8) 100%);
    z-index: 1;
}

/* Parallax Content */
.parallax-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/* Parallax para Cards */
.parallax-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.parallax-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(254, 240, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.parallax-card:hover::before {
    opacity: 1;
    animation: parallaxShimmer 2s ease-in-out;
}

@keyframes parallaxShimmer {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* Parallax para Texto */
.parallax-text {
    transform: translateZ(0);
    will-change: transform;
}

/* Parallax para Imagens */
.parallax-image {
    transform: translateZ(0);
    will-change: transform;
}

/* Parallax para Botões */
.parallax-btn {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.parallax-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.parallax-btn:hover::after {
    left: 100%;
}

/* Parallax para Seções com Scroll */
.scroll-parallax {
    position: relative;
    overflow: hidden;
}

.scroll-parallax .parallax-element {
    position: absolute;
    will-change: transform;
}

/* Parallax para Backgrounds Múltiplos */
.multi-parallax {
    position: relative;
    overflow: hidden;
}

.multi-parallax .parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.multi-parallax .parallax-layer:nth-child(1) {
    z-index: 1;
}

.multi-parallax .parallax-layer:nth-child(2) {
    z-index: 2;
}

.multi-parallax .parallax-layer:nth-child(3) {
    z-index: 3;
}

/* Parallax para Cards com Profundidade */
.depth-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.depth-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.depth-card .card-front {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.depth-card .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translateZ(-20px);
}

/* Parallax para Seções com Movimento */
.moving-parallax {
    position: relative;
    overflow: hidden;
}

.moving-parallax .moving-element {
    position: absolute;
    will-change: transform;
    animation: parallaxMove 20s linear infinite;
}

@keyframes parallaxMove {
    0% {
        transform: translateX(-100%) translateY(0);
    }
    100% {
        transform: translateX(100%) translateY(-50px);
    }
}

/* Parallax para Texto com Efeito 3D */
.text-3d {
    transform: perspective(1000px) rotateX(15deg);
    transform-style: preserve-3d;
}

.text-3d:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(10deg);
}

/* Parallax para Imagens com Zoom */
.zoom-parallax {
    position: relative;
    overflow: hidden;
}

.zoom-parallax img {
    transition: transform 0.6s ease;
    will-change: transform;
}

.zoom-parallax:hover img {
    transform: scale(1.1);
}

/* Parallax para Seções com Rotação */
.rotate-parallax {
    position: relative;
    overflow: hidden;
}

.rotate-parallax .rotate-element {
    position: absolute;
    will-change: transform;
    animation: parallaxRotate 30s linear infinite;
}

@keyframes parallaxRotate {
    0% {
        transform: rotate(0deg) translateX(0);
    }
    100% {
        transform: rotate(360deg) translateX(100px);
    }
}

/* Parallax para Cards com Elevação */
.elevated-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.elevated-card:hover {
    transform: translateY(-20px) rotateX(10deg);
}

.elevated-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 240, 55, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
    transform: translateZ(-10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elevated-card:hover::before {
    opacity: 1;
}

/* Parallax para Seções com Ondas */
.wave-parallax {
    position: relative;
    overflow: hidden;
}

.wave-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(254, 240, 55, 0.1), transparent);
    animation: waveParallax 4s ease-in-out infinite;
}

@keyframes waveParallax {
    0%, 100% {
        transform: translateX(-100%) skewX(-15deg);
    }
    50% {
        transform: translateX(100%) skewX(15deg);
    }
}

/* Parallax para Seções com Partículas */
.particle-parallax {
    position: relative;
    overflow: hidden;
}

.particle-parallax .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fef037;
    border-radius: 50%;
    animation: particleParallax 6s linear infinite;
}

@keyframes particleParallax {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* ===== MICRO-INTERAÇÕES IMPRESSIONANTES ===== */

/* Micro-interações para Botões */
.btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Micro-interações para Cards */
.card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:active {
    transform: scale(0.98);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(254, 240, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

/* Micro-interações para Links */
a {
    position: relative;
    transition: all 0.3s ease;
}

a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fef037;
    transition: width 0.3s ease;
}

a:hover::before {
    width: 100%;
}

/* Micro-interações para Inputs */
input, textarea, select {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

input:focus, textarea:focus, select:focus {
    border-color: #fef037;
    box-shadow: 0 0 10px rgba(254, 240, 55, 0.3);
    transform: scale(1.02);
}

/* Micro-interações para Imagens */
img {
    transition: all 0.3s ease;
    cursor: pointer;
}

img:active {
    transform: scale(0.95);
}

/* Micro-interações para Ícones */
.icon {
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.icon:active {
    transform: scale(0.9) rotate(-5deg);
}

/* Micro-interações para Listas */
li {
    transition: all 0.3s ease;
    cursor: pointer;
}

li:hover {
    transform: translateX(10px);
    color: #fef037;
}

/* Micro-interações para Tabelas */
td {
    transition: all 0.3s ease;
    cursor: pointer;
}

td:hover {
    background: rgba(254, 240, 55, 0.1);
    transform: scale(1.02);
}

/* Micro-interações para Formulários */
.form-group {
    position: relative;
    transition: all 0.3s ease;
}

.form-group:focus-within {
    transform: translateY(-2px);
}

.form-group:focus-within label {
    color: #fef037;
    transform: scale(1.05);
}

/* Micro-interações para Navegação */
.nav-item {
    position: relative;
    transition: all 0.3s ease;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fef037;
    transition: width 0.3s ease;
}

.nav-item:hover::before {
    width: 100%;
}

.nav-item:active {
    transform: scale(0.95);
}

/* Micro-interações para Modais */
.modal {
    transition: all 0.3s ease;
}

.modal.show {
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Micro-interações para Tooltips */
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fef037;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Micro-interações para Progress Bars */
.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Micro-interações para Accordions */
.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateX(5px);
}

.accordion-item.active {
    transform: translateX(10px);
}

/* Micro-interações para Tabs */
.tab {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #fef037;
    transition: width 0.3s ease;
}

.tab.active::before {
    width: 100%;
}

.tab:hover::before {
    width: 50%;
}

/* Micro-interações para Carrosséis */
.carousel-item {
    transition: all 0.5s ease;
}

.carousel-item.active {
    transform: scale(1.05);
}

/* Micro-interações para Dropdowns */
.dropdown {
    position: relative;
    transition: all 0.3s ease;
}

.dropdown:hover {
    transform: translateY(-2px);
}

.dropdown-menu {
    transition: all 0.3s ease;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
}

.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Micro-interações para Checkboxes */
.checkbox {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox:hover {
    transform: scale(1.1);
}

.checkbox:active {
    transform: scale(0.9);
}

/* Micro-interações para Radio Buttons */
.radio {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio:hover {
    transform: scale(1.1);
}

.radio:active {
    transform: scale(0.9);
}

/* Micro-interações para Sliders */
.slider {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider:hover {
    transform: scale(1.05);
}

.slider:active {
    transform: scale(0.95);
}

/* Micro-interações para Toggles */
.toggle {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle:hover {
    transform: scale(1.05);
}

.toggle:active {
    transform: scale(0.95);
}

/* Micro-interações para Badges */
.badge {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    transform: scale(1.1) rotate(5deg);
}

.badge:active {
    transform: scale(0.9) rotate(-5deg);
}

/* Micro-interações para Alerts */
.alert {
    position: relative;
    transition: all 0.3s ease;
}

.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Micro-interações para Cards de Produto */
.produto-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.produto-card:active {
    transform: scale(0.98);
}

.produto-card .produto-imagem {
    transition: all 0.4s ease;
}

.produto-card:hover .produto-imagem {
    transform: scale(1.05);
}

/* Micro-interações para Botões de Filtro */
.filtro-btn {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.filtro-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(254, 240, 55, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filtro-btn:hover::before {
    opacity: 1;
}

/* Micro-interações para Cards de Depoimento */
.depoimento-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.depoimento-card:active {
    transform: scale(0.98);
}

.depoimento-card .depoimento-foto img {
    transition: all 0.3s ease;
}

.depoimento-card:hover .depoimento-foto img {
    transform: scale(1.1);
}

/* Micro-interações para Cards Institucionais */
.institucional-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.institucional-card:active {
    transform: scale(0.98);
}

.institucional-card .card-icon {
    transition: all 0.3s ease;
}

.institucional-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Micro-interações para Vídeos */
.video-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.video-item:active {
    transform: scale(0.98);
}

.video-item .video-container {
    transition: all 0.3s ease;
}

.video-item:hover .video-container {
    transform: scale(1.05);
}

/* Micro-interações para WhatsApp Float */
.whatsapp-float {
    position: fixed;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:active {
    transform: scale(0.9);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Micro-interações para Footer Links */
.footer-content a {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-content a:active {
    transform: scale(0.95);
}

.footer-content a:hover {
    transform: translateX(5px);
}

/* ===== FAIXA AMARELA QRF ===== */
.faixa-amarela-qrf {
    background: #fef037;
    padding: 40px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.faixa-amarela-qrf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.qrf-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.qrf-titulo {
    font-family: 'OMBUDSMAN', 'Orbitron', monospace !important;
    font-size: 5rem;
    font-weight: normal;
    color: #000;
    margin: 0;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: qrfPulse 2s ease-in-out infinite;
}

.qrf-subtitulo {
    font-family: 'OMBUDSMAN', 'Orbitron', monospace !important;
    font-size: 2.4rem;
    font-weight: normal;
    color: #000;
    margin: 10px 0 0 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes qrfPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsividade para faixa QRF */
@media (max-width: 768px) {
    .qrf-titulo {
        font-size: 3.6rem;
        letter-spacing: 4px;
    }
    
    .qrf-subtitulo {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .faixa-amarela-qrf {
        padding: 30px 0;
    }
}

/* ===== UNIFICAÇÃO DE CORES AMARELAS ===== */
/* Alterar todas as cores amarelas para #fef037 */

/* Botões primários */
.btn-primary {
    background: linear-gradient(135deg, #fef037 0%, #f4d03f 100%);
    color: #000;
    border: 2px solid #fef037;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #fef037 100%);
    color: #000;
    box-shadow: 0 10px 25px rgba(254, 240, 55, 0.4);
}

/* Botões secundários */
.btn-secondary {
    border: 2px solid #fef037;
    color: #fef037;
}

.btn-secondary:hover {
    background: #fef037;
    color: #000;
}

/* Filtros ativos */
.filtro-btn.active {
    background: linear-gradient(135deg, #fef037 0%, #f4d03f 100%);
    color: #000;
    box-shadow: 0 5px 15px rgba(254, 240, 55, 0.3);
}

/* Hover effects com nova cor */
.produto-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(254, 240, 55, 0.3);
}

.institucional-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(254, 240, 55, 0.2);
}

.depoimento-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(254, 240, 55, 0.1);
}

.video-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(254, 240, 55, 0.2);
}

/* Links do footer */
.footer-content a::after {
    background: #fef037;
}

.footer-content a:hover {
    color: #fef037;
}

/* Partículas */
.particle {
    background: #fef037;
}

.star {
    background: #fef037;
}

/* Progress bars */
.progress-fill {
    background: linear-gradient(90deg, #fef037 0%, #f4d03f 100%);
}

/* Loading spinner */
.loading-spinner {
    border-top: 3px solid #fef037;
}

.loading-text {
    color: #fef037;
}

/* WhatsApp float hover */
.whatsapp-float:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* ===== FONTE OMBUDSMAN MILITAR ===== */
@font-face {
    font-family: 'OMBUDSMAN';
    src: url('../fonts/OmbudsmanStencil.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Fallback removido - apenas QRF usa OMBUDSMAN */

/* Aplicar fonte OMBUDSMAN em elementos específicos */
.ombudsman-font {
    font-family: 'OMBUDSMAN', 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Títulos principais voltam ao padrão */
.hero-slideshow h1,
.hero-slideshow h2,
.section-header h2,
.chamada-content h2 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Botões voltam ao padrão */
.btn {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Filtros voltam ao padrão */
.filtro-btn {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Cards institucionais voltam ao padrão */
.institucional-card h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Depoimentos voltam ao padrão */
.depoimento-titulo h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer volta ao padrão */
.footer-content h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* WhatsApp float volta ao padrão */
.whatsapp-float {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== FALLBACK REMOVIDO ===== */
/* Apenas QRF usa OMBUDSMAN, resto usa Orbitron (padrão) */

/* ===== EFEITOS DE PARTÍCULAS E ELEMENTOS FLUTUANTES ===== */

/* Partículas Flutuantes */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fef037;
    border-radius: 50%;
    animation: floatParticle 6s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Elementos Flutuantes */
.floating-element {
    position: absolute;
    animation: floatElement 4s ease-in-out infinite;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Estrelas Cintilantes */
.star {
    position: absolute;
    width: 1px;
    height: 1px;
    background: #fef037;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 46vh !important; /* Aumentado 15% de 40vh para 46vh */
    }
    
    .banner-parallax {
        height: 500px; /* Altura fixa para tablet */
    }
    
    .parallax-bg {
        background-attachment: scroll; /* Desabilita parallax em mobile para performance */
    }
    
    
    .skull-image {
        width: 150px;
    }
    
    
    .quem-somos-text p {
        font-size: 1rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .slide-bg {
        background-position: center center;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slide-btn.prev {
        left: var(--spacing-sm);
    }

    .slide-btn.next {
        right: var(--spacing-sm);
    }

    .institucional-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contato-mapa {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .mapa-container {
        height: 400px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .categoria-titulo {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-lg);
    }

    .chamada-content h2 {
        font-size: 2rem;
    }

    .videos-carousel {
        gap: var(--spacing-lg);
    }

    .video-item {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-slideshow {
        height: 34.5vh !important; /* Aumentado 15% de 30vh para 34.5vh */
    }
    
    .banner-parallax {
        height: 400px; /* Altura fixa para mobile */
    }
    
    .parallax-bg {
        background-attachment: scroll; /* Desabilita parallax em mobile para performance */
    }
    
    
    .skull-image {
        width: 100px;
    }
    
    
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .institucional-card,
    .membro-card {
        padding: var(--spacing-lg);
    }

    .chamada-content h2 {
        font-size: 1.5rem;
    }

    .video-item {
        min-width: 250px;
    }

    .carousel-controls {
        gap: var(--spacing-sm);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .mapa-container {
        height: 300px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .categoria-titulo {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-md);
    }
    
    .produto-imagem {
        height: 200px;
    }
    
    .logo-contato {
        width: 120px;
    }
    
    .card-logo {
        padding: var(--spacing-sm);
    }
} 

/* ===== FILTROS POR BOTÕES ===== */
.filtros-botoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: auto;
}

.filtro-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--bg-light);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.filtro-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left var(--transition-normal);
    z-index: -1;
}

.filtro-btn:hover::before,
.filtro-btn.active::before {
    left: 0;
}

.filtro-btn:hover,
.filtro-btn.active {
    color: #000000;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filtro-btn i {
    font-size: 1rem;
}

/* ===== GRADE DE PRODUTOS RESPONSIVA ===== */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.produto-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-md);
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.produto-card.hidden {
    display: none;
}

.produto-card.show {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
} 

/* ===== NOTIFICAÇÕES ===== */
.produto-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--primary-color);
    color: #000000;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform var(--transition-normal);
    max-width: 300px;
}

.produto-notification.show {
    transform: translateX(0);
}

.produto-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.produto-notification i {
    font-size: 1.2rem;
    color: #28a745;
}

/* ===== RESPONSIVIDADE DOS FILTROS ===== */
@media (max-width: 1200px) {
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .filtros-botoes {
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        max-width: 100vw;
        overflow-x: auto;
    }
    
    .filtro-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .filtro-btn i {
        font-size: 0.9rem;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .filtros-botoes {
        flex-direction: column;
        align-items: center;
        padding: 0 0.5rem;
        max-width: 100vw;
    }
    
    .filtro-btn {
        width: 200px;
        justify-content: center;
        white-space: nowrap;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .produto-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ===== MODAL DE LANÇAMENTO TRIUNFAL ===== */
.modal-lancamento {
    display: none !important;
    position: fixed !important;
    z-index: 999999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)) !important;
    backdrop-filter: blur(15px) !important;
    animation: modalEntradaTriunfal 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal-lancamento.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 4px solid #ffd700;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 0 0 8px rgba(255, 215, 0, 0.3),
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(255, 215, 0, 0.2);
    animation: modalContentEntrada 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
    transform-origin: center;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: 4px solid #1a1a1a;
    font-size: 1.6rem;
    font-weight: 900;
    cursor: pointer;
    z-index: 100001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 0 0 3px rgba(255, 215, 0, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: botaoPulso 2s infinite;
}

@keyframes botaoPulso {
    0% {
        box-shadow: 
            0 0 0 3px rgba(255, 215, 0, 0.3),
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 6px rgba(255, 215, 0, 0.5),
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(255, 215, 0, 0.5);
    }
    100% {
        box-shadow: 
            0 0 0 3px rgba(255, 215, 0, 0.3),
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.3);
    }
}

.modal-close:hover {
    background: linear-gradient(145deg, #ffed4e, #ffd700);
    color: #000000;
    transform: scale(1.2) rotate(90deg);
    box-shadow: 
        0 0 0 5px rgba(255, 215, 0, 0.5),
        0 12px 35px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.5);
    border-color: #000000;
}

.modal-close:active {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 
        0 0 0 3px rgba(255, 215, 0, 0.7),
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 215, 0, 0.7);
}

.modal-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.modal-image img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.modal-image img:hover {
    transform: scale(1.02);
}

/* Animações triunfais */
@keyframes modalEntradaTriunfal {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
        backdrop-filter: blur(0px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) rotate(2deg);
        backdrop-filter: blur(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        backdrop-filter: blur(15px);
    }
}

@keyframes modalContentEntrada {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-100px) rotate(-15deg);
    }
    60% {
        opacity: 0.9;
        transform: scale(1.1) translateY(10px) rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
} 