/*
Theme Name: Sopro de Brasas Child
Theme URI: https://soprodebrasas.com.br
Description: Tema filho do Sopro de Brasas para customizações seguras. Este tema permite adicionar personalizações sem modificar o tema pai, garantindo que suas alterações não sejam perdidas em atualizações futuras.
Author: Sopro de Brasas Team
Author URI: https://soprodebrasas.com.br
Template: sopro-theme
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sopro-theme-child
Tags: child-theme, block-patterns, full-site-editing, education, landing-page

IMPORTANTE:
- Este é um tema CHILD (filho) do tema "Sopro de Brasas"
- NÃO edite o tema pai (sopro-theme) diretamente
- Todas as customizações devem ser feitas NESTE tema child
- Use o arquivo custom.css para adicionar estilos personalizados
*/

/*
====================
ESTILOS CUSTOMIZADOS
====================
Adicione seus estilos personalizados abaixo ou no arquivo assets/css/custom.css
*/

/* Exemplo: Customizar cor do botão primário */
/*
.btn-primary {
    background-color: #your-custom-color;
}
*/

.custom-scroll-wrapper {
    position: relative;
    /* width: calc(100% - 150px) !important; */
    overflow: auto;
}

.home-video-hero-section {
    margin-top: -24px;
    /* Anula a margem padrão do tema */
    position: relative;
    width: 100%;
    height: 600px;
    /* Altura fixa para a seção do hero */
    overflow: hidden;
    z-index: 0;
    justify-content: center;
    display: flex;
    align-items: center;
}

.home-video-hero-section .video-background {
    position: absolute;
    top: 70%;
    left: 50%;
    width: 177.7vh;
    /* 100vh * 16/9 -> Garante que a largura seja suficiente para a altura */
    height: 100vw;
    /* 100vw * 9/16 -> Garante que a altura seja suficiente para a largura */
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.home-video-hero-section .bg-black {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 0px 15px 20px;
}

.header-menu-sopro > div {
    display: flex;
    flex-direction: column;
}

.wp-classic-menu-block>.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-gradient-divider {
    height: 250px;
    /* Altura da área de degradê */
    margin-top: -250px;
    /* Puxa o degradê para cima para sobrepor o vídeo */
    background: linear-gradient(to bottom, transparent 0%, #FFF5E6 100%);
    /* Degradê de transparente para a cor de fundo do conteúdo */
    position: relative;
    z-index: 1;
    /* Garante que o degradê fique acima do vídeo */
    pointer-events: none;
}

.course-list-container {
    padding: 40px 20px;
    background-color: #FFF5E6;
    /* Cor de fundo para o degradê se misturar */
    position: relative;
    z-index: 2;
    /* Garante que o conteúdo fique acima do degradê */
}

/*
====================
SOPRO HOME VIDEO TEMPLATE
Estilos para a página home-video.php
====================
*/

/* ========== CTA Components ========== */
.sopro-cta-center {
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 800px;
}

.sopro-cta-center h1 {
    color: #FFF5E6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.sopro-btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF8A00 0%, #C7652B 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.4);
    border: none;
    cursor: pointer;
}

.sopro-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 138, 0, 0.6);
    color: #fff;
    text-decoration: none;
}

.sopro-btn-primary:active {
    transform: translateY(-1px);
}

/* ========== Access Section ========== */
.sopro-access-section {
    background: linear-gradient(135deg, #4C4A47 0%, #2C2A27 100%);
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
}

.sopro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sopro-access-title {
    color: #FF8A00;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sopro-access-subtitle {
    color: #FFF5E6;
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== Video Section ========== */
.sopro-video-section {
    padding: 60px 20px;
    background-color: #FFF5E6;
}

.sopro-video-frame {
    max-width: 750px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(76, 74, 71, 0.2);
}

.sopro-video-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* ========== Transformation Section ========== */
.sopro-transformation-section {
    background: linear-gradient(to bottom, #FFF5E6 0%, #FFE8CC 100%);
    padding: 80px 20px;
}

.sopro-main-title {
    color: #4C4A47;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sopro-main-subtitle {
    color: #4C4A47;
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.sopro-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sopro-pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(76, 74, 71, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sopro-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 138, 0, 0.2);
    border-color: #FF8A00;
}

.sopro-pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.sopro-pillar-title {
    color: #C7652B;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sopro-pillar-description {
    color: #4C4A47;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========== Benefits Section ========== */
.sopro-benefits-section {
    background: #4C4A47;
    padding: 80px 20px;
}

.sopro-benefits-main-title {
    color: #FFF5E6;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.sopro-highlight {
    color: #FF8A00;
}

.sopro-benefits-subtitle {
    color: #FFF5E6;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
}

.sopro-benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 968px) {
    .sopro-benefits-layout {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }
}

.sopro-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sopro-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 245, 230, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sopro-benefit-item:hover {
    background: rgba(255, 245, 230, 0.1);
    transform: translateX(5px);
}

.sopro-benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.sopro-benefit-content {
    color: #FFF5E6;
    font-size: 1.05rem;
    line-height: 1.6;
}

.sopro-benefit-content strong {
    color: #FF8A00;
    display: block;
    margin-bottom: 5px;
}

/* ========== Price Card ========== */
.sopro-price-card {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(255, 138, 0, 0.3);
    position: relative;
    border: 3px solid #FF8A00;
}

.sopro-card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF8A00 0%, #C7652B 100%);
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sopro-card-title {
    color: #4C4A47;
    font-size: 2rem;
    font-weight: 800;
    margin: 20px 0 10px;
}

.sopro-card-subtitle {
    color: #C7652B;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.sopro-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.sopro-currency {
    color: #FF8A00;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 10px;
}

.sopro-amount {
    color: #FF8A00;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
}

.sopro-cents {
    color: #FF8A00;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.sopro-installment {
    color: #4C4A47;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.sopro-card-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.sopro-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 138, 0, 0.05);
    border-radius: 8px;
}

.sopro-feature-icon {
    color: #FF8A00;
    font-size: 1.3rem;
    font-weight: 900;
}

.sopro-feature-item span:last-child {
    color: #4C4A47;
    font-size: 1rem;
    font-weight: 600;
}

.sopro-btn-card {
    display: inline-block;
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(135deg, #FF8A00 0%, #C7652B 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 138, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sopro-btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 138, 0, 0.6);
    color: #fff;
    text-decoration: none;
}

.sopro-guarantee {
    color: #4C4A47;
    font-size: 0.95rem;
    margin-top: 20px;
    font-style: italic;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .sopro-access-title {
        font-size: 2rem;
    }

    .sopro-access-subtitle {
        font-size: 1.1rem;
    }

    .sopro-main-title {
        font-size: 2rem;
    }

    .sopro-main-subtitle {
        font-size: 1.1rem;
    }

    .sopro-pillars-grid {
        grid-template-columns: 1fr;
    }

    .sopro-benefits-main-title {
        font-size: 1.8rem;
    }

    .sopro-amount {
        font-size: 3.5rem;
    }

    .sopro-cta-center h1 {
        font-size: 1.8rem;
    }

    .sopro-btn-primary {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .sopro-access-title {
        font-size: 1.5rem;
    }

    .sopro-main-title {
        font-size: 1.6rem;
    }

    .sopro-pillar-card {
        padding: 30px 20px;
    }

    .sopro-price-card {
        padding: 30px 20px;
    }
}