/* BANNER */
.containerbanner {
    background: url("../images/bg-mask2.png") no-repeat, #F5F5F5;
    background-size: 40%;
    background-position: left 315px;
    position: relative;
}

.banner {
	background-repeat: no-repeat;
	background-position: center -30px;
	background-size: cover;
    position: relative;
    aspect-ratio: 1920 / 598;
    z-index: 2;
    border-top: 4px solid #3C3C3B;
    overflow: visible;
    clip-path: ellipse(100% 90% at 50% 0%);
    padding-bottom: 100px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(169, 214, 229, 0.90) 0%, rgba(169, 214, 229, 0.90) 30%, rgba(1, 79, 134, 0.35) 100%);
    z-index: 1;
}


.banner__content {
    margin: 0 auto;
    padding-top: 80px;
    position: relative;
    z-index: 3;
	padding-bottom: 150px;
}

.banner__infos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
}

.banner_subtitulo {
    color: var(--color-primary);
}

.banner_scroll {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* CAMPANHA */
.campanha {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    margin-top: -50px;
}

.campanha>* {
    flex: 1;
}

.campanha__video {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.campanha__video-player {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
}

.campanha__video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.campanha__video-player:hover .campanha__video-thumbnail {
    transform: scale(1.05);
}

.campanha__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    transition: background 0.3s ease;
}

.campanha__video-player:hover .campanha__video-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.campanha__video-play {
    margin-bottom: auto;
    margin-top: 25%;
    transition: transform 0.3s ease;
}

.campanha__video-player:hover .campanha__video-play {
    transform: scale(1.1);
}

.campanha__video-play svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.campanha__video-progress {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.campanha__video-timeline {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.campanha__video-bar {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, #0C96C7 0%, #2A5D9E 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.campanha__video-time {
    color: white;
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    align-self: flex-end;
}

.campanha__infos {
    display: flex;
    flex-direction: column;
    gap: 40px;
	position: relative;
}

.campanha__titulo {
    color: #0C96C7;
}

.campanha__subtitulo {
    font-size: 20px;
    font-family: "Nunito";
    font-weight: normal;
    width: 80%;
    color: #5D5D5D;
}

.campanha__mascote {
    max-width: 190px;
    width: 190px;
    height: 250px;
    position: absolute;
    bottom: -60px;
    right: -100px;
}



/* YOUTUBE */
.youtube {
    padding: 80px 0;
    background: url("../images/bg-sejusplay.png");
}

.youtube__content {
    display: flex;
    gap: 100px;
    justify-content: space-between;
}

.youtube__content>* {
    flex: 1;
}

.youtube__infos {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.youtube__descricao {
    color: white;
    font-size: 20px;
    font-family: "Nunito";
}

.youtube__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FF0000;
}

.youtube__icon {
    width: 20px;
}

/* AÇÕES */

.acoes {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.acoes_titulo {
    color: #0C96C7;
    text-align: center;
    margin-bottom: 50px;
}

.acoes__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.acoes__list--single {
    background-color: white;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.acoes__list--single:hover {
    background-color: #EAF4FC;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(12, 150, 199, 0.1);
}

@media (min-width: 1080px) {
	.acoes__list--single {
		min-height: 820px;
	}
}

/* .active {
    background-color: #EAF4FC;
    border-radius: 12px;
} */

.acoes__content-single {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    gap: 20px;
    padding: 20px;
	min-height: 500px;
}

.acoes__content-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.acoes__single--button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: fit-content;
	border: 1px solid #e5f3f9;
}

.acao__capa {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.acoes__single--data {
    background-color: #0C96C7;
    color: white;
    width: fit-content;
    padding: 4px 15px;
    border-radius: 6px;
}

.acoes__single--descricao {
    color: #748995;
}

.acoes__button-all {
    margin-top: 50px;
    padding: 15px 20px;
}

/* FAQ */
.faq {
    padding: 80px 0 0 0;
    background:
        url("../images/bg-mask.png") repeat-y,
        linear-gradient(to right, #FFFFFF 0%, #EAF4FC 100%);
	position: relative;
	background-position: -20% center;
    min-height: 850px;
}

.faq__content {
    display: flex;
    flex-direction: column;
    padding-left: 100px;
}

.faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.faq__titulo {
    color: #0C96C7;
    font-size: 48px;
    font-weight: 700;
}

.faq__containersearch {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #B5B5B5;
    min-width: 320px;
    margin-right: 80px;
}

.faq__search-icon {
    width: 20px;
    height: 20px;
}

.faq__search {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
}

.faq__search::placeholder {
    color: #B5B5B5;
}

.faq__filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq__filter-btn {
    padding: 10px 15px;
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    background-color: white;
    color: #5D5D5D;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq__filter-btn:hover {
    border-color: #0C96C7;
    color: #0C96C7;
}

.faq__filter-btn--active {
    background-color: #2A5D9E;
    color: white;
    border-color: #2A5D9E;
}

.faq__section {
    display: flex;
	flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.faq__questions-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
	margin-right: 25%;
}

.faq__item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* .faq__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
} */

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #0C96C7;
    font-family: "Nunito", sans-serif;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: #0C96C7;
}

.faq__question span {
    flex: 1;
    padding-right: 20px;
}

.faq__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #0C96C7;
	background-color: white;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__question[aria-expanded="true"] + .faq__answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq__answer p {
    font-size: 16px;
    color: #748995;
    line-height: 1.6;
    margin: 0;
}

.faq__answer a {
    color: var(--color-primary);
    text-decoration: underline;
}

.faq__mascote {
    display: flex;
    align-items: flex-end;
    min-width: 380px;
    margin-bottom: -80px;
}

.faq__mascote img {
    position: absolute;
    bottom: 0;
    right: 150px;
    width: 300px;
    height: auto;
}

.faq__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.faq__pagination-numbers {
    display: flex;
    gap: 8px;
}

.faq__pagination-btn {
    min-width: 44px;
    height: 44px;
    border: 1px solid #E6E6E6;
    border-radius: 50%;
    background-color: white;
    color: #5D5D5D;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__pagination-btn:hover {
    border-color: #0C96C7;
    color: #0C96C7;
}

.faq__pagination-btn--active {
    background-color: #2A5D9E;
    color: white;
    border-color: #2A5D9E;
}

.faq__pagination-btn--prev,
.faq__pagination-btn--next {
    font-size: 24px;
}

.faq__item[data-category] {
    display: none;
}

.faq__item[data-category].faq__item--visible {
    display: block;
}

/* RESPONSIVIDADE */

@media (max-width: 1000px) {
	.faq__mascote img {
		position: absolute;
		bottom: 0;
		right: 20px;
		width: 170px;
		height: auto;
	}
	
	.faq {
		background: url(../images/bg-mask.png) repeat-y, linear-gradient(to right, #FFF 0%, #fff 100%);
        background-size: 40%;
        padding: 50px 0;
    }
}

@media (max-width: 900px) {
	    .youtube__content {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }
}

/* @media (min-width: 768px) and (max-width: 1200px) {
	.campanha__mascote {
        position: absolute;
        width: 150px;
        height: auto;
		right: -35px;
		top: 50%;
    }
} */

@media (max-width: 1200px) and (min-width: 920px) {
	.campanha__mascote {
		top: 80%;
		width: 150px;
        height: auto;
		right: 0;
	}
}

@media (max-width: 921px) {
	.campanha__mascote {
		top: 80%;
		width: 150px;
        height: auto;
		right: -80px;
	}
}

@media (max-width: 630px) and (min-width: 370px) {
	.campanha__mascote {
		position: absolute;
        width: 120px;
        height: auto;
        top: -13%;
        right: 0;
	}
}

@media (min-width: 631px) and (max-width: 768px) {
		.campanha__mascote {
		position: absolute;
        width: 120px;
        height: auto;
        top: -28%;
        right: 0;
	}
}

@media (max-width: 370px) {
	.campanha__mascote {
		position: absolute;
        width: 100px;
        height: auto;
        top: -13%;
        right: -28px;
	}
}

@media (max-width: 1000px) {
	.campanha {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	
    .banner__infos {
        width: 100%;
    }

    .banner {
        padding: 30px;
        background: url("../images/banner-home-mobile.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        min-height: 500px;
        height: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner__titulo {
        font-size: 35px;
    }

    .banner__content {
        padding: 0;
    }

    .banner_scroll {
        bottom: -15px;
    }

    .campanha {
        padding: 50px 20px;
        flex-direction: column;
        align-items: center;
        gap: 100px;
        background: url("../images/bg-mask2.png") no-repeat;
        background-size: contain;
        background-position: top;
    }

    .campanha__video {
        border-radius: 12px;
    }

    .campanha__video-play svg {
        width: 60px;
        height: 60px;
    }

    .campanha__video-progress {
        padding: 16px 20px;
        gap: 10px;
    }

    .campanha__video-timeline {
        height: 5px;
    }

    .campanha__video-time {
        font-size: 12px;
    }

    .campanha__subtitulo {
        width: 100%;
    }

    .campanha__titulo {
        margin-right: 30%;
    }

    .campanha__button {
        width: 100%;
    }

    .agenda {
        overflow: hidden;
        padding: 30px 20px !important;
    }

/*     .youtube__content {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    } */

    .youtube {
        background: url("../images/bg-sejusplay-mobile.png");
    }

    .faq__content {
        padding: 0 20px;
    }

    .faq__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .faq__titulo {
        font-size: 32px;
        width: 70%;
    }

    .faq__containersearch {
        margin-right: 0;
        width: 100%;
        min-width: auto;
    }

    .faq__filters {
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .faq__filter-btn {
        padding: 10px 24px;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .faq__section {
        flex-direction: column;
/*         align-items: center; */
        gap: 40px;
    }

    .faq__questions-wrapper {
        width: 100%;
    }

    .faq__item {
        border-radius: 8px;
    }

    .faq__question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq__question[aria-expanded="true"] + .faq__answer {
        padding: 0 20px 18px 20px;
    }

    .faq__answer p {
        font-size: 14px;
    }

    .faq__mascote {
        align-items: center;
        justify-content: center;
        min-width: auto;
        width: 80%;
        margin-bottom: -50px;
    }

    .faq__pagination {
        flex-wrap: wrap;
        gap: 6px;
    }

    .faq__pagination-btn {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }

.acoes__list {
    grid-template-columns: 1fr;
    padding: 0 20px;
}
}

.form__button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.footer__top img {
	width: 415px;
}

/* Modal de Vídeo */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
}

.video-modal__content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 100000;
    padding: 60px 0 0 0;
}

.video-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-modal__close:hover {
    background: #2b54b3;
    color: white;
    transform: rotate(90deg);
}

.video-modal__player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border: 4px solid #fff;
}

.video-modal__player iframe {
    width: 100%;
    height: 100%;
    display: block;
}