/* Estilos para o catálogo PDF com efeito de popup */

.catalog-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.catalog-container.active {
    display: flex;
}

.catalog-wrapper {
    position: relative;
    width: 80%;
    height: 80%;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    overflow: hidden;
}

.catalog-frame {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-frame canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.catalog-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.catalog-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.catalog-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.catalog-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

/* Animação de entrada */
.zoom-in {
    animation: zoomIn 0.5s ease forwards;
}

.catalog-container.active .catalog-wrapper {
    animation: zoomIn 0.5s ease forwards;
}

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

/* Estilos para o botão de abrir o catálogo */
.catalog-section {
    text-align: center;
    margin-top: 50px;
}

.catalog-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Animação de pulso para chamar atenção */
@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 88, 33, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 88, 33, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 88, 33, 0);
    }
}

.catalog-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff5821;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 88, 33, 0.3);
    animation: pulse-btn 2s infinite;
}

.catalog-open-btn i {
    margin-right: 10px;
    font-size: 24px;
}

.catalog-open-btn:hover {
    background-color: #e04a1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 88, 33, 0.4);
}





/* Responsividade */
@media (max-width: 992px) {
    .catalog-wrapper {
        width: 90%;
        height: 70%;
    }
    
    .catalog-title {
        font-size: 20px;
    }
    
    .catalog-open-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .catalog-section h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .catalog-wrapper {
        width: 95%;
        height: 60%;
    }
    
    .catalog-title {
        font-size: 18px;
    }
    
    .catalog-open-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .catalog-open-btn i {
        font-size: 18px;
    }
    
    .catalog-section h3 {
        font-size: 20px;
    }
}