/*
Theme Name: Qualiflex
Theme URI:  https://qualiflex.com.br
Author:     Gastão Esteves
Author URI: https://gastaoesteves.com
Template:   astra
Version:    1.0
License:    GNU General Public License v2 or later
*/		    

/*----- FONTES -----*/
@font-face {
   font-family: bnt_italico;
   src: url(https://apolo.qualiflex.com.br/fontes/bnt_italico.woff);
}

h1, h2 {
	font-family: bnt_italico;
	transform: skewX(-15deg);
	line-height: 1em;
}

/*--------------------------------------------------*/
/*----- PÁGINA DO PRODUTO (single-product.php) -----*/
/*--------------------------------------------------*/

/* BLOCO 1 */
.qf-produto-bloco1 {
    width: 100%;
    padding: 20px 0;
}

/* Container Flex: BLOCO 2 + BLOCO 3 */
.qf-produto-topo-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    box-sizing: border-box;
}

/* BLOCO 2 e BLOCO 3 lado a lado */
.qf-produto-bloco2,
.qf-produto-bloco3 {
    flex: 1 1 50%;
    max-width: 50%;
    box-sizing: border-box;
}

.qf-produto-bloco2 .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 500px;
}


/* BLOCO 3 organizado em coluna */
.qf-produto-bloco3 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Botões lado a lado */
.qf-produto-botoes-arquivos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.qf-botao-ficha,
.qf-botao-ca {
    padding: 10px 16px;
    background-color: #003e66;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.qf-botao-ficha:hover,
.qf-botao-ca:hover {
    opacity: 0.8;
}

/* Responsivo: 100% no mobile */
@media (max-width: 768px) {
    .qf-produto-topo-wrap {
        flex-direction: column;
    }

    .qf-produto-bloco2,
    .qf-produto-bloco3 {
        width: 100%;
    }
}