@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primarycolor: #7B04DB;
  --primary-color: #7B04DB;
  --main-color: #7B04DB;
  --background-color: #d9d9d9;
  --font-color: #2c2c2c;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Roboto", sans-serif;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: auto;
  background-color: var(--background-color);
  background-image: linear-gradient(
    to right,
    var(--background-color),
    var(--main-color)
  );
}
.aprova-facil-feature-content-2{
  display: flex;
  flex-direction: column-reverse;
  width: 60%;
  gap: 1rem;
}
.nao-selecionavel {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.navbar {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  height: 68px;
  align-items: center;
  justify-content: space-between;
}

.navbar #leftside {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar #leftside #linha {
  margin-left: 15px;
}

.navbar #leftside .collapse .navbar-nav {
  display: flex;
  list-style: none;
  text-decoration: none;
}

.navbar #leftside .collapse .navbar-nav .nav-item .opt {
  margin-left: 57px;
  text-decoration: none;
  font-family: "Roboto";
  font-size: 18px;
  color: var(--font-color);
  -webkit-transition: all 3s ease;
  transition: all 3s ease;
}

.navbar #rightside {
  display: flex;
  justify-content: flex-end;
}

.navbar #rightside .collapse {
  width: 100%;
  justify-content: end;
}

.navbar #rightside .navbar-nav {
  display: flex;
  list-style: none;
  text-decoration: none;
}

.navbar #rightside .navbar-nav .nav-item .opt {
  text-decoration: none;
  font-family: "Roboto";
  font-size: 18px;
  color: var(--font-color);
  margin-right: 20px;
}

.navbar #rightside .navbar-nav .nav-item .opt.large {
  text-decoration: none;
  font-family: "Roboto";
  font-size: 28px;
  font-weight: 300;
  color: white;
  -webkit-transition: color 0.3s, font-size 0.5s;
  transition: color 0.3s, font-size 0.5s;
}

.navbar #rightside .navbar-nav .nav-item .opt.large:hover {
  font-size: 30px;
}

.navbar #rightside .navbar-nav .nav-item .opt.signup {
  background-color: white;
  border-radius: 1.5rem;
  text-decoration: none;
  font-family: "Roboto";
  padding: 8px;
  font-size: 28px;
  font-weight: 400;
  color: var(--main-color);
  -webkit-transition: color 0.3s, background-color 0.8s;
  transition: color 0.3s, background-color 0.8s;
}

.navbar #rightside .navbar-nav .nav-item .opt.signup:hover {
  opacity: 70%;
}

#starter-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
}

#starter-content #slogan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 48%;
  min-width: 300px;
  z-index: 2;
}

#starter-content #slogan #insignia {
  background-color: white;
  width: max-content;
  padding: 15px;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  opacity: 0;
  -webkit-animation: slideInFromLeft 1s ease-out forwards;
  animation: slideInFromLeft 1s ease-out forwards;
}

#starter-content #slogan #insignia #insignia-text {
  text-align: center;
}

#starter-content #slogan #insigina-icon {
  width: 22px;
  padding: 3px;
}

#starter-content #slogan #slogan-main {
  font-weight: 800;
  font-size: 128px;
  color: var(--main-color);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

#starter-content #slogan #slogan-main #book-svg {
  width: 180px;
  height: 100px;
}

#starter-content #slogan #slogan-main .typewriter {
  overflow: hidden;
  height: 340px;
}

#starter-content #slogan #slogan-main .typewriter #typewriter-cursor {
  display: inline-block;
  font-weight: bold;
  -webkit-animation: blink 1.5s steps(1) infinite;
  animation: blink 1.5s steps(1) infinite;
}

#starter-content #slogan #slogan-secondary {
  font-size: 42px;
  font-weight: 400;
  color: var(--font-color);
  opacity: 0;
  -webkit-animation: slideInFromLeft 1s ease-out forwards;
  animation: slideInFromLeft 1s ease-out forwards;
}

#starter-content #homeimg {
  width: 730px;
  height: 749px;
}

#select-type-client {
  margin-top: 7rem;
  background-color: white;
  padding: 1.8rem;
  border-radius: 16px 16px 0 0;
  text-align: center;
}

#select-type-client #buttons-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#select-type-client #buttons-container #button-background {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s linear;
  -webkit-transition: transform 0.5s linear;
  transition: transform 0.5s linear;
  z-index: 0;
  padding: 2px;
  border-radius: 10px;
}

#select-type-client #buttons-container #aluno-container {
  background-color: transparent;
}

#select-type-client #buttons-container #aluno-container #aluno-button {
  border-radius: 16px 0 0 16px;
  border: none;
}

#select-type-client #buttons-container #aluno-container #aluno-button div {
  width: 69.36px;
}

#select-type-client #buttons-container #professor-container #professor-button {
  border-radius: 0 16px 16px 0;
  border: none;
}

#select-type-client #buttons-container #professor-container #professor-button div {
  width: 69.36px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
  -webkit-transition: background-color 0.5s linear, -webkit-transform 0.5s linear;
  transition: background-color 0.5s linear, transform 0.5s linear;
  font-size: 16px;
  position: relative;
}
.tab-btn.active {
  background-color: #007bff;
  color: #fff;
  -webkit-transform: translateX(1px);
  transform: translateX(1px);
}
.tab-btn.active::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 5px;
  z-index: -1;
}

.feature {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 60px;
}

.feature #video .overlay {
  display: none;
}

.feature .feature-text-container {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}
.feature-text-container .feature-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}
.feature-content{
  display: flex;
  flex-direction: column-reverse;
}
.feature .feature-text-container .feature-title {
  color: var(--main-color);
  font-size: 58px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.feature .feature-text-container .feature-text {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
}

.feature .feature-text-container .small-text {
  color: var(--main-color);
  font-size: 1rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.feature.reversed {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  border-radius: 0px;
}

.feature.reversed .feature-text-container {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

.feature.reversed .feature-text-container .feature-title {
  color: var(--main-color);
  font-size: 58px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.feature.reversed .feature-text-container .feature-text {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
}

.feature.last {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

#border {
  background-color: white;
  display: flex;
  justify-content: center;
}

#border div {
  border-top: 1px solid var(--primary-color);
  width: 50%;
}

.container-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: white;
}

.container-partners .titulo {
  margin-top: 2.4rem;
  color: var(--main-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
}

.container-partners .titulo.secundario {
  color: #acabab;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.8rem;
  position: absolute;
  top: 0;
  margin-bottom: 10px;
  z-index: 10;
  margin-top: 4rem;
  margin-left: 1.5rem;
  text-transform: uppercase;
}

.container-partners #numbers {
  margin-top: 2.5rem;
  width: 40%;
}

.container-partners #numbers .square-holder {
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.container-partners #numbers .square-holder .square {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container-partners #numbers .square-holder .square h1 {
  font-size: 3rem;
  color: var(--main-color);
}

.container-partners #numbers .square-holder .square p {
  text-align: center;
  font-size: 1rem;
  color: #acabab;
}

.container-partners .partners {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.container-partners .partners #partner {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.container-partners .partners #partner div img {
  width: 250px;
  height: auto;
  margin-left: 2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}

.container-partners .partners #partner div .colegio-flecha-partner,
.container-partners .partners #partner div .neuro-educa-partner,
.container-partners .partners #partner div .enem10x-partner {
  flex: 1;
}

.container-partners .partners #partner {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.container-partners .partners #partner div img {
  width: 250px;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}

.footer-container {
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.footer-container .footer {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: #acacac;
  padding: 3rem 0;
  border-radius: 2rem;
  margin-bottom: 0;
}

.footer-container .footer .container {
  max-width: 1170px;
  margin: auto;
}

.footer-container .footer .container .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-container .footer .container .row .footer-col {
  flex: 1;
  width: 25%;
  padding: 0 1rem;
}

.footer-container .footer .container .row .footer-col #methods {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-container .footer .container .row .footer-col #methods .method {
  width: 5rem;
}

.footer-container .footer .container .row .footer-col .container-email {
  display: flex;
}

.footer-container .footer .container .row .footer-col .container-email .email-input {
  font-size: 18px;
  padding: 10px;
  border-radius: 1rem 0 0 1rem;
  border: none;
  width: 65%;
}

.footer-container .footer .container .row .footer-col .container-email button {
  font-size: 18px;
  border-radius: 0 16px 16px 0;
  background-color: var(--main-color);
  color: #ffffff;
  border: none;
  padding: 8px;
}

.footer-container .footer .container .row .footer-col .container-email button:hover {
  cursor: pointer;
  opacity: 0.6;
}

.footer-container .footer .container .row .footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-container .footer .container .row .footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--main-color);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-container .footer .container .row .footer-col ul {
  list-style: none;
}

.footer-container .footer .container .row .footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-container .footer .container .row .footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #fafafa;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-container .footer .container .row .footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-container .footer .container .row .footer-col .social-links {
  display: flex;
  flex-direction: column;
}

.footer-container .footer .container .row .footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer-container .footer .container .row .footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

#price-table-container {
  background-color: #ffffff;
  padding: 5rem;
}

body .content {
  display: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

body .content.active {
  display: flex !important;
  opacity: 1;
}

body .hidden {
  opacity: 0 !important;
  filter: blur(5px) !important;
  -webkit-transition: all 1s !important;
  transition: all 1s !important;
  -webkit-transform: translateX(-100%) !important;
  transform: translateX(-100%) !important;
}

@media (prefers-reduced-motion: reduce) {
  body .hidden {
    -webkit-transition: none !important;
    transition: none !important;
  }
}

body .show {
  opacity: 1 !important;
  -webkit-transition: all 1s !important;
  transition: all 1s !important;
  filter: blur(0) !important;
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

body .hidden.right {
  -webkit-transition-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}
body .hidden.left {
  -webkit-transition-delay: 1s !important;
  transition-delay: 1s !important;
}
.navbar.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar.fixed .navbar-nav .nav-item .nav-link {
  color: var(--main-color) !important;
}

@media (max-width: 1540px) {
  #starter-content .animated-video {
    display: none;
  }
}
@media only screen and (max-width: 1387px) {
  body .container-partners #numbers {
    width: 50%;
  }
  .container-partners .partners #partner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 2rem;
    margin-top: 4rem;
  }

  .container-partners .partners #partner div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container-partners .partners #partner div img {
    width: 200px;
    margin: 0;
  }
}

@media only screen and (max-width: 1024px) {
  body .container-partners #numbers {
    width: 60%;
  }
  #starter-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: unset;
    margin: 0 10px;
  }
  #starter-content #slogan, #starter-content video.animated-video {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    margin-left: 0;
  }
  #starter-content video.animated-video {
    margin-top: 2rem;
  }
  #starter-content video {
    display: none;
  }
  .feature.reversed {
    flex-direction: column;
  }
  .feature.reversed .feature-text-container {
    width: 100%;
    height: auto;
    margin-top: 8%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature.content.active {
    flex-direction: column;
    align-items: center;
  }
  .feature {
    flex-direction: column;
  }
  .feature img {
    width: 100%;
    height: fit-content;
  }
  .feature #video {
    position: relative;
    width: 100%;
  }
  .feature #video video {
    width: 100%;
  }
  .feature #video .overlay {
    top: 30%;
    left: 0;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.041);
    border-radius: 1rem;
  }
  .feature #video .overlay .overlay-text {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
  }
  .feature .feature-text-container {
    width: 100%;
    height: auto;
    margin-top: 8%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-container .footer {
    width: 100%;
    border-radius: 0;
  }
  .container-partners .partners #partner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 2rem;
    margin-top: 4rem;
  }
  .container-partners .partners #partner div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container-partners .partners #partner div img {
    width: 200px;
    margin: 0;
  }
}
video {
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 850px) {
  body .container-partners #numbers {
    width: 70%;
  }
  body .container-partners .partners #partner div img {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  body .container-partners {
    margin: 15px 15px 0 15px;
  }
  body .container-partners .titulo {
    text-align: center;
  }
  body .container-partners #numbers {
    width: 80%;
  }
  body .container-partners #numbers .section .container .row {
    margin-top: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body .container-partners .partners .titulo.secundario {
    margin-left: 0;
    margin-top: 3rem;
  }
  #price-table-container {
    margin: 15px 15px 0 15px;
  }
  .navbar #leftside #navbarNavDropdown {
    background-image: none !important;
    background-color: transparent;
  }
  #starter-content video {
    display: none;
  }
  .feature.reversed {
    flex-direction: column;
  }
  .feature {
    flex-direction: column;
  }
  .feature img {
    width: 100%;
    height: fit-content;
  }
  .feature .feature-text-container {
    width: 100%;
    height: auto;
    margin-top: 8%;
  }
  .container-partners .partners {
    width: 100%;
  }
  .container-partners .partners #partner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
  }
  .container-partners .partners #partner div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container-partners .partners #partner div img {
    width: 180px;
    margin: 0;
  }
  .container-partners .partners .titulo.secundario {
    margin-left: 0;
    text-align: center;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .navbar.navbar-expand-md {
    height: auto;
  }
  .navbar.navbar-expand-md #leftside {
    padding: 0;
    -webkit-transition: none;
    transition: none;
  }
  .navbar.navbar-expand-md #leftside .collapsing {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .navbar.navbar-expand-md #leftside .navbar-toggler {
    font-size: 28px;
    margin-right: 10px;
    border: none;
    color: #fafafa;
  }
  .navbar.navbar-expand-md #leftside .collapse {
    background-color: var(--background-color);
    background-image: linear-gradient(
      to right,
      var(--background-color),
      var(--main-color)
    );
    -webkit-transition: none;
    transition: none;
  }
  .navbar.navbar-expand-md #leftside .collapse .navbar-nav {
    align-items: center;
    -webkit-transition: none;
    transition: none;
  }
  .navbar.navbar-expand-md #leftside .collapse .navbar-nav .nav-item .opt {
    margin-left: 0;
  }
  .navbar.navbar-expand-md #leftside #linha {
    display: none;
  }
  .navbar.navbar-expand-md #rightside {
    padding: 0;
  }
  .navbar.navbar-expand-md #rightside .collapsing {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .navbar.navbar-expand-md #rightside .collapse {
    background-color: var(--background-color);
    background-image: linear-gradient(
      to right,
      var(--background-color),
      var(--main-color)
    );
  }
  .navbar.navbar-expand-md #rightside .collapse .navbar-nav {
    align-items: center;
  }
  .navbar.navbar-expand-md #rightside .collapse .navbar-nav .nav-item .opt {
    margin: 0;
    padding: 8px;
  }
  .navbar.navbar-expand-md #rightside .collapse .navbar-nav .nav-item .opt.signup {
    text-decoration: none;
    font-family: "Roboto";
    font-size: 28px;
    font-weight: 300;
    color: white;
    background-color: transparent;
    border: none;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }
  .navbar.fixed {
    position: relative;
  }
  #select-type-client {
    margin-top: 3.5rem;
    padding: 50px;
    margin: 15px;
  }
  #starter-content {
    margin: 30px;
    width: 92%;
  }
  #starter-content #slogan #slogan-main {
    font-size: 64px;
  }
  #starter-content #slogan #slogan-main .typewriter {
    height: 180px;
  }
  #starter-content #slogan #slogan-secondary {
    font-size: 21px;
    max-width: 94%;
    line-height: 1.2;
    word-wrap: break-word;
    text-align: justify;
  }
  #starter-content #slogan #slogan-secondary #logo {
    width: 100%;
    height: auto;
  }
  #starter-content #slogan #insignia {
    height: auto;
  }
  #starter-content video {
    display: none;
  }
  .feature {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 15px 15px 0 15px;
    padding: 50px;
  }
  .feature #video {
    position: relative;
    width: 90%;
  }
  .feature #video video {
    width: 100%;
  }
  .feature #video .overlay {
    top: 30%;
    left: 0;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.041);
    border-radius: 1rem;
  }
  .feature #video .overlay .overlay-text {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
  }
  .feature img {
    width: 100%;
    height: auto;
  }
  .feature .feature-text-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    padding: 10px;
  }
  .feature .feature-text-container .feature-title {
    font-size: 43.5px;
  }
  .feature .feature-text-container .feature-text {
    font-size: 26px;
  }
  .feature.reversed {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 15px;
    padding: 50px;
  }
  .feature.reversed img {
    width: 100%;
    height: auto;
  }
  .feature.reversed .feature-text-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    padding: 10px;
  }
  .feature.reversed .feature-text-container .feature-title {
    font-size: 43.5px;
  }
  .feature.reversed .feature-text-container .feature-text {
    font-size: 26px;
  }
  body .container-partners .partners #partner {
    flex-direction: column;
  }
  body .container-partners .partners #partner div img {
    margin-left: 0;
    margin-top: 2rem;
  }
  .planos {
    display: flex;
    flex-direction: column;
    margin: 3rem;
  }
  .planos .plano-professor {
    width: 100%;
    height: auto;
  }
  .planos .plano-professor .plano-precos button {
    margin-bottom: 0.5rem;
  }
  .planos .plano-professor .professor {
    padding: 2rem 2rem 0.3rem 2rem;
    width: 100%;
    height: auto;
  }
  .planos .plano-professor .professor h2 {
    font-size: 2.25rem;
  }
  .planos .plano-professor .professor p {
    margin: 1rem;
    width: 100%;
    height: auto;
    padding: 1rem;
  }
  .planos .plano-professor img {
    width: 100%;
    height: auto;
  }
  .planos .plano-aluno {
    width: 100%;
    height: auto;
    margin: 3.5rem 0 0 0;
  }
  .planos .plano-aluno .plano-precos button {
    margin-bottom: 0.5rem;
  }
  .planos .plano-aluno .aluno {
    padding: 2rem 2rem 0.3rem 2rem;
    width: 100%;
    height: auto;
  }
  .planos .plano-aluno .aluno h2 {
    font-size: 2.25rem;
  }
  .planos .plano-aluno .aluno p {
    margin: 1rem;
    width: 100%;
    height: auto;
    padding: 1rem;
  }
  .planos .plano-aluno img {
    width: 100%;
    height: auto;
  }
  .container-partners .partners #partner {
    display: flex;
  }
  .container-partners .partners #partner div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container-partners .partners #partner div img {
    width: 200px;
    margin: 0;
  }
  .footer {
    padding: 2.8rem;
  }
  .footer .container .row .footer-col {
    flex: 1;
    width: 50%;
  }
  .footer .container .row .footer-col ul {
    padding-left: 0.3rem;
  }
  .footer .container .row #email-div {
    flex: none;
    width: 100%;
  }
}

/* Otimizações para iOS */
@supports (-webkit-touch-callout: none) {
  .feature {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }

  .hidden {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }

  .show {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }

  video {
    display: none !important;
  }
}
@media only screen and (max-width: 500px) {
#typewriter-text {
  font-size: 54px !important;

}
.feature-title{
  font-size: 38px !important;
}
}
/* Safari/WebKit specific fixes */
@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    #starter-content {
      -webkit-box-align: center;
      -webkit-box-pack: justify;
      -webkit-flex-direction: row;
      -webkit-align-items: center;
      -webkit-justify-content: space-between;
    }
    #starter-content #slogan {
      -webkit-align-items: flex-start;
      -webkit-justify-content: center;
    }
    #starter-content video.animated-video {
      -webkit-border-radius: 1rem;
      -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
      -webkit-transform: translateY(-10px);
    }
  }
}

@media (max-width: 600px) {
  #starter-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.feature-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(123, 4, 219, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-point:hover {
  background: rgba(123, 4, 219, 0.1);
  transform: translateX(10px);
}

.feature-point i {
  font-size: 1.5rem;
  color: var(--main-color);
  min-width: 2rem;
  text-align: center;
}

.feature-point span {
  font-size: 1.1rem;
  color: var(--main-color);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .feature-points {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .feature-point {
    padding: 0.8rem;
  }

  .feature-point i {
    font-size: 1.2rem;
  }

  .feature-point span {
    font-size: 1rem;
  }
}

.aprova-facil-feature {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 60px;
}

.aprova-facil-feature.reversed {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  border-radius: 0px;
}

.aprova-facil-text-container {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}

.aprova-facil-feature-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.texto-feature{
  padding: 0.8rem !important;
  font-size: 16px !important;
}
.aprova-facil-title {
  color: var(--main-color);
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.aprova-facil-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B00, #FFA500);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
}

.aprova-facil-text {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
}

.aprova-facil-feature-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.aprova-facil-feature-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.aprova-facil-feature-point:hover {
  background: rgba(255, 107, 0, 0.1);
  transform: translateX(10px);
  box-shadow: 
    0 6px 8px rgba(0, 0, 0, 0.12),
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.aprova-facil-feature-point i {
  font-size: 1.5rem;
  color: #FF6B00;
  min-width: 2rem;
  text-align: center;
}

.aprova-facil-feature-point span {
  font-size: 1.1rem;
  color: var(--main-color);
  line-height: 1.4;
}

@media only screen and (max-width: 768px) {
  .aprova-facil-feature {
    flex-direction: column;
    padding: 30px;
  }
  .aprova-facil-feature-content {
    flex-direction: column;
    
  }
  .aprova-facil-feature-content-2 {
    flex-direction: column;
    width: 100%;
  }
  .aprova-facil-feature.reversed {
    flex-direction: column;
  }

  .aprova-facil-text-container {
    width: 100%;
    margin-top: 2rem;
  }

  .aprova-facil-video {
    width: 100% !important;
    margin: 1rem 0;
  }

  .aprova-facil-title {
    font-size: 38px;
  }

  .aprova-facil-text {
    font-size: 16px;
  }

  .aprova-facil-feature-points {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .aprova-facil-feature-point {
    padding: 0.8rem;
  }

  .aprova-facil-feature-point i {
    font-size: 1.2rem;
  }

  .aprova-facil-feature-point span {
    font-size: 1rem;
  }
}

/* Otimizações para iOS */
@supports (-webkit-touch-callout: none) {
  .aprova-facil-video {
    display: none !important;
  }
}

.aprova-facil-video {
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin: 2rem;
  max-width: 100%;
  height: auto;
}

.texto-feature {
  padding: 0.8rem !important;
  font-size: 16px !important;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}