@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    --azul: #0B2F5F;
    --vermelho: #FF0209;
    --laranja: #EE7F35;
    --branco: #fff;
    font-family: "Poppins", sans-serif;

}

.bg-topbar {
    background-color: var(--azul);
}

.bg-topbar i,
.bg-topbar span {
    color: var(--branco);
    transition: all .5s;
}

.bg-topbar .nav-item:hover span,
.bg-topbar .nav-item:hover i {
    color: var(--vermelho);
}


/*Navbar*/
.bg-navbar {
    background-color: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(20px) saturate(1.8);
}

.bg-navbar .nav-link {
    color: var(--branco);
    font-weight: 700;
    text-shadow: 0 0 12px #fff;
    font-size: 17px;
    letter-spacing: 2px;
}

.btn-estilo {
    background-color: var(--vermelho);
    color: var(--branco);
    border-radius: 15px;
    padding: 8px 32px;
    transition: .5s;
}

.btn-estilo:hover {
    background-color: var(--vermelho);
    color: var(--branco);
    transform: scale(1.1);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.dropdown-menu {
    border: none;

}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #ffddde;
}


.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
    color: var(--vermelho);
    text-shadow: 0 0 12px #ff9498
}

.navbar {
    transition: top 0.3s ease-in-out !important;
}

/*Carousel*/

.carousel-indicators [data-bs-target] {
    background-color: var(--vermelho);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    transition: .5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--vermelho);
    border-radius: 20em;
    width: 45px;
    height: 12px;
    transition: .5s;
}

.carousel-indicators [data-bs-target] {
    border-top: 0 solid transparent;
    border-bottom: 0 solid transparent;
}

.pt-6 {
    padding-top: 5em;
}

.pb-6 {
    padding-bottom: 5em;
}

.text-justify {
    text-align: justify;
}

.bg-grey {
    background-color: #F3F3F3;
}

.title-content span {
    color: var(--laranja);
}

.title-content h2 {
    color: var(--laranja);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #074479;
}

.img-style {
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/*segmento*/

.card-segmento {
    position: relative;
    top: 50%;
    left: 50%;
    height: 300px;
    width: 300px;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: .5s;
}


.card-segmento:hover .card-front {
    transform: rotateX(-180deg);
}

.card-segmento:hover .card-back {
    transform: rotateX(0deg);
}

.card-front {
    height: 100%;
    width: 100%;
    background-position: 50% 50%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    backface-visibility: hidden;
    transform: rotateX(0deg);
    transition: .5s;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
}


.card-front_infantil {
    background-image: url(../img/infantil-home.jpg);
}

.card-front_fundamental {
    background-image: url(../img/fundamental-home.jpg);
}

.card-front_fundamental2 {
    background-image: url(../img/fundamental2-home.jpg);
}

.card-front_medio {
    background-image: url(../img/medio-home.jpg);
}

.card-front::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.26);
    transform: translate(-50%, 0%);
    border-radius: 50%;
    z-index: -1;
}

.card-back {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--vermelho);
    backface-visibility: hidden;
    transform: rotateX(180deg);
    transition: .5s;
    border-radius: 50%;
}

.card-front h2 {
    margin: 40% auto 35% auto;
    font-size: 32px;
    color: var(--branco);
    font-weight: 700;
}

.card-back {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.card-back p {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 14px;
}

.btn-segmento-home,
.btn-depoimento-home {
    border: 1px solid var(--branco);
    color: var(--branco);
    transition: .5s all;
}

.btn-segmento-home:hover,
.btn-depoimento-home:hover {
    border: 1px solid var(--branco);
    color: var(--branco);
    transform: scale(1.05);
}


/*Depoimento*/

.bg-overlay::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: 9;
}

.content-svg {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    fill: var(--branco);
    z-index: 99;
}

.content-depoimento h2 {
    font-size: calc(1rem + 1.5vw);
}

.svg-top {
    top: -1px;
}

.content-svg svg {
    height: 20px;
    width: 100%;
}

.svg-bottom {
    bottom: -1px;
}

.svg-bottom svg {
    transform: rotate(180deg);
}

.swiper {
    width: 100%;
    height: 600px;
}

.swiper-saibamais img {
    animation: crescer 6s;
    overflow: hidden;
    width: 100%;
}

@keyframes crescer {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }

}

.content-depoimento {
    top: 40%;
    left: 5%;
    right: 5%;
    z-index: 9;
}


.btn-depoimento-home {
    width: 200px;
    padding: 16px 0;
    font-weight: 600;
    text-shadow: 0 0 12px #fff;
    transition: .5s;
}

.btn-depoimento-home:hover {
    box-shadow: 0px 0px 14px 0px rgba(255, 255, 255);
}



.container-title {
    text-align: center;
    padding: 0 !important;
    margin-bottom: 40px;
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    line-height: 60px;
}

.card-depoimento {
    max-width: 100%;
    border: 0;
    width: 100%;
    margin-inline: auto;
}

.container-card {
    position: relative;
    border: 2px solid transparent;
    background: #fff;
    background-clip: padding-box;
    border-radius: 45px;
    padding: 40px;

    img {
        margin-bottom: 32px;
        width: 64px;
        height: 64px;
        filter: drop-shadow(0px 0px 15px #ffad76)
    }
}

.bg-yellow-box {
    position: relative;
}

.bg-yellow-box::after {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    z-index: -1;
    border-radius: 45px;
}

.bg-yellow-box::after {
    background: var(--laranja);
    background-size: 16px;
    box-shadow: none !important;
}

.card-title {
    font-weight: 700;
    color: var(--laranja);
    letter-spacing: -0.02em;
    line-height: 40px;
    font-style: normal;
    font-size: 28px;
    padding-bottom: 8px;
}

.card-description {
    font-weight: 600;
    line-height: 32px;
    color: #000;
    font-size: 16px;
}


/*Contato*/

.bg-orange{
    background-color: var(--laranja);
}

.bg-orange img{
    width: 100%;
    position: absolute;
    top: -20%;
    z-index: -1;
}

.contato-content h3{
    font-size: 16px;
    font-weight: 700;
    text-shadow: 1px 1px 1px #0D214F;
    color: #fff;
    padding-bottom: 1em;
}

/*Formulario contato*/
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
    font-weight: bold;
}
.is-invalid ~ .invalid-feedback {
    display: block;
}
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}



/*Footer*/
.bg-red{
    background-color: #BD2012;
    border-top: var(--azul) solid 2px;
}


.footer-slogan{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-slogan img{
    filter: drop-shadow(0px 0px 15px #ff7417)
}

.footer-slogan span{
    color: #fff;
    font-size: 16px;
    padding-left: 8px;
}

.bg-redes{
    background-color: #fff;
    padding: 8px 12px 6px 13px;
    border-radius: 50%;
    font-size: 16px;
}

.bg-redes i{
    font-size: 24px;
    color: var(--azul);
    transition: .5s;
}
.bg-redes{
    transition: .5s;
}

.bg-redes:hover i{
    color: var(--branco);
}

.bg-redes:hover:nth-child(1){
    background-color: #3b5998;;
}

.bg-redes:hover:nth-child(2){
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.bg-redes:hover:nth-child(3){
    background-color: #25D366;
}

.bg-redes:hover:nth-child(4){
    background-color: var(--laranja);
}

.footer-titulo{
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 12px #fff;
}

.bg-blue{
    background-color: var(--azul);

}


/*Pagina Interna*/
.bg-manifesto, .bg-visao, .bg-metodologia, .bg-equipe, .bg-infantil, .bg-fundamental, .bg-fundamental2, .bg-medio, .bg-pre-vestibular, .bg-contato, .bg-lista-material, .bg-portal-aluno, .bg-aprovados{
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    position: relative;
}
.bg-manifesto{
    background-image: url(../img/manifesto-bg.webp);
}

.bg-visao{
    background-image: url(../img/visao-bg.webp);
}

.bg-metodologia{
    background-image: url(../img/bg-metodologia.jpg);
}

.bg-equipe{
    background-image: url(../img/bg-equipe.jpg);
}

.bg-infantil{
    background-image: url(../img/bg-infantil-interno.jpg);
}

.bg-fundamental{
    background-image: url(../img/bg-fundamental-interno.jpg);
    background-position: top !important;
}

.bg-fundamental2{
    background-image: url(../img/bg-fund2-interno.jpg);
}

.bg-medio{
    background-image: url(../img/bg-medio.webp);
    background-position: top !important;
}

.bg-pre-vestibular{
    background-image: url(../img/bg-pre-vestibular.jpg);
}

.bg-contato{
    background-image: url(../img/bg-contato.jpg);
}

.bg-lista-material{
    background-image: url(../img/bg-lista-material.jpg);
}

.bg-portal-aluno{
    background-image: url(../img/bg-portal-aluno.png);
}

.bg-aprovados{
    background-image: url(../img/bg-aprovados.jpg);
}

.bg-manifesto::after, .bg-visao::after, .bg-metodologia::after, .bg-equipe::after, .bg-infantil::after, .bg-fundamental::after, .bg-fundamental2::after, .bg-medio::after, .bg-pre-vestibular::after, .bg-contato::after, .bg-lista-material::after, .bg-portal-aluno::after, .bg-aprovados::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color:rgba(000, 000, 000, 0.4);
}

.bg-section-logo::before{
    content: "";
    background-image: url(../img/bg-logofenix.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 100%;
    height: 600px;
    z-index: -1;
    opacity: 0.15;
}

.bg-manifesto h1, .bg-visao h1, .bg-metodologia h1, .bg-equipe h1, .bg-infantil h1, .bg-fundamental h1, .bg-fundamental2 h1, .bg-medio h1, .bg-pre-vestibular h1, .bg-contato h1, .bg-lista-material h1, .bg-portal-aluno h1, .bg-aprovados h1 {
    font-weight: 700;
    font-size: 60px;
    position: relative;
    z-index: 1;
}

.container-img{
    height: 100%;
    overflow: hidden;
    max-width: 400px;
    max-height: 250px;
    display: flex;
}

.container-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}


/*Metodologia*/
.card-metodologia {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    width: 100%;
    max-height: 567px;
    height: 100%;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 0px 14px 0px rgba(192, 192, 192, 0.2);
    transition: 1s all;
    overflow: hidden;
}

.card-metodologia::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 120px;
    height: 120px;
    background: var(--vermelho);
    filter: blur(70px);
    border-radius: 50%;
    transition: width 1s, height 1s;
}

.card-metodologia::before {
    content: "";
    position: absolute;
    bottom: -160%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #960808;
    filter: blur(70px);
    border-radius: 50%;
    transition: width 1s, height 1s;
}

.card-metodologia:hover::before {
    bottom: -230%;
    width: 1000px;
    height: 1000px;
    filter: blur(1px);
}

.card-metodologia-long:hover::before {
    bottom: -150%;
    width: 1000px;
    height: 1000px;
    filter: blur(1px);
}

.card-metodologia-short:hover::before {
    bottom: -260%;
    width: 1000px;
    height: 1000px;
    filter: blur(1px);
}

.containers {
    position: relative;
}


.title {
    color: #171d29;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    transition: 1s all;
    margin: 1rem 0;
}

.subtitle {
    color: #7e8882;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    transition: 1s all;
}


.card-metodologia:hover .title,
.card-metodologia:hover .subtitle {
    color: #fff;
    transition: 1s all;
}


/*Infantil*/
.card-segmento-interno ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subtitulo-interno{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #074479;
    color: var(--laranja);
}


/*Lista de Materiais*/
.btn-lista{
    background-color: var(--vermelho);
    transition: .5s;
    color: #fff;
}


.btn-lista:hover{
    background-color: #862B2B !important;
    color: #fff;
}


.notification {
    display: flex;
    flex-direction: column;
    isolation: isolate;
    position: relative;
    width: 100%;
    height: 232px;
    background: transparent;
    backdrop-filter: blur(5px) saturate(180%);
    border-radius: 1rem;
    overflow: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    --gradient:linear-gradient(25deg, #b90e24, #d02926, #e73d28, #ff4f29);
    --color: #EE7F35
  }
  
  .notification:before {
    position: absolute;
    content: "";
    inset: 0.0625rem;
    border-radius: 0.9375rem;
    background: transparent;
    backdrop-filter: blur(6px) saturate(180%);
    z-index: 2
  }
  
  .notification:after {
    position: absolute;
    content: "";
    width: 0.25rem;
    inset: 0.65rem auto 0.65rem 0.5rem;
    border-radius: 0.125rem;
    background: var(--gradient);
    transition: transform 300ms ease;
    z-index: 4;
  }
  
  .notification:hover:after {
    transform: translateX(0.15rem)
  }
  
  .notititle {
    color: var(--color);
    padding: 0.65rem 0.25rem 0.4rem 1.25rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 300ms ease;
    z-index: 5;
  }
  
  .notification:hover .notititle {
    transform: translateX(0.15rem)
  }
  
  .notibody {
    color: #99999d;
    padding: 0 1.25rem;
    transition: transform 300ms ease;
    z-index: 5;
  }
  
  .notification:hover .notibody {
    transform: translateX(0.25rem)
  }
  
  .notiglow,
  .notiborderglow {
    position: absolute;
    width: 20rem;
    height: 20rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle closest-side at center, white, transparent);
    opacity: 0;
    transition: opacity 300ms ease;
  }
  
  .notiglow {
    z-index: 3;
  }
  
  .notiborderglow {
    z-index: 1;
  }
  
  .notification:hover .notiglow {
    opacity: 0.1
  }
  
  .notification:hover .notiborderglow {
    opacity: 0.1
  }
  
  .note {
    color: var(--color);
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.9rem;
    width: 75%;
  }

  hr.sep-2 {
    border: 0; 
    height: 2px; 
    background-image: linear-gradient(to right, #f0f0f0, #b90e24, #d02926, #e73d28, #ff4f29, #f0f0f0);
    z-index: 99;
  }

  .card-portal-aluno{
    position: relative;
    background-size: cover;
    height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    row-gap: .6em;
    overflow: hidden;
    transition: .5s;
  }

  .card-portal-aluno::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(000, 000, 000, 0.2);
    border-radius: 15px;
  }

  .card-portal_infantil{
    background-image: url(../img/infantil-home.jpg);
  }

  .card-portal_fundamental{
    background-image: url(../img/fundamental-home.jpg);
  }

  .card-portal_fundamental2{
    background-image: url(../img/fundamental2-home.jpg);
  }

  .card-portal_medio{
    background-image: url(../img/medio-home.jpg);
  }


  .card-portal-aluno h2{
    color: #fff;
    font-weight: 700;
    z-index: 99;
    padding-top: 2em;
    text-align: center;
  }

  .card-portal-aluno a{
    background-color: var(--azul);
    color: #fff;
    font-weight: 600;
    padding: 6px 24px;
    text-decoration: none;
    z-index: 99;
    border-radius: 15px;
    transition: .5s;

  }


  .card-portal-aluno a:hover{
    background-color: var(--vermelho);
  }

  .card-portal-aluno:hover {
     transform: scale(1.1);
     box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }

  .btn-email{
    border: 1px var(--vermelho) solid;
    color: var(--vermelho);
    font-weight: 600;
    padding: 6px 24px;
    text-decoration: none;
    border-radius: 15px;
    transition: .5s;
  }

  .btn-email:hover{
    background-color: var(--vermelho);
    color: #fff;
  }

  .bg-sas{
    background-color: #032066;
  }

  .titulo-sas{
    color: #fff;
    font-weight: 700;
    font-size: calc(1.375rem + 2vw);
    text-wrap: balance;
  }

  /*Aprovados*/
  .btn-turmas {
      background-color: #960808 !important;
      padding: 8px 32px !important;
      color: #fff !important;
      font-weight: 700 !important;
  }

  .btn-turmas:hover {
      background-color: #fff !important;
      border-color: #960808 !important;
      color: #960808 !important;
  }

@media screen and (max-width: 1006px) {
    .bg-orange  img{
        display: none;
    }
}

@media screen and (max-width: 910px) {
    .swiper {
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .bg-topbar ul {
        margin: auto;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .content-depoimento {
        top: 30%;
    }
}

@media screen and (max-width: 570px) {
    .content-depoimento {
        top: 20%;
    }
}

@media screen and (max-width: 425px) {
    .content-depoimento {
        top: 10%;
    }
}