@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;900&display=swap');

@font-face {
    font-family: Second-chances;
    src: url(../kg_second_chances/KGSecondChancesSketch.ttf)
}

:root {
    --amarelo: #FDC800;
    --cinza: #F0F4F9;
    --marrom: #523D2C;
}

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

.bg-topbar ul li,
.bg-topbar ul li a {
    transition: .5s;
}

.bg-topbar ul li a {
    color: var(--marrom);
    text-decoration: none;
}

.bg-topbar ul li:hover,
.bg-topbar ul li a:hover {
    color: #f1f1f1;
}

#nav1 {
    background-color: var(--cinza);
    transition: .5s;
}

.nav-link {
    font-weight: 500;
    font-size: 17px;
}

.nav-item, .link-redes {
    position: relative;
}

.nav-item:hover::before, .link-redes:hover::before  {
    scale: 1;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 2px;
    bottom: 4px;
    width: 90%;
    height: 3px;
    background-color: var(--amarelo);
    border-radius: 4px;
    scale: 0 1;
    transform-origin: left;
    transition: scale 0.35s;
}

.link-redes::before {
    content: '';
    position: absolute;
    left: 2px;
    bottom: -3px;
    width: 90%;
    height: 3px;
    background-color: var(--amarelo);
    border-radius: 4px;
    scale: 0 1;
    transform-origin: left;
    transition: scale 0.35s;
}

.dropdown-menu {
    border: none;
}

.dropdown-item {
    transition: .5s;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #fff5ce;
}

.btn-base {
    height: 55px;
    line-height: 55px;
    padding: 0 30px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 0;
    font-size: 15px;
    transition: all 0.5s ease;
    font-weight: 500;
    border-radius: 4px;
    z-index: 0;
    background-color: var(--amarelo)
}

.btn:hover {
    color: var(--marrom);
    background-color: var(--amarelo);
}

.btn:hover:after {
    height: 100%;
    width: 135%;
    color: var(--marrom);
}

.btn:after {
    content: "";
    background: #EEBD05;
    position: absolute;
    transition: all 0.3s ease-in;
    z-index: -1;
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(30deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
}


h1 {
    font-family: 'Poppins', sans-serif;
}

/*Hero*/

.hero-secao {
    background-color: var(--cinza);
    height: calc(100vh - 165px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-titulo,
.titulo {
    font-weight: 900;
    font-size: clamp(3rem, -5.1124rem + 11.4833vw, 3.4rem);
    color: var(--marrom);
}


.hero-paragrafo, .subtitulo {
    color: var(--marrom);
    font-size: 1em;
}

.hero-titulo span,
.titulo span {
    color: var(--amarelo);
    font-style: italic;
}

.titulo span {
    font-style: normal;
    font-family: Second-chances;
}

.titulo span::after {
    content: url(../img/svg-titulo.svg);
    position: absolute;
    top: -32px;
    transform: rotate(90deg);
}


.mover-vertical {
    animation: 3s infinite alternate floating;
}

@keyframes floating {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

.shadow-animation {
    height: 2px;
    display: block;
    margin: 15px auto;
    animation: 3s infinite alternate shadow;
}

.hero-img-abelha {
    position: relative;
    z-index: 2;
}

.hero-vetor {
    top: -12px;
    left: 70%;
    z-index: 0;
    transform: rotate(13deg);
}

.hero-vetor2 {
    animation: 3s infinite alternate vetor;
    right: 0;
}

.hero-vetor3 {
    left: 10%;
    top: -132px;
    transform: rotate(-90deg);
    animation: 1s infinite alternate vetor;
}

.navbar.expand {
    top: 0;
}

@keyframes shadow {
    0% {
        width: 180px;
        box-shadow: 0px 10px 8px rgba(0, 0, 0, .8);
    }

    50% {
        width: 20px;
        box-shadow: 0px 10px 8px rgba(0, 0, 0, .5);
    }

    100% {
        width: 180px;
        box-shadow: 0px 10px 8px rgba(0, 0, 0, .8);
    }
}

@keyframes vetor {
    0% {
        margin: 0;
    }

    100% {
        margin-top: -20px;
    }
}

/*Redes Sociais*/
.secao-redes{
    position: fixed;
    top: 40%;
    left: -0.5%;

    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
}
.secao-redes .row{
    width: 85px;
    padding-left: 1em;
}

/*Proposta*/
.secao-proposta {
    padding-top: 6em;
}

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


.titulo-vetor {
    top: -1em;
    right: 0;
    transform: rotate(90deg);
}

.prop-v1 {
    left: 5em;
    top: -5em;
    animation: 3s infinite alternate vetor;
}

.prop-v2 {
    right: 0;
    top: 0;
    animation: 2s infinite alternate vetor;
}

.linha-proposta .col-lg-6:nth-child(2) img:nth-child(1){
    border-radius: 1.5em;
}

/*Historia*/
.secao{
    padding-top: 7em;
}

.historia-img{
    border-radius: 10px;
}

.secao-bottom{
    padding-bottom: 7em;
}

/*Turmas*/

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

.card--1 .card__img,
.card--1 .card__img--hover {
    background-image: url(../img/bercario-home.png);
}

.card--3 .card__img,
.card--3 .card__img--hover {
    background-image: url(../img/maternal-home.png);
}

.card--2 .card__img,
.card--2 .card__img--hover {
    background-image: url(../img/infantil-home.jpg);
}


.card__img {
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card__info-hover {
    position: absolute;
    padding: 16px;
    width: 100%;
    opacity: 0;
    top: 0;
}

.card__img--hover {
    transition: 0.2s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    top: 0;
}

.cardd {
    margin-right: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0, 1);
    background-color: transparent;
    width: 100%;
    position: relative;
    border-radius: 23px;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
}

.cardd:hover {
    box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);

}

.card__info {
    z-index: 2;
    background-color: #fff;
    border-bottom-left-radius: 23px;
    border-bottom-right-radius: 23px;
    padding: 16px 24px 24px 24px;
}

.card__category {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

.card__title {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: 900;
    color: #524439;
    font-family: Second-chances;
}


.card__author {
    font-weight: 600;
    text-decoration: none;
}

.cardd:hover .card__img--hover {
    height: 100%;
    opacity: 1;
    border-radius: 25px;
}

.cardd:hover .card__info {
    background-color: transparent;
    position: relative;
    background-color: rgb(0, 0, 0, 0.3);
}

.cardd:hover .card__title {
    color: #fff;
}

.cardd:hover .card__info-hover {
    opacity: 0
}

.bg-cinza img:nth-child(1) {
    top: 45%;
    right: -300px;
}

.bg-cinza img:nth-child(2) {
    top: 8%;
    right: 10%;
    animation: 3s infinite alternate vetor;
}

.swiper-container {
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-mobile .card-atividade{
    width: 100% !important;
}

.card-atividade {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: var(--color-secundary);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .content .heading,  .content-mobile .heading {
    font-weight: 700;
    font-size: 32px;
  }
  
  .content .paragrafo, .content-mobile .paragrafo {
    line-height: 1.5;
  }
  
  .content .btn {
    color: var(--color-secundary);
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: var(--color-btn);
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .card-atividade::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  }

  /*Card Mobile*/

  .content-mobile{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
  }
  
  .atividade1::before{
    background: url(../img/culinaria.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
  }

  .atividade1-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    background: url(../img/culinaria.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
    background-size: cover;
  }
  
  .atividade2::before{
    background: url(../img/Judô.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
  }

  .atividade2-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    background: url(../img/Judô.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
    background-size: cover;
  }
  
  .atividade3::before{
    background: url(../img/natacao.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
  }

  .atividade3-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    background: url(../img/natacao.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
    background-size: cover;
    background-position: bottom;
  }
  
  .atividade4::before{
    background: url(../img/ballet.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
  }

  .atividade4-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    background: url(../img/ballet.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
    background-size: cover;
  }

  .atividade5::before{
    background: url(../img/ingles.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
  }

  .atividade5-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    background: url(../img/ingles.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
    background-size: cover;
  }

  .atividade6::before{
    background: url(../img/horticultura.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
  }

  .atividade6-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    background: url(../img/horticultura.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
    background-size: cover;
  }

  .atividade7::before{
    background: url(../img/emocoes.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
  }

  .atividade7-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    background: url(../img/emocoes.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
    background-size: cover;
  }

  .atividade8::before{
    background: url(../img/financeira.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
  }

  .atividade8-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 468px;
    padding: 32px;
    overflow: hidden;
    border-radius: 40px;
    background: url(../img/financeira.png), linear-gradient(25deg, #f89400, #f7b900, #f4dc02);
    background-size: cover;
  }
  
  .card-atividade:hover::before {
    height: 100%;
    color: var(--color-primary);
    background-size: cover;
    background-position: center;
  }
  
  .card-atividade:hover {
    box-shadow: none;
  }
  
  .card-atividade:hover .content {
    color: var(--color-primary);
  }
  
  .content:hover,
  .heading:hover {
    color: var(--color-primary);
  }
  
  .card-atividade:hover .btn {
    color: #212121;
    background: #e8e8e8;
  }
  
  .content .btn:hover {
    outline: 2px solid #e8e8e8;
    background: transparent;
    color: #e8e8e8;
  }
  
  .content .btn:active {
    box-shadow: none;
  }

/*Contato*/

.section-contato{
	font-weight: 300;
	font-size: 15px;
	line-height: 1.7;
	color: #c4c3ca;
	overflow-x: hidden;
    background:var(--amarelo);
    background-size: cover;
    padding: 6em 0;
    position: relative;
}

.section-contato img:nth-child(1){
    width: 30%;
    top: 51%;
    right: 16px;
}
.section-contato img:nth-child(2){
    width: 10%;
    top: 51%;
    left: 5%;
    animation: 4s infinite alternate vetor;
}

.section-contato img:nth-child(3){
    width: 8%;
    top: 30%;
    left: 15%;
    animation: 4s infinite alternate vetor;
}

.section-contato img:nth-child(3){
    width: 8%;
    top: 30%;
    left: 15%;
    animation: 4s infinite alternate vetor;
}

.section-contato a {
    cursor: pointer;
  transition: all 200ms linear;
}
.section-contato a:hover {
    text-decoration: none;
}

h6, .titulo-form, .titulo-contato{
    font-family: Second-chances;
}

.link {
  color: var(--cinza);
}
.link:hover {
  color: #ffeba7;
}
h4 {
  font-weight: 600;
}
h6 span{
  padding: 0 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--marrom);
}
.section{
  position: relative;
  width: 100%;
  display: block;
}
.full-height{
  min-height: 100vh;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}
.checkbox:checked + label,
.checkbox:not(:checked) + label{
  position: relative;
  display: block;
  text-align: center;
  width: 60px;
  height: 16px;
  border-radius: 8px;
  padding: 0;
  margin: 10px auto;
  cursor: pointer;
  background-color: #ffeba7;
}
.checkbox:checked + label:before,
.checkbox:not(:checked) + label:before{
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffeba7;
  background-color: var(--marrom);
  font-family: 'bootstrap-icons';
  content: '\F5D6';
  z-index: 20;
  top: -10px;
  left: -10px;
  line-height: 36px;
  text-align: center;
  font-size: 24px;
  transition: all 0.5s ease;
}
.checkbox:checked + label:before {
  transform: translateX(44px) rotate(180deg);
}

.card-3d-wrap {
  position: relative;
  width: 440px;
  max-width: 100%;
  height: 600px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  perspective: 800px;
  margin-top: 60px;
}
.card-3d-wrapper {
  width: 100%;
  height: 100%;
  position:absolute;    
  top: 0;
  left: 0;  
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all 600ms ease-out; 
}
.card-front, .card-back {
  width: 100%;
  height: 100%;
  background-color: #45270e;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 300%;
  position: absolute;
  border-radius: 6px;
  left: 0;
  top: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.card-back {
  transform: rotateY(180deg);
}
.checkbox:checked ~ .card-3d-wrap .card-3d-wrapper {
  transform: rotateY(180deg);
}
.center-wrap{
  position: absolute;
  width: 100%;
  padding: 0 35px;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 35px) perspective(100px);
  z-index: 20;
  display: block;
}

#contato{
    scroll-margin-top: 15em;
}
.form-group{ 
  position: relative;
  display: block;
    margin: 0;
    padding: 0;
}
.form-style {
  padding: 13px 20px;
  padding-left: 55px;
  height: 48px;
  width: 100%;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  outline: none;
  color: #c4c3ca;
  background-color: #2d1705;
  border: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  box-shadow: 0 4px 8px 0 rgba(21,21,21,.2);
}
.form-style:focus,
.form-style:active {
  border: none;
  outline: none;
  box-shadow: 0 4px 8px 0 rgba(21,21,21,.2);
}
.input-icon {
  position: absolute;
  top: 0;
  left: 18px;
  height: 48px;
  font-size: 24px;
  line-height: 48px;
  text-align: left;
  color: var(--amarelo);
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:-ms-input-placeholder, textarea:-ms-input-placeholder  {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input::-moz-placeholder, textarea::-moz-placeholder {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:-moz-placeholder, textarea:-moz-placeholder  {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder  {
  opacity: 0;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus::-moz-placeholder ,textarea:focus::-moz-placeholder  {
  opacity: 0;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus:-moz-placeholder ,textarea:focus:-moz-placeholder  {
  opacity: 0;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus::-webkit-input-placeholder ,textarea:focus::-webkit-input-placeholder  {
  opacity: 0;
  -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.btn-contato{  
  border-radius: 4px;
  height: 44px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition : all 200ms linear;
  transition: all 200ms linear;
  padding: 0 30px;
  letter-spacing: 1px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  border: none;
  background-color: var(--amarelo);
  color: var(--marrom);
  box-shadow: 0 8px 24px 0 rgba(255,235,167,.2);
  text-decoration: none;
}
.btn-contato:active,
.btn-contato:focus{  
  background-color: #ffeba7;
  color: var(--marrom);
  box-shadow: 0 8px 24px 0 rgba(16,39,112,.2);
}
.btn-contato:hover{  
  background-color: #ffeba7;
  color: var(--marrom);
  box-shadow: 0 8px 24px 0 rgba(16,39,112,.2);
}

.label-arquivo {
    cursor: pointer;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #c4c3ca;
    padding: 0.5rem 3rem;
    background-color: #2d1705;
    border-radius: 0.375rem;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control[type=file] {
    overflow: hidden;
}
input[type="file"] {
    display: none;
}
.form-control {
    border: none !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.label-arquivo::after {
    font-family: 'Bootstrap-icons';
    content: "\F30A";
    padding-left: 1rem;
    color: var(--amarelo);
}

/*Depoimento*/
.bg-depoimento{
    background-color: var(--amarelo);
    height: 450px;
    width: 100%;
    z-index: -1;
    bottom: 50px;
}

.card-depoimento{
    width: 100%;
    height: 100%;
    padding-top: 1em;
    padding-bottom: 2em;
    background-color:#f9f9f9;
    border: none;
}

.card-body-depoimento{
    padding: 2em  2em 0 2em ;
}

.depoimento-icone {
    padding-top: 16px;
    padding-left: 1.5em;
    width: 80px !important;
    height: auto;
}

.titulo-depoimento{
    color: var(--marrom);
    font-weight: 900;
    font-size: 2.5em;
}

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

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

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

.carousel-indicators {
    bottom: -30px;
}


/*Footer*/
.bg-footer{
    background: var(--cinza);
    margin-top: 8em;
}

.icon-nav{
    font-size: 1.5em;
    padding-left: .5em;
}

.titulo-footer{
    font-weight: 900;
    color: var(--marrom);
    font-family: Second-chances;
}

footer a {
    text-decoration: none;
    color: var(--marrom);
    transition: 0.3s;
    font-weight: 600;
}

footer a:hover {
    text-decoration: none;
    opacity: 0.8;
    color: var(--amarelo);
}

hr {
    border-bottom: 1px solid var(--amarelo) !important;
    line-height: 1px;
}

/*Interno*/

.bg-interno{
    background: url(../img/5397533.png), url();
    background-size: cover;
    height: 300px;
}

.titulo-interno{
    font-weight: 900;
    font-size: clamp(3rem, -5.1124rem + 11.4833vw, 3.4rem);
    color: var(--cinza);
    font-family: Second-chances;

}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--marrom);
    content: var(--bs-breadcrumb-divider, "/");
}

.bg-secao-interno{
    background-image: url(../img/2148450518.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    margin-top: 8em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-interno-proposta, .titulo-interno-bercario{
    color: #fff !important;
}

.titulo-interno-proposta::after {
    content: url(../img/svg-titulo-branco.svg) !important;
    position: absolute;
    top: -32px;
    transform: rotate(90deg);
}


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

.mt-8{
    margin-top: 8em;
}

.v-interno-bercario:nth-child(1){
    width: 8%;
    top: 15%;
    right: 5%;
    animation: 4s infinite alternate vetor;
}

.v-interno-bercario:nth-child(2) {
    width: 10%;
    top: 43%;
    right: 9%;
    animation: 4s infinite alternate vetor;
}
.bg-estrutura {
    background-color: var(--amarelo);
    height: 450px;
    width: 100%;
    z-index: -1;
    bottom: 150px;
}
.titulo-sobre-mobile span::after{
    top: 220px !important;
}


#proposta, #obre-nos{
    scroll-margin-top: 10em;
}


/*Matricula*/
.secao-matricula{
    position: relative;
}
.secao-matricula img{
    width: 100%;
    height: calc(100vh - 56px);
    object-fit: cover;
}

.secao-matricula div{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    width: 100%;
    height: calc(100vh - 56px);
    top: 0;
}

.secao-matricula h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 9999;
    font-size: clamp(2.5em, -5.1124rem + 11.4833vw, 4rem);
    font-weight: 900;
    width: 23ch;
}

.secao-matricula h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 65%);
    color: #fff;
    z-index: 9999;
    font-size: clamp(2rem, -5.1124rem + 11.4833vw, 3rem);
    font-weight: 900;
    
}
/*Query Media*/

@media screen and (max-width:1399px) {
    .bg-depoimento {
        height: 400px;
        bottom: 31px;
    }
    .bg-estrutura {
        height: 330px;
        bottom: 120px;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .titulo-vetor {
        top: 3em;
        right: 140px;
    }
    .bg-depoimento {
        height: 440px;
        bottom: -35px;
    }

    .bg-estrutura {
        height: 425px;
        bottom: 130px;
    }
    .titulo-sobre-mobile span::after{
        top: 238px !important;
    }
}

@media screen and (max-width:1199px) {
    .prop-v1,
    .prop-v2 {
        width: 6em;
    }

}

@media screen and (max-width:1024px) {
    .bg-cinza img:nth-child(2) {
        top: 7%;
        right: 8%;
    }
}

@media screen and (max-width:991px) {
    .navbar-nav{
        text-align: center;
    }
    .nav-item::before {
        width: 30%;
        left: 220px;
    }

    .hero-secao {
        height: auto;
        padding-bottom: 5em;
    }

    .hero-secao .col-lg-6:nth-child(1) {
        text-align: center;
    }

    .hero-titulo span {
        padding-top: 1em;
    }

    .secao-proposta {
        padding-top: 6em;
    }

    .titulo-vetor {
        top: -1em;
        right: 150px;
    }

    .secao-proposta .row{
        text-align: center;
    }

    .secao-proposta .row .col-lg-6:nth-child(2){
        margin-top: 10em;
    }

    .bg-cinza img:nth-child(2) {
        right: 6%;
        width: 15%;
    }

    .bg-estrutura {
        height: 420px;
        bottom: 110px;
    }
    .titulo-sobre-mobile span::after{
        top: 155px !important;
    }
    
    .swiper-desktop{
        display: none !important;   
    }
    .carousel-banner-desktop{
        display: none !important; 
    }
}

@media screen and (min-width:992px) {
    .swiper-mobile{
        display: none !important;   
    }

    .carousel-banner-mobile{
        display: none !important;
    }
}

@media screen and (min-width:769px) {
    .secao-redes-mobile{
        display: none !important;
    }
}

@media screen and (max-width:768px) {
    .secao-desktop{
        display: none !important;
    }
    .bg-depoimento {
        padding-bottom: 100px;
    }

    .bg-depoimento {
        height: 295px;
        bottom: 31px;
    }
}


@media screen and (max-width:767px) {
    .hero-secao {
        padding-bottom: 4em;
    }

    .hero-secao {
        height: 100%;
    }

    .bg-topbar>.container>div {
        justify-content: center !important;
    }

    .bg-topbar>.container>div>ul {
        justify-content: center !important;
    }

    .bg-topbar>.container>div>ul>li {
        text-align: center;
        padding-bottom: .5em;
    }

    .bg-estrutura {
        height: 100%;

    }

    .secao {
        padding-top: 4em;
    }

    .secao-proposta {
        padding-top: 4em;
    }

}

@media screen and (max-width:732px) {
    .secao-matricula h1{
        width: 25ch;
    }
}


@media screen and (max-width:425px) {
    .secao-matricula h1{
        width: 25ch;
        font-size: 1.5em;
        transform: translate(-45%, -50%);
    }

    .secao-matricula h2{
        width: 25ch;
        font-size: 1.5em;
        transform: translate(-22%, 65%);
    }

    .nav-item::before {
        width: 30%;
        left: 120px;
    }

    .dropdown-item{
        text-align: center;
    }

    .bg-estrutura {
        bottom: 0px;
    }

    .bg-depoimento {
        height: 65%;
        bottom: 31px;
    }
}

.titulo-sucesso{
    color: #8BC34A;
    font-weight: 900;
    font-size: 3em;
}

.carousel-control-next, .carousel-control-prev {
    width: 10% !important;
}
