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



a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #007bff !important;
  outline-offset: 2px;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

/* Header Styles */
header {
  position: absolute;
  width: 100%;
  background-color: transparent;
  padding: 1.5em 0;
  background: linear-gradient(180deg, rgb(12 12 12 / 96%) 0%, rgb(0 0 0 / 0%) 99%);  
}

header #logo {
    width: 100%;
    max-width: 220px;
}

a.link-effect {
  background:
    linear-gradient(
      to right,
      rgba(100, 200, 200, 1),
      rgba(100, 200, 200, 1)
    ),
    linear-gradient(
      to right,
      rgba(255, 0, 0, 1),
      rgba(255, 0, 180, 1),
      rgba(0, 100, 200, 1)
    );
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
}

a.link-effect:hover {
  background-size: 0 2px, 100% 2px;
}


#navbarNav ul {
  gap: 9px;
  align-items: center;
}

#navbarNav .dropdown-menu{
    background: #0000007a;
    backdrop-filter: blur(11px);
    border: 1px solid #393939 !important;
    border-radius: 10px;
    color: #FFF;
}

#navbarNav ul li a {
  color: #FFF;
  font-weight: 600;
  font-size: 20px;
  font-family: 'Nunito', sans-serif;
}

#navbarNav ul li a:hover {
  color: #FFF;
  text-decoration: none;
}

#navbarNav .dropdown-menu a:hover, #navbarNav .dropdown-menu a:focus{
    background: #2f2f2f;
}

/* Hero Section Styles */
.hero-section {
  background-size: cover;
  color: white;
  padding: 100px 0;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-button {
  background-color: #ff6a00;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
}

.hero-button:hover {
  background-color: #e65c00;
}

.hero-section h1 {
  color: #FFF;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-top: 1em;
}
.hero-section h1 span{
    color: #dfffca;
    background: linear-gradient(98deg, #38ffbf, #ffd100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-section p {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 168%;
    text-shadow: 1px 2px 2px #000000d9;
}

.btn-cta {
    display: inline-flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 55px;
    color: #0F7A58;
    font-weight: bold;
    font-size: 18px;
    background: linear-gradient(135deg, #E7FFD1, #B8FFA9);
    border: 1px solid #00800017;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Efeito de shine único */
.btn-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        30deg,
        transparent 20%,
        rgba(255,255,255,0.6) 50%,
        transparent 80%
    );
    animation: sword-glow 4s infinite 2s cubic-bezier(0.4, 0, 0.2, 1); 
    transform: rotate(30deg);
    pointer-events: none;
}

@keyframes sword-glow {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(200%) rotate(30deg);
    }
}

.btn-cta-shadow:hover {
    
}

.btn-cta:hover, .btn-cta:active, .btn-cta:hover, .btn-cta:focus-visible {
    background: linear-gradient(135deg, #D4F5BC, #A0E895) !important;
    color: #0C5D43 !important;
    transform: scale(1.02);
}

/* Efeito de faísca no hover */
.btn-cta:hover::before {
    opacity: 0.8;
    animation-duration: 1.5s;
}


.btn-cta img {
  transition: transform 0.3s ease;
}

.btn-cta:hover img {
  transform: translateX(8px);
}

.btn-cta-purple {
  background: #A03EEA;
  color: #FFF;
}

.btn-cta-purple:hover, .btn-cta-purple:active {
  background: #8413d9 !important;
  color: #FFF !important;
  box-shadow: none;
}

.btn-login-top{
  color: #0F7A58 !important;
  font-weight: bold;
  font-size: 17px !important;
  background: linear-gradient(135deg, #E7FFD1, #B8FFA9);
  padding: 10px 15px 10px 15px;
  border-radius: 5px;  
  font-weight: bold !important;
}
.btn-login-top:hover{
    background: linear-gradient(135deg, #D4F5BC, #A0E895) !important;
    color: #0C5D43 !important;  
}

.btn-purple {
    padding: 10px 25px 10px 25px;
    border-radius: 5px;
    color: #FFF;
    font-weight: bold;
    background: #A03EEA;
    border: 0;
}

.btn-purple:hover, .btn-purple:active {
  background: #8413d9 !important;
  color: #FFF !important;
}
.btn-green {
  padding: 12px 25px 10px 25px;
  border-radius: 5px;
  color: #0F7A58;
  font-weight: 500;
  font-size: 17px;
  background: linear-gradient(135deg, #E7FFD1, #B8FFA9);
  transition: background 0.3s ease; 
}

.btn-green:hover {
  background: linear-gradient(135deg, #E0FFCA, #B5FFA3);
}


.relative{
  position: relative;
}
/* Titles and Spacing Styles */
.title-default {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #00AA74, #00855b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.emoji {
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}


.title-default span {
  color: #0a58ca;
}

.spacing-section {
  padding: 4.5em 0;
  width: 100%;
}

.spacing-section p {
  color: #525271;
  font-size: 16px;
}

.sub-title-default {
    font-size: 22px;
    color: #696984;
    font-weight: lighter;
    line-height: 1.4;
}

.features-section {
    padding-bottom: 4em;
    position: relative;
    
}

.feature-icon-home {
    margin-bottom: 15px;
    width: 100%;
    max-width: 95px;
    height: 95px;
}

.image-container-hidden {
  position: relative;  /* So the flower can be absolutely placed within it */
  overflow: hidden;    /* Hides any portion that goes outside, avoiding scrollbars */
}

.flower-green-right {
  position: absolute;
  top: 20%;
  right: -5%;          /* Negative offset ensures it doesn't create horizontal scroll */
  animation: rotateFlower 20s linear infinite;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Simple rotation keyframes */
@keyframes rotateFlower {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.feature-title {
    font-size: 22px;
    color: #59494A;
    font-weight: bold;
}

.feature-description {
    font-size: 16px;
    color: #696984;
    max-width: 90%;
    margin: 0 auto;
}

/* Animation Styles */
.left-to-right {
  animation: scroll-left 40s linear infinite;
}

.right-to-left {
  animation: scroll-right 40s linear infinite;
}

/* Cards Styles */
.cards-container {
    width: 100%;
    overflow-x: hidden;
    padding: 1em;
}

.cards-row {
  display: flex;
  white-space: nowrap;
}

.left-to-right, .right-to-left {
  width: calc(8% * 24);
  gap: 20px;
}

.right-to-left {
  margin-top: 1.5em;
}

.card {
  border: 0;
  display: inline-block;
  transition: all 0.3s ease;
}

.card img {
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 10px;
}

.card img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50.2222%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50.2222%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Background Styles */
.bg-vl{
background: linear-gradient(to bottom right, 
    #FFF4E4 0%, 
    #FFF 40%, 
    #FFF 60%, 
    #F2FFEE 100%);
}
.bg-purple-light {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgb(248 239 254) 85%), radial-gradient(ellipse at top left, rgb(228 241 255 / 50%), transparent 50%), radial-gradient(ellipse at top right, #f7edff, transparent 50%), radial-gradient(ellipse at center right, #eed8ff, transparent 50%), radial-gradient(ellipse at center left, rgb(255 200 205 / 50%), transparent 50%)
}

/* Gamified Card Styles */
.wrapper-gamified-card {
  background: #F9F7FE;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 20px;
  margin-top: 2em;
  align-items: center;
  justify-content: center;
}

.gamified-card-icon img {
  width: 72px;
}

.gamified-card-content h4 {
  font-size: 20px;
  color: #0a58ca;
  font-weight: bold;
}

.gamified-card-content p {
  color: #696984;
}

/* Gamified Area Styles */
.wrapper-gamified-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10em;
  height: 100%;
  pointer-events: none;
}

.wrapper-gamified-area .badge-character {
  pointer-events: none;
    max-width: 80%;
    position: relative;
    top: 5%;
}

.wrapper-gamified-area .badge-1 {
  position: absolute;
  max-width: 28%;
  top: 10%;
  left: 5%;
  z-index: -1;
}

.wrapper-gamified-area .badge-2 {
  position: absolute;
  max-width: 28%;
  top: 0;
  right: 0;
}

.wrapper-gamified-area .badge-3 {
  position: absolute;
  max-width: 28%;
  bottom: 15%;
  left: 3%;
  z-index: -1;
}

.wrapper-gamified-area .avatar-1 {
  position: absolute;
  max-width: 28%;
  top: 35%;
  right: -2%;
}

.wrapper-gamified-area .avatar-2 {
  position: absolute;
  max-width: 28%;
  bottom: -2%;
  right: 5%;
}

/* Image Tools Styles */
.wrapper-img-tools {
  position: relative;
}
.wrapper-img-tools img{
  z-index: 2 !important;
}
.wrapper-img-tools:before{
    position: absolute;
    content: '';
    border: 3px solid #fe990385;
    width: 89%;
    height: 113%;
    top: -5%;
    left: 3em;
    border-radius: 45px;
    z-index: 0;
}
.img-tools-left .wrapper-img-tools:before{
    left: 32px;
    width: 86%;
}
.relative-and-z-index{
  position: relative;
  z-index: 1;
}

.flex-end {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.flex-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.wrapper-img-tools .main-img {
  border-radius: 35px;
  width: 90%;
}
.video-wrapper{
  position: relative;
  border-radius: 35px;
}
.play-video {
    font-size: 10em;
    color: #FFF;
    position: absolute;
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;  
    animation: pulse 2s infinite ease-in-out;
    z-index: 2;
}
.play-video:hover{
  cursor: pointer;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.video-wrapper:before{
    content: '';
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 90%;
    height: 99%;
    border-radius: 35px;
    top: auto;
    left: 0;
    border: 0;
}
.video-wrapper video{
  border-radius: 35px;
  width: 90%;  
}

/* Tools Styles */
.tools-teacher-absolute-1 {
  position: absolute;
  left: -35%;
  top: 15%;
  max-width: 495px;
}

.tools-teacher-absolute-2 {
  position: absolute;
  left: -19%;
  bottom: -2%;
  max-width: 310px;
}
.tools-teacher-absolute-3{
    position: absolute;
    left: 30%;
    bottom: 60%;
    max-width: 150px;
    box-shadow: 3px 3px 24px 1px #686868a8;
    border-radius: 51%;
    animation: spin 15s linear infinite;
}

.note-position-1 {
  top: 150px;
}

.note-position-2 {
  top: 180px;
  left: 50px;
}

.note-position-3 {
  top: 160px;
  left: 100px;
}

.note-position-4 {
  top: 155px;
  left: 75px;
}

.animation-delay-1 {
  animation-delay: 1s;
}

.animation-delay-2 {
  animation-delay: 2s;
}

.note-amination {
  position: absolute;
  font-size: 35px;
  animation-name: notes;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  opacity: 0;
   background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    color: transparent; /* Outros navegadores que suportam background-clip */  
}

@keyframes notes {
  0% {
    font-size: 35px;
    opacity: 0; 
  }
  50% {
    opacity: 1; 
  }
  100% {
    font-size: 60px;
    margin-top: -150px;
    opacity: 0; 
  }
}
.wrapper__note__position{
    position: absolute;
    top: -103px;
    height: 100px;
    width: auto;
    pointer-events: none;
    z-index: 1;
    left: 30%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.tools-col p {
  margin-bottom: 1.5em;
}

.tools-student-absolute-1 {
  position: absolute;
  right: -20%;
  top: 20%;
  max-width: 495px;
}

.tools-student-absolute-2 {
  position: absolute;
  right: -8%;
  bottom: -18%;
  max-width: 310px;
}

/* Feature Card Styles */
.card-feature {
  border: 1px solid #8bc34a3d;
  border-radius: 20px;
  background: #FFFFFF;
  padding: 2em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 2em;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  transform: scale(0.98);
  border-bottom: 6px solid #eaeaea75;
}

.card-feature:hover{
  transform: scale(1);
box-shadow: 
    0 4px 6px -1px rgba(139, 195, 74, 0.1),
    0 2px 4px -2px rgba(139, 195, 74, 0.15),
    0 10px 15px -3px rgba(139, 195, 74, 0.12);
}

.card-feature h4 {
  font-size: 18px;
  color: #242331;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.4;
}

.feature-icon {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 100px;
  align-self: center;
  display: flex;
}

.feature-icon img {
  width: 80px;
}

.feature-title {
  flex-grow: 0;
}

.feature-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-content p {
  margin-bottom: 0;
  font-size: 16px;
  color: #797979;
}

/* Call to Action Banner Styles */
.cta-banner {
      background: linear-gradient(to bottom right, #FFF4E4 0%, #FFF 75%, #F2FFEE 100%);
  padding-top: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-banner img{
  max-width: 100%;
}
.cta-banner h5 {
  color: #394B55;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 59px;
}

.cta-banner h6 {
  margin-top: 1em;
  color: #1C272D;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

footer{
  background: #252525;
  padding: 2em 0;
}

footer a{
  color: #B2B3CF;
  text-decoration: none;
}
footer a:hover{
  cursor: pointer;
  color: #FFF;
}
footer span{
  color: #B2B3CF;
  display: block;
}
.wrapper-terms-footer{
  display: flex;
  flex-direction: row;
  gap:15px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}

.white-header{
  background: #FFF;
  box-shadow: 0px 10px 60px 0px rgba(38, 45, 118, 0.08);
  position: inherit;
  border-top: 3px solid #87e9a4;
}
.white-header #navbarNav ul li a{
  color: #252641;
}
.white-header .btn-purple{
  color: #FFF !important;
}
.white-header #navbarNav .dropdown-menu{
    background: #FFF;
    backdrop-filter: none;
    border-radius: 10px;
    color: #555;
    border: 1px solid #EAEAEA !important;
}
.white-header #navbarNav .dropdown-menu a:hover, .white-header #navbarNav .dropdown-menu a:focus{
  background: #EAEAEA;
}

.feature-section{
  padding: 4.5em 0;
  width: 100%;  
}
.section-blue-light{
  background: #F7FCFE;
}
.feature-section h2{
  color: #59494A;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;  
  line-height: 1.5;
  margin-bottom: 1em;
}
.feature-section p{
  color: #5E6282;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1.5em;
}
.img-feature{
  border:1px solid #DDDDDD;
  border-radius: 10px;
  box-shadow: 0px 10px 60px 0px rgba(38, 45, 118, 0.08);
  overflow: hidden;
  margin-right: 1em;
}

.img-feature img{
  width: 100%;
}
.img-feature-no-bg{
  border:none;
  background: transparent;
  box-shadow: none;
}
.reading-section-img-hero{
  margin-top: 2em;
  max-width: 100%;
}
.close-offcanvas{
    position: absolute;
    background: #ff000057;
    right: 3%;
    top: 2%;
    width: 40px;
    height: 40px;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 6px;
    z-index: 2;
}
.close-offcanvas:hover{
  cursor: pointer;
}
.default-section{
    padding: 2em 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #FFF4E4 0%, #FFF 40%, #FFF 60%, #F2FFEE 100%);
}
.default-section h1{
  
    font-weight: bold;
    background: linear-gradient(135deg, #00AA74, #00C788);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.default-section h4{
  color: #555555;
}
.fullpage-map {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.img-contact-us{
  padding: 10px;
}
.img-contact-us img{
  width: 100%;
}
.contact-form{
  background: #f5f5f5;
    padding: 2em;
    border-radius: 10px;
    border: 1px solid #EAEAEA;
}
.best-choice-title{
  font-size: 32px;
  color: #696984;
  font-family: 'Nunito', sans-serif;
}
.best-choice-title b{
  color: #ECA520;
}
.best-choice-title strong{
  color: #8FAE16;
}

#inner-header{
  background: #e9f8ff;
  padding: 1.6em;
}

#inner-header h1{
  font-weight: bold;
  margin-bottom: 0;
  color: #004379;
}

.page-content{
  padding-top: 2em;
  font-size: 18px;
  color: #555;  
  font-family: 'Nunito', sans-serif;
}
.page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6{
  font-weight: bold;
  color: #004379;
}
.page-content strong, .page-content b{
  color: #004379;
}

#cookie-banner {
    background: #ffffffcf;
    padding: 1em 1em;
    border-radius: 7px;
    flex-direction: column;
    max-width: 390px;
    margin: 0 auto;
    gap: 10px;
    bottom: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    right: 10px;
    left: auto;
    backdrop-filter: blur(5px);
    border: 2px solid #EAEAEA;
    box-shadow: 1px 1px 9px -2px #CCC;
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookie-banner.show {
    display: flex;
    animation: slideUp 0.5s ease-out forwards;
}


.song-1, .song-3{
  pointer-events: auto !important;
}
.song-1:hover, .song-3:hover{
  cursor: pointer;
}
.particles-header{
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.particles-header canvas{
  width: 100%;
  height: 100%;
}
.modal-lg {
  max-width: 80%;
}

/* Tornar o vídeo responsivo */
.modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-body video {
  width: 100%;
  height: auto;
}

.modal-dialog-price{
  max-width: 650px;
}
#videoPreview .modal-dialog, #videoVocabBeatsPreview .modal-dialog{
  max-width: 1250px;
  margin:0 auto;
}

.shadow-effect {
        background: #fff;
        padding: 20px;
        border-radius: 4px;
        text-align: center;
  border:1px solid #ECECEC;
        box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
    }
    #customers-testimonials .shadow-effect p {
        font-family: inherit;
        font-size: 17px;
        line-height: 1.5;
        margin: 0 0 17px 0;
        font-weight: 300;
    }
    .testimonial-name {
        margin: -17px auto 0;
        display: table;
        width: auto;
        background: #3190E7;
        padding: 9px 35px;
        border-radius: 12px;
        text-align: center;
        color: #fff;
        box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
    }
    #customers-testimonials .item {
        text-align: center;
        padding: 50px;
        margin-bottom:80px;
        opacity: .2;
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #customers-testimonials .owl-item.active.center .item {
        opacity: 1;
        -webkit-transform: scale3d(1.0, 1.0, 1);
        transform: scale3d(1.0, 1.0, 1);
    }
    .owl-carousel .owl-item img {
        transform-style: preserve-3d;
        max-width: 90px;
        margin: 0 auto 17px;
    }
    #customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
        background: #3190E7;
        transform: translate3d(0px, -50%, 0px) scale(0.7);
    }
#customers-testimonials.owl-carousel .owl-dots{
  display: inline-block;
  width: 100%;
  text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
  display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #3190E7;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

.page-main-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 450px;
    object-fit: cover;
    border-radius: 35px;
}   
.vocab-beats-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}
.vocab-beats-play{
    position: absolute;
    top: 20%;
    left: 10%;
}
.vocab-beats-song{
    position: absolute;
    top: 30%;
    right: -2%;  
}
.vocab-beats-disc{
    position: absolute;
    bottom: -6%;
    right: 8%;
}
.song-dots{
    position: absolute;
    right: -64px;
    top: 20%;
    opacity: 0.5;
}
.vocabBeatsWrapper:hover{
  cursor: pointer;
}
.banked-words-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}
.banked-words-icon1{
    position: absolute;
    top: 20%;
    left: 5%;  
}
.banked-words-icon2{
    position: absolute;
    top: 25%;
    right: 15%;  
}
.banked-words-icon3{
    position: absolute;
    right: -64px;
    top: 20%;
    opacity: 0.5; 
}

.bg-light-primary {
    background-color: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.btn-magic {
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient(115deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.2);
    transform: translateZ(0); /* Melhora a renderização */
}

/* Efeito de elevacao suave */
.btn-magic:hover {
    box-shadow: 0 8px 20px -3px rgba(5, 150, 105, 0.4),
                0 0 25px -5px rgba(5, 150, 105, 0.2);
}

/* Efeito de particulas voando */
.btn-magic::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 2%, transparent 20%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.15) 5%, transparent 25%);
    transform: translate(0, 0);
    animation: sparkle 8s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100%, 100%); }
}

/* Brilho suave melhorado */
.hover-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 45%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 55%
    );
    transform: rotate(25deg) translateX(-200%);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    mix-blend-mode: screen;
}

.btn-magic:hover .hover-shine {
    transform: rotate(25deg) translateX(200%);
}

/* Animação da seta original */
.arrow-wrapper {
    display: inline-block;
    margin-left: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-magic:hover .arrow-wrapper {
    transform: translateX(4px);
}

.icon-jet {
    width: 18px;
    height: 14px;
    transition: transform 0.3s ease;
}

/* Efeito de neon pulsante */
@keyframes neon-pulse {
    0% { filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.5)); }
    50% { filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.8)); }
    100% { filter: drop-shadow(0 0 2px rgba(16, 185, 129, 0.5)); }
}

.btn-magic:hover {
    animation: neon-pulse 1.5s infinite;
}

/* Borda sutil animada */
.btn-magic::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-magic:hover::before {
    opacity: 1;
}

.navbar-nav li span {
    background: linear-gradient(45deg, #FFC832, #FFD700);
    color: #453300;
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 60px;
    padding: 2px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.75em;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 200, 50, 0.3);
    animation: pulse 2s infinite, bounce 1.5s ease-in-out infinite;
    transform-origin: center bottom;
    border: 2px solid #FFD740;
    cursor: pointer;
    text-align: center;
    pointer-events: none;
}  

/* Media Queries */
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767px) {
  .flower-green-right, .song-dots{
    display: none;
  }    
  .vocab-beats-wrapper, .banked-words-wrapper{
    margin-bottom: 1.4em;
    transform: scale(0.8);
  }
  .card-feature{
    max-width: 500px;
    margin: 10px auto;    
  }
  .wrapper-img-tools:before{
    display: none;
  }
  .video-wrapper{
    margin-bottom: 1em;
  }
  .page-main-video{
    position: inherit !important;
  }
  .sub-title-default br{
    display: none;
  }

  .header{
    padding: 0 1em;
  }
  .white-header #navbarNav .dropdown-menu{
    background: #272629;
    border: 1px solid #5a585b!important;
  }
  .reading-section-img-hero{
    display: none;
  }
  .img-contact-us{
    margin-bottom: 1em;
  }
  .hero-section h1{
    font-size: 2em;
  }
  .hero-section p{
    font-size: 1em;
  }
  .btn-cta{
    padding: 10px 18px 10px 18px;
    font-size:14px;
  }
  header #logo{
    width: 210px;
  }
  
  .wrapper-gamified-card{
    flex-direction: column;
    text-align: center;
  }
  .tools-teacher-absolute-1, .tools-teacher-absolute-2, .tools-student-absolute-1, .tools-student-absolute-2{
    display: none;
  }
  .wrapper-img-tools .main-img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1em;
  }
  .wrapper-gamified-area{
    padding: 2em 0;
    margin: 2em 0;
  }
  .wrapper-gamified-area .badge-2{
    z-index: -1;
    top:-39px;
  }
  .wrapper-gamified-area .badge-3{
    bottom: -5%;
  }
  .hero-section p br{
    display: none;
  }
  .feature-section h2 br{
    display: none;
  }  
  .level-content-display h4{
    flex-basis: 100%;
    align-items: center;
    justify-content: center;
  }
  .img-feature{
    margin-bottom: 2em;
  }  
  header{
    z-index: 2;
  }  
  .hero-section{
    height: 550px;
    position: relative;
  }  
  .hero-section .row{
    position: relative;
    z-index: 1;
    pointer-events: none;
  }
  .hero-section:before{
    content: '';
    z-index: 1;
    background: rgb(0 0 0 / 68%);
    position: absolute;
    width: 100%;
    height: 100%;
  }  
  .navbar-toggler{
    background: #FFF !important;
    color: #A03EEA !important;
  }   
  .left-to-right, .right-to-left {
    width: calc(25% * 24);
    gap: 20px;
  }
  .navbar-menu{
      background: #000000a3;
      backdrop-filter: blur(11px);
      border-right: 1px solid #393939 !important;
      display: block;
  }
  .cards-container{
    margin-top: 1em !important;
  }
  .video-wrapper, .video-wrapper video, .play-video, .video-wrapper:before{
    width: 100%;
    border-radius: 8px;
  }
  .modal-lg{
    max-width: 100%;
  }
  #navbarNav ul{
    padding: 2em;
    align-items: flex-start;
  }   
  body{
    padding: 0 !important;
  }
  #navbarNav ul li a{
    display: block;
    width: 100%;
    text-align: left;
  }
  .title-default{
    font-size: 2em;
  }
  .sub-title-default{
    font-size: 1.2em;
  }
  .level-content-display h4{
    font-size: 1.3em;
  }
  .level-default{
    flex-basis: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;    
  }
  .spacing-section{
      padding: 2.0em 0;
  }
  .spacing-section p{
    font-size: 1em;
  }
  .wrapper-gamified-area .avatar-1{
    display: none;
  }
  .mobile-order-1{
    order:1;
  }  
  .mobile-order-2{
    order:2;
  }
  .cta-banner h5{
    font-size: 2em;
    line-height: 42px;
  }
  .feature-section {
    padding: 2.5em 0;
  }
  .cta-banner{
    text-align: center;
  }  
  .song-3{
    left: 2%;
    bottom: 10%;
  }
  .wrapper__note__position{
    top:50px;
    left: 8%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .cta-banner .container{
    max-width: 90%;
  }
  .flower-green-right, .song-dots{
    display: none !important;
  }    
  .wrapper-img-tools:before{
    display: none;
  }
  .page-main-video{
    position: inherit !important;
  }  
  .hero-section p br{
    display: none;
  }  
  .feature-section h2 br{
    display: none;
  }
  .level-content-display h4{
    flex-basis: 100%;
    align-items: center;
    justify-content: center;
  }
  .img-feature{
    margin-bottom: 2em;
  }
  header{
    z-index: 2;
  }  
  .hero-section{
    height: 730px;
    position: relative;
  }  
  .hero-section .row{
    position: relative;
    z-index: 1;
  }
  .hero-section:before{
    content: '';
    z-index: 1;
    background: rgb(0 0 0 / 40%);
    position: absolute;
    width: 100%;
    height: 100%;
  }  
  .navbar-toggler{
    background: #FFF !important;
    color: #A03EEA !important;
  } 
  .left-to-right, .right-to-left {
    width: calc(20% * 24);
    gap: 20px;
  }
  .navbar-menu{
      background: #0000007a;
      backdrop-filter: blur(11px);
      border-right: 1px solid #393939 !important;
      display: block;
  }
  #navbarNav ul{
    padding: 1em;
  }   
  #navbarNav ul li{
    margin-bottom: 1em;
  }
  body{
    padding: 0 !important;
  }
  #navbarNav ul li a{
    display: block;
    width: 100%;
  }
  .tools-teacher-absolute-1{
    left: -85px;
    top:27%;
  }
  .tools-teacher-absolute-2 {
      left: -6%;
      bottom: 11%;
  }  
  .wrapper-img-tools .main-img{
    width: 100%;
    margin-bottom: 2em;
  }
  .tools-leaners-main-img{
    margin-top: 2em;
  }
  .tools-student-absolute-1{
    right: -11%;
  }
  .tools-student-absolute-2 {
      right: -1%;
      bottom: 15%;
  }  
  .song-1{
      width: 80%;
  }
  .song-2{
    display: none;
  }
  .song-3{
    left: 0;
    top:0;
  }  
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {

  .flower-green-right{
    right: -20%;
    opacity: 0.3 !important;
  }  
  .hero-section p br{
    display: none;
  }    
  .img-feature{
    position: -webkit-sticky; 
    position: sticky;
    top: 0;       
  }
  header{
    z-index: 2;
  }
 
  .hero-section{
    height: 720px;
    position: relative;
  }
  .hero-section .row{
    position: relative;
    z-index: 2;
    pointer-events: none;
  }
  .hero-section:before{
    content: '';
    z-index: 1;
    background: rgb(0 0 0 / 40%);
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .left-to-right, .right-to-left {
    width: calc(14% * 24);
    gap: 20px;
  }
  .tools-teacher-absolute-1{
    position: absolute;
    left: -8%;
    top: 71% !important;
    max-width: 386px;
  }
  .tools-teacher-absolute-2{
    position: absolute;
    left: 9%;
    bottom: -72%;
    max-width: 310px;
  }
  .tools-student-absolute-1 {
      position: absolute;
      right: -12%;
      top: 75%;
      max-width: 419px;
  }
  .tools-student-absolute-2 {
      bottom: -81%;
      max-width: 310px;
  }        
  .card-feature{
    padding: 15px;
    border-radius: 15px;
  }
  .left-to-right, .right-to-left{
    width: calc(20% * 24);
  }
  #navbarNav ul li a{
    font-size: 16px;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399px) {

  .flower-green-right{
    right: -14%;
  }
  .tools-teacher-absolute-3{
    right: 0;
  }
  .song-2{
    
  }
  .img-feature{
    position: -webkit-sticky; 
    position: sticky;
    top: 0;       
  }  
  .left-to-right, .right-to-left {
    width: calc(12% * 24);
    gap: 20px;
  }
  .tools-teacher-absolute-1{
    position: absolute;
    left: 0%;
    top: 53%;
    max-width: 404px;    
  }
  .tools-teacher-absolute-1{
    position: absolute;
    left: -1%;
    bottom: -38%;
    max-width: 310px;
  }
  .song-1{
    max-width: 451px;
    left: -23%;
    bottom: -16%;
    top: auto;
  }
  header #logo {
    width: 250px;
  }  
}

@media (min-width: 1400px) and (max-width: 1799px) {
  .song-1{
    right: 38%;
    left: auto;
  }   
  .left-to-right, .right-to-left {
    width: calc(12% * 24);
  }
  header #logo {
    width: 280px;
  }  
}
