.banner {
    padding-top: 123px;
    padding-bottom: 156px;
    background-size: cover;
    background-repeat: no-repeat;
}

@media(max-width: 1600px) {
    .banner {
    	background-position: right;
    }
}

@media(max-width: 991px) {
    .banner {
        padding-top: 34px;
        padding-bottom: 34px;
        background-size: cover;
        background-position: center;
    }
}

.botao1-banner {
    /* GRADIENTE */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(88.52deg, #FF3333 6.82%, #F26531 53.41%, #ED1E79 87.74%, #FFBC59 108.83%);
    box-shadow: 0px 0px 5.8px 3px rgba(0, 0, 0, 0.09);
    border-radius: 40px;
    padding: 8px 46px;
    width: fit-content;
    max-width: 575px;
    margin: auto;

    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}

@media(max-width: 991px) {
    .botao1-banner {
        font-size: 11px;
        line-height: 20px;
    }
}

.texto-banner,
.texto-banner p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 18px 0;
}

.texto-banner p strong{
	font-size: 16px;
    color: #ffffff;
}

@media(max-width: 991px) {

    .texto-banner,
    .texto-banner p strong,
    .texto-banner p {
        font-size: 11px;
    }
    
    .texto-banner p strong{
    	color: #ffffff;
    }
}

.texto-banner-destaque,
.texto-banner-destaque p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 35px;
}

@media(max-width: 991px) {

    .texto-banner-destaque,
    .texto-banner-destaque p {
        font-size: 14px;
        text-align: center;
        line-height: 119%;
        max-width: 212px;
        margin: 20px auto;
    }
}

.botao-banner {

    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 31px;
    line-height: 37px;
    /* or 119% */
    text-align: center;
    color: #F26531;

    background: #FFFFFF;
    backdrop-filter: blur(2px);
    border-radius: 40px;

    text-decoration: none;
    padding: 11px 61px;

    transition: .3s ease-in;

    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: auto;

}

@media(max-width: 991px) {
    .botao-banner {
        font-size: 14px;
        margin-bottom: 150px;
        padding: 0 60px;
    }
}

.botao-banner:hover {
    transition: .3s ease-in;
    background-color: #ee2078;
    color: #FFFFFF;
}

.coteudo-menor-banner {
    //max-width: 493px;
    margin: auto;
}

@media(max-width: 991px) {
    .coteudo-menor-banner {
        max-width: 90%;
    }
}

/* Container geral do formulário de senha */
.post-password-form {
    max-width: 420px;
    margin: 80px auto;
    padding: 40px 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

/* Texto explicativo */
.post-password-form p:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 24px;
}

/* Wrapper do campo (WP costuma colocar tudo dentro de <p>) */
.post-password-form p {
    margin-bottom: 16px;
}

/* Campo de senha */
.post-password-form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    outline: none;
    transition: all 0.2s ease;
}

/* Foco no input */
.post-password-form input[type="password"]:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

/* Botão de envio */
.post-password-form input[type="submit"] {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    background: #6c63ff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover do botão */
.post-password-form input[type="submit"]:hover {
    background: #554ee0;
    transform: translateY(-1px);
}

/* Active */
.post-password-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 480px) {
    .post-password-form {
        margin: 40px 16px;
        padding: 32px 24px;
    }
    
    .swiper-slide img{
        height: 196px !important;
    }
}