/* ========================================
   SEÇÃO PARALLAX CTA - CALL TO ACTION
   ======================================== */

.parallax-cta-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Overlay para melhorar a legibilidade do texto */
.parallax-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Container de conteúdo */
.parallax-cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 80vw;
    padding: 60px 40px;
    margin: 0 auto;
}

/* Grid com duas colunas */
.parallax-cta-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Coluna de texto */
.parallax-cta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Título */
.parallax-cta-title {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Subtítulo */
.parallax-cta-subtitle {
    font-size: 18px;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Coluna de botão */
.parallax-cta-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

/* Container do glassmorphism - Englobando as duas colunas */
.glassmorphism-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 50px 60px;
    /* box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37); */
    transition: all 0.3s ease;
    width: 100%;
}

.glassmorphism-box:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.45);
}

/* Ícone dentro do glassmorphism */
.glassmorphism-icon {
    font-size: 48px;
    color: #fff;
    opacity: 0.9;
}

/* Texto descritivo dentro do glassmorphism */
.glassmorphism-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Botão dentro do glassmorphism */
.glassmorphism-box .btnExpandHover {
    width: 100%;
    max-width: 220px;
}

/* ========================================
   RESPONSIVO
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .parallax-cta-section {
        min-height: 600px;
    }

    .parallax-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .parallax-cta-title {
        font-size: 36px;
    }

    .parallax-cta-subtitle {
        font-size: 16px;
    }

    .parallax-cta-action {
        min-height: auto;
    }

    .glassmorphism-box {
        padding: 40px 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .parallax-cta-section {
        min-height: 500px;
        background-attachment: scroll;
    }

    .parallax-cta-content {
        padding: 40px 0px;
        max-width: 95%;
    }

    .parallax-cta-title {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
    }

    .parallax-cta-subtitle {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }

    .parallax-cta-grid {
        gap: 20px;
    }

    .glassmorphism-box {
        padding: 30px 20px;
    }

    .btnExpandHover {
        width: 100% !important;
        max-width: 200px !important;
    }
}
