@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Raleway", sans-serif;
}

:root {
  --lightPurple: #AB8CFF;
  --blue: #467AFF;
  --white: #fff;
  --black: #000;
  --gradient: linear-gradient(247deg, #467AFF 0.1%, #AB8CFF 100%);
  --standardBoxShadow: 0 0 27.5px 0 rgba(0, 0, 0, 0.25);
  --heavyBoxShadow: 0 0 27.5px 5px rgba(0, 0, 0, 0.25);
  --standardBorderBottom: 0 0 4px 0 solid linear-gradient(247deg, #467AFF 0.1%, #AB8CFF 100%);

}

/* Shared */
.bordered-bottom {
  position: relative;
}

.outfit {
  font-family: 'Outfit';
}

.bordered-bottom::after {
  content: "";
  background: var(--gradient);
  display: block;
  height: 5px;
  width: 100%;
  margin: 0;
  position: absolute;
  bottom: -5px;
  border: none;
}

/* Nav */
.nav .container {
  padding: 30px 0 20px;
}

.nav .dropdown-toggle {
  background: transparent;
  border: none;
  padding: 0;
  font-weight: 700;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: auto;
}
.dropdown-menu.show{
  padding: 0;
  overflow: hidden;
}
.dropdown-item{
  padding: 10px 10px;
}
.dropdown-item:hover{
 background-color: var(--blue);
 color: var(--white);
}
.nav .dropdown-toggle img {
  width: 15px;
}

.promotional-offer {
  background: var(--gradient);
  padding: 25px 0 5px;
  color: var(--white);
  top: -50px;
  max-width: 170px;
  position: absolute;
  border-radius: 0 0 30px 30px;
  right: 75px;
}

.promotional-offer h6 {
  font-weight: 700;
  font-size: 21px;
}

.promotional-offer h5 {
  font-weight: 700;
  font-size: 27px;
}

/* Hero / Form */
.section-hero {
  padding: 10px 0 40px;
}

.hero-container {
  min-height: 650px;
  border-radius: 60px;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}

.hero-text {
  color: var(--white);
  font-size: 40px;
  font-family: 'Outfit';
  font-weight: 400;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  margin-top: 30px;
}

.hero-text h1::after {
  content: '';
  height: 100%;
  left: 0;
  top: 50%;
  padding: 40px 0;
  z-index: -1;
  position: absolute;
  width: 650px;
  background: var(--gradient);
  opacity: 0.75;
  border-radius: 0 30px 30px 0;
  transform: translate(-20%, -50%);
}

.selos {
  display: flex;
  margin-top: 35px;
  gap: 25px;
}

.selos.mobile {
  display: none;
}

.selos img {
  max-height: 60px;
  padding: 0;
  max-width: 120px;
  object-fit: contain;
}

.selos .img-fluid {
  max-width: 60px;
}

.form {
  background-color: var(--white);
  height: 550px;
  width: 400px;
  padding: 40px 35px 45px;
  margin-left: auto;
  border: 5px solid var(--gradient, #467AFF);
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
  justify-content: center;
  border-radius: 35px;
  overflow: hidden;
  z-index: 5;
}

.form::before {
  content: '';
  position: absolute;
  width: 700px;
  background: linear-gradient(247deg, #467AFF 0.1%, #AB8CFF 100%);
  height: 150%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
  z-index: -5;
}

label.error {
  color: red;
  text-align: center;
  font-size: 12px;
}

::placeholder {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
}

.form-inputs {
  display: flex;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  font-family: 'Outfit';
  position: relative;
  z-index: 99999;
}

.form-inputs input,
.form-inputs span.select2 {
  border: none;
  border-bottom: 1px solid var(--black);
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
}

.select2-results {
  font-family: 'Outfit';
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background-color: var(--blue);
}
.select2-container--default .select2-selection--single {
  border: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--black);
  padding: 0;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.form::after {
  content: '';
  position: absolute;
  background: var(--white);
  inset: 5px;
  border-radius: 30px;
  z-index: -1;
}

.form_header {
  margin-bottom: auto;
}

.form_header h1 {
  font-size: 32px;
  font-weight: 700;
}

.cta-button,
.modal .btn {
  background: var(--gradient);
  font-family: 'Outfit';
  width: 230px;
  margin-top: 20px;
  height: 45px;
  display: flex;
  border-radius: 50px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  transition: all 0.3s ease;
  font-weight: 700;
}

.cta-button:hover {
  transform: scale(1.05);
  color: var(--white);
  box-shadow: var(--standardBoxShadow);
}

/* Checkbox */
.check-container {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.check {
  position: relative;
  appearance: none;
}

.check-toggle {
  position: absolute;
  left: 0;
  top: 15%;
  height: 15px;
  width: 15px;
  border-radius: 0.25em;
  border: 2px solid var(--black);
}

.check-toggle+.check-svg {
  position: absolute;
  left: 0;
  top: 10%;
  height: 20px;
  width: 20px;
  transition: stroke-dashoffset 0.5s ease-out;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.check:checked+.check-toggle+.check-svg {
  stroke-dashoffset: 0;
}

.check-label {
  font-size: 16px;
  width: 100%;
  user-select: none;
  margin: 0;
}

.form-check {
  max-width: 330px;
  width: 100%;
  padding: 0;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#politica-link {
  color: var(--blue);
  font-size: 14px;
  line-height: 100%;
  text-decoration-line: underline;
}
#politica-link:hover{
  color: var(--lightPurple);
}
/* TY form */
.form.ty {
  height: auto;
  min-height: 300px;
}

.form.ty::before {
  height: 500px;
  width: 500px;
}

.ty h3 {
  text-align: center;
  text-wrap: balance;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 24px;
}

/* Section 1 Vision Geral */
.section-vision {
  padding: 20px 0;
}

.text-underline-gradient {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 15%;
  text-underline-offset: 5%;
  text-underline-position: from-font;
}

.section-vision h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 140%;
  max-width: 200px;
  margin: 0 0 25px;
}

.section-vision a {
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
}

.section-vision p {
  text-wrap: balance;
  line-height: 1.2;
}

.section-vision .img-fluid {
  aspect-ratio: 580/480;
  max-width: 580px;
  border-radius: 50px;
  transform: rotate(-6deg);
  transition: all 0.5s ease;
  object-fit: cover;
  box-shadow: var(--standardBoxShadow);
}

.section-vision .img-fluid:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: var(--heavyBoxShadow);
}

/* Advantages */
.section-advantage {
  padding: 70px 0;
  background: linear-gradient(247deg, var(--blue) 0%, var(--lightPurple) 100%);
  background-size: 100% 250px;
  background-repeat: no-repeat;
  background-position: center;
}

.section-advantage h1 {
  font-size: 36px;
  font-weight: 700;
}

.bordered-gradient {
  position: relative;
  background-color: var(--white);
  border-radius: 16px;
  padding: 45px 75px;
  z-index: 1;
  box-shadow: var(--standardBoxShadow);
  transition: all 0.3s ease;
}

.bordered-gradient:hover {
  transform: scale(1.02);
  box-shadow: var(--heavyBoxShadow);
}

.bordered-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;
  border-radius: inherit;
  background: linear-gradient(247deg, var(--blue), var(--lightPurple));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}


.advantage-box h3 {
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: 700;
  text-wrap: balance;
}

.advantage-title {
  margin: 0;
}

.advantage-box img {
  margin: 0 15px 0 20px;
}

.advantage-box-back {}

.advantage-description {
  font-size: 14px;
  line-height: 1.05;
  padding-left: 50px;
  text-wrap: balance;
}

.advantage-number {
  font-size: 60px;
  font-weight: 600;
}

/* Temario */
.section-temario {
  padding: 60px 0;
}

.section-temario .img-fluid {
  border-radius: 25px;
  object-fit: cover;
  transition: all 0.3s ease;
  height: 565px;
  width: 495px;
  transform: rotate(6deg);
  box-shadow: var(--standardBoxShadow);
}

.section-temario .img-fluid:hover {
  transform: rotate(0) scale(1.05);
  box-shadow: var(--heavyBoxShadow);
}

.temario h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.temario-box {
  padding: 20px 25px;
}

.topHeader button {
  background: transparent !important;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 800;
  border: none;
  box-shadow: none !important;
  outline: none;
}

.accordion-item {
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button {
  font-size: 16px;
  background-color: transparent;
  /*Troca cor do arrow*/
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.nested ul {
  list-style: none;
  font-size: 14px;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.accordion-button:not(.collapsed) {
  color: var(--black);
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.topHeader button::after {
  background-image: url(/img/icons/chevron_thick.svg) !important;
  background-size: 25px !important;
  width: 25px !important;
  height: 25px !important;
}

.accordion-body {
  padding: 0 0 15px 0;
}

.temario-extra {
  padding-bottom: 10px;
}

.nested .accordion-item {
  padding: 0 10px 0 0;
  background-color: #F7F7F7;
  border-radius: 25px !important;
  margin-bottom: 10px;
}

#salidasProfesionalesAccordion .nested ul {
  list-style: circle;
  margin-top: 15px;
  margin-bottom: 0;
}

#salidasProfesionalesAccordion .nested {
  background-color: #F7F7F7;
  padding: 20px 15px 10px;
  border-radius: 25px;
}

.temario-extra, .temario-title {
  line-height: 1.1;
  margin-bottom: 0;
}

/* Diploma */
.section-diploma h1 {
  font-size: 32px;
  font-weight: 700;
}

.section-diploma p {
  font-size: 18px;
}

.diploma-image-wrapper {
  position: relative;
  display: inline-block;
}

.diploma-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(45.14% 50% at 50% 50%, rgb(70 122 255 / 28%) 50%, rgb(255 255 255 / 14%) 100%);
  z-index: 1;
  pointer-events: none;
}

.diploma-image-wrapper .img-fluid {
  position: relative;
  z-index: 2;
}

.bolsa h1 {
  font-size: 32px;
  font-weight: 700;
}

.partner-slider {
  margin-top: 25px;
  position: relative;
}

.partner-slider::after {
  content: '';
  width: 50px;
  height: 100%;
  position: absolute;
  background: linear-gradient(90deg, transparent 0%, #fff 100%);
  z-index: 9999;
  top: 0;
  right: 0;
}

.partner-slider::before {
  content: '';
  width: 50px;
  height: 100%;
  position: absolute;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
  z-index: 9999;
}

.partner-container {
  padding: 15px;
}

.partner-container img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.partner-slider ul {
  list-style: none;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  display: flex;
}

.partner-slider button {
  font-size: 0px;
  height: 25px;
  width: 25px;
  border-radius: 20px;
  background-color: #F7F7F7;
  transition: all 0.3s ease;
  border: 3px solid var(--blue);
}

.partner-slider button:hover {
  border: 3px solid var(--lightPurple);
}

.partner-slider .slick-active button {
  border: 3px solid var(--lightPurple);
  background-color: var(--lightPurple);
  box-shadow: var(--standardBoxShadow);
}

/* footer */
.section-footer {
  margin-top: 75px;
}

.underline-white {
  color: #fff;
  line-height: 120%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--White, #FFF);
  text-decoration-thickness: 15%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

.section-footer .backgrounded {
  padding: 75px 0;
  border-radius: 35px 35px 0 0;
  background: var(--Gradient, linear-gradient(247deg, #467AFF 0.1%, #AB8CFF 100%));
}

.section-footer .img-fluid {
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 25px;
}

.section-footer h1 {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.section-footer p {
  margin: 25px 0;
  font-size: 24px;
  color: var(--white);
  text-wrap: balance;
  line-height: 1.3;
}

.footer-btn {
  background: var(--white);
  border: none;
  width: 230px;
  height: 60px;
}

.footer-btn:hover {
  box-shadow: 0 0 27.5px 8px rgba(255, 255, 255, 0.25);
}

.footer-btn p {
  background: var(--gradient);
  text-transform: uppercase;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 24px;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}

/* Section ads */
.section-ads {
  padding: 20px 0;
  background: rgba(70, 122, 255, 0.15);
}

.section-ads img {
  width: 190px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(82%) saturate(5920%) hue-rotate(220deg) brightness(87%) contrast(101%);
}

.section-ads a {
  text-align: center;
}

/* media queries */
@media(max-width: 1200px) {
  .promotional-offer {
    right: 0;
  }

  .hero-text h1::after {
    width: 500px;
  }

  .section-vision .img-fluid {
    max-width: 100%;
  }

  .advantage-description {
    padding-left: 0;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .section-temario .img-fluid {
    height: 425px;
    width: 400px;
  }
}

@media(max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .form {
    width: 100%;
  }

  .hero-text {
    text-align: center;
    margin: 25px auto 30px;
  }

  .hero-text h1 {
    margin-top: 20px;
  }

  .hero-text h1::after {
    width: 100%;
    transform: translate(0, -50%);
    border-radius: 30px;
    padding: 50px 0;
  }

  .selos {
    display: none;
  }

  .selos.mobile {
    display: flex;
    margin-bottom: 50px;
    justify-content: center;
  }

  .promotional-offer {
    right: 0;
  }

  .advantage-box {
    height: 120px;
  }

  .advantage-box,
  .advantage-title {
    position: relative;

  }

  #box-1::after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    top: -40px;
    transform: rotate(140deg);
    height: 40px;
    background-image: url('/img/icons/hover_click.svg');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }

  .advantage-title {
    transition: all 0.2s ease-out;
  }

  .advantage-box .advantage-description {
    opacity: 0;
    z-index: -5;
    transform: translate(0, 100%);
    transition: all 0.2s ease-out;
    position: absolute;
    max-height: 100px;
  }

  .advantage-box:hover .advantage-title {
    opacity: 0;
    transform: translate(0, -100%);
    position: absolute;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .advantage-number {
    margin-right: 10px;
  }

  .advantage-box:hover .advantage-description {
    opacity: 1;
    margin-bottom: 0;
    transform: translate(0);
    transition: all 0.5s ease-in;
    position: relative;
  }

  .section-temario {
    padding: 20px 0;
  }

  .temario h1 {
    margin-top: 50px;
    text-align: center;
  }

  .section-temario .row,
  .section-temario .container {
    --bs-gutter-x: 0;
  }

  .section-diploma h1,
  .section-diploma p {
    text-align: center;
    text-wrap: balance;
  }

  .section-footer .container {
    padding: 0;
  }

  .section-footer h1 {
    font-size: 28px;
  }

  .section-footer p {
    font-size: 20px;
  }
  
  .bordered-gradient {
    padding: 25px 30px;
  }
}

@media(max-width: 768px) {
  .nav .container {
    padding: 10px 0;
  }
    
  .nav .img-fluid {
    width: 160px;
    margin-right: 20px;
  }

  .promotional-offer {
    top: 0;
    z-index: 125;
    position: fixed;
    padding: 10px 0 5px;
  }

  .dropdown {
    margin-top: 15px;
    width: auto;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .hero-text h1 {
    font-size: 38px;
    padding: 0 25px;
    width: fit-content;
    margin: 40px auto 30px;
  }

  .form {
    max-width: 400px;
    margin-inline: auto;
  }

  .form::before {
    width: 750px;
  }

  .section-vision * {
    text-align: center !important;
    text-wrap: balance !important;
    text-wrap-style: balance !important;
  }

  .section-vision h1 {
    max-width: 100%;
  }

  .section-vision .img-fluid {
    max-width: 300px;
    margin: 40px auto 0;
    display: block;
  }

  .advantage-number {
    width: 35px;
  }

  .advantage-box img {
    margin: 0 15px 0 5px;
  }

  .advantage-box {
    height: auto;
  }
.advantage-box .advantage-description{
    max-height: 200px;
}
  .advantage-box:hover .advantage-title {
    left: 45px;
    transform: translate(0%, -100%);
  }

  .section-temario .img-fluid {
    height: 265px;
  }

  .section-temario {
    padding: 0;
  }

  .section-diploma h1,
  .section-diploma p {
    line-height: 1.1;
  }

  .section-diploma p {
    font-size: 16px;
  }

  .diploma-image-wrapper {
    max-width: 330px;
    display: flex;
    margin: auto;
    justify-content: center;
  }

  .section-advantage {
    padding-bottom: 40px;
  }

  .bolsa {
    text-align: center;
    text-wrap: balance;
  }

  .bolsa h1 br {
    display: none;
  }

  .bolsa h1 {
    margin-bottom: 30px;
  }

  .section-footer {
    text-align: center;
    text-wrap: balance;
  }

  .footer-btn {
    margin: 0 auto 35px;
  }

  .section-footer .backgrounded {
    padding: 45px 0;
  }

  .section-footer .img-fluid {
    height: 250px;
    border-radius: 45px;
  }
}

@media (max-width: 575px) {
  .nav .col-12 {
    max-width: 100%;
    width: 100%;
    margin: auto;
  }

  .bordered-gradient:hover {
    transform: scale(1);
  }

  .section-advantage .bordered-gradient:hover {
    transform: scale(0.95);
  }
}

@media(max-width: 450px) {
  .promotional-offer {
    display: none;
  }

  .nav .position-relative {
    justify-content: center;
    max-width: 200px;
  }

  .nav .dropdown-toggle {
    font-size: 20px;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text h1 {
    font-size: 30px;
  }


  .section-temario .img-fluid {
    width: 300px;
    height: 200px;
  }
}

@media(max-width: 380px) {
  .nav .position-relative {
    max-width: 100%;
  }

  .section-vision {
    padding: 5px;
  }

  .bolsa p {
    line-height: 1.1;
    text-wrap: balance;
  }
}

.modal-content {
  background-color: var(--white) !important;
  color: #000 !important;
  border-radius: 30px;
  border: 3px solid var(--lightPurple);
}

.modal button.close {
  color: var(--blue) !important;
}