/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

/* =========================================================
   INSCRIÇÕES ABERTAS — HOME
   ========================================================= */

.stbg-inscricoes-home {
    width: 100%;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.stbg-inscricoes-home-cabecalho {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.stbg-inscricoes-home-sobretitulo {
    display: block;
    margin-bottom: 8px;

    color: #8f1519;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.stbg-inscricoes-home-cabecalho h2 {
    margin: 0;
    color: #202020;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
}

.stbg-inscricoes-home-cabecalho p {
    margin: 16px auto 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   LISTA
   ========================================================= */

.stbg-inscricoes-home-lista {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   CARD
   ========================================================= */

.stbg-inscricao-home-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.stbg-inscricao-home-card:hover {
    transform: translateY(-5px);
    border-color: #d2d2d2;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   IMAGEM
   ========================================================= */

.stbg-inscricao-home-imagem {
    position: relative;
    display: block;
    overflow: hidden;

    aspect-ratio: 16 / 10;

    background: #eeeeee;
}

.stbg-inscricao-home-imagem img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.stbg-inscricao-home-card:hover
.stbg-inscricao-home-imagem img {
    transform: scale(1.035);
}


/* =========================================================
   SELO
   ========================================================= */

.stbg-inscricao-home-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background: #8f1519;
    border-radius: 5px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1;
    text-transform: uppercase;
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.stbg-inscricao-home-conteudo {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.stbg-inscricao-home-conteudo h3 {
    margin: 0 0 24px;
    color: #292929;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   BOTÃO
   ========================================================= */

.stbg-inscricao-home-botao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 12px 17px;
    background: #292929;
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.stbg-inscricao-home-botao:visited {
    color: #ffffff;
}

.stbg-inscricao-home-botao:hover {
    background: #8f1519;
    color: #ffffff;
}

.stbg-inscricao-home-botao i {
    flex-shrink: 0;
    font-size: 13px;

    transition: transform 0.2s ease;
}

.stbg-inscricao-home-botao:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .stbg-inscricoes-home-lista {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stbg-inscricoes-home-cabecalho {
        margin-bottom: 36px;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    .stbg-inscricoes-home-cabecalho {
        margin-bottom: 28px;
        text-align: left;
    }

    .stbg-inscricoes-home-cabecalho h2 {
        font-size: 32px;
    }

    .stbg-inscricoes-home-cabecalho p {
        font-size: 15px;
    }

    .stbg-inscricoes-home-lista {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stbg-inscricao-home-conteudo {
        padding: 20px;
    }

    .stbg-inscricao-home-conteudo h3 {
        margin-bottom: 20px;
        font-size: 19px;
    }

    .stbg-inscricao-home-status {
        left: 14px;
        bottom: 14px;
    }
}