:root {
  --color-primary: #F0821E;
  --color-primary-lighter: hsl(29, 83%, 70%);
  --color-deep-black: #181818;
  --color-magenta-dark: #A62372;
  --color-white: #FFFFFF;
  --color-light: #f9f9f9;
  --color-gray: #6c6c6c;
  --color-light-pink: #FBEFF5;
  --color-green: #25D366;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-gray);
}

html {
  font-size: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--color-primary-lighter);
}

b {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Section title
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title h2>span {
  color: var(--color-white);
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn-get-started,
.btn-secondary {
  padding: 10px 15px;
  font-size: 17px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  border: 0;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: 0.5s;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-get-started {
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
  color: var(--color-white);
}

.btn-get-started:hover {
  color: var(--color-white);
  text-decoration: none;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #ffffffa9;
  color: var(--color-green);
  border: 1px solid var(--color-green);
}

.btn-secondary:hover {
  text-decoration: none;
  transform: scale(1.05);
}

@media (max-width: 768px) {

  .btn-get-started,
  .btn-secondary {
    font-size: 15px;
    padding: 15px 30px;
  }
}

/*--------------------------------------------------------------
# Imagens
--------------------------------------------------------------*/
.caixa {
  position: relative;
}

.caixa img {
  opacity: 1;
  border: 20px solid rgb(166, 35, 114, 1);
  border-radius: 57px 0px 100px;
}

.feedback .caixa img {
  width: 60%;
}

.about .caixa img {
  width: 90%;
  margin-left: 35px;
}

@media (max-width: 768px) {
  .feedback .caixa img {
    width: 80%;
    margin-top: 20px;
  }

  .about .caixa img {
    width: 100%;
    margin: 20px 0 0 0;
  }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  background: url('../img/background/bg-hero1.webp') no-repeat center center;
  background-size: cover;
}

.hero .logo img {
  max-height: 80px;
  margin: 35px 0;
}

.hero .hero-content h2 {
  font-size: clamp(25px, 5vw, 45px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.1em;
  color: var(--color-magenta-dark);
}

@media (min-width: 1600px) {
  .hero {
    height: auto;
    min-height: 700px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 600px;
    align-items: flex-end;
    padding-bottom: 50px;
    background: url('../img/background/bg-hero-mobile.webp') no-repeat center top;
    background-size: cover;
  }

  .hero .hero-content {
    text-align: center;
  }

  .hero .logo {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .hero .logo img {
    max-height: 40px;
    margin: 0;
  }
}


/*--------------------------------------------------------------
# Feedback
--------------------------------------------------------------*/
/* .feedback {
  padding: 60px 0;
  background-color: var(--color-magenta-dark);
}

.feedback .content {
  padding: 60px;
  background-color: var(--color-white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid var(--color-light);
}

.feedback .content .feedback-intro {
  font-weight: 600;
  font-size: clamp(20px, 4vw, 32px);
  line-height: clamp(30px, 5vw, 50px);
  margin-bottom: 20px;
}

.feedback .content .feedback-intro .highlight {
  color: var(--color-primary);
}

.feedback .content .feedback-text,
.feedback-final {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
}

.feedback .content .feedback-impact {
  font-weight: 600;
  font-size: clamp(20px, 4vw, 32px);
  color: var(--color-primary);
}

.feedback .content .feedback-final span {
  color: var(--color-primary);
}

.feedback .content .blockquote-box {
  width: 90%;
  max-width: 900px;
  border-radius: 15px;
  background-color: var(--color-magenta-dark);
  padding: 20px;
  text-align: justify;
  color: var(--color-white);
}

.feedback .content .feedback-quote-text {
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 600;
}

.feedback .content .feedback-quote {
  text-align: right;
  color: var(--color-white);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .feedback .content {
    padding: 15px;
    margin: 10px;
  }

  .feedback .content .feedback-intro,
  .feedback .content .feedback-impact {
    line-height: 1.4;
    text-align: center;
  }

  .feedback .content .img-feedback {
    width: 100%;
  }

  .feedback .content .blockquote-box {
    width: 100%;
    max-width: 1000px;
  }
} */

/*--------------------------------------------------------------
# roadmap
--------------------------------------------------------------*/
.roadmap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 50px 0 20px 0;
}

@media (min-width: 40rem) {
  .roadmap {
    flex-direction: row;
  }
}

.roadmap .section-title h2 {
  margin-bottom: 40px;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-gray);
}

.roadmap .main-grid {
  width: min(100%, 40em);
  display: grid;
  grid-template-columns: [start] 1fr [middle right-cell-start] 7rem [middle left-cell-end] 1fr [end];
  gap: 3rem;
  margin-block: calc(3rem / 2);
  padding: 1em;
  counter-reset: section;
}

.roadmap .main-grid>*,
.roadmap .sub-grid>* {
  position: relative;
  width: 100%;
}

.roadmap .sub-grid {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: start / end;
  position: relative;
  counter-increment: section;
  --dir: 1;
}

.roadmap .roadmap-item {
  display: flex;
  flex-direction: column;
  padding: 1em;
  padding-inline-end: 2em;
  border-radius: 1rem;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.35);
  font-size: 1.125rem;
  color: white;
  justify-content: center;
  grid-row: 1 / -1;
  grid-column: 1 / span 2;
  text-overflow: ellipsis;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap .roadmap-item:hover {
  transform: translateY(-5px);
}

.roadmap .roadmap-item p {
  font-weight: 500;
  grid-column: 2 / -1;
  text-align: end;
  color: inherit;
}

.roadmap .path {
  grid-row: 1 / -1;
  grid-column: middle;
  position: absolute;
  width: auto;
  border-width: 6px;
  inset: calc((3rem + 6px) / -2);
  border-radius: calc(1rem + ((3rem + 6px) / -2) * -1);
  border-style: dotted;
  clip-path: inset(0 0 0 50%);
  z-index: -1;
}

.roadmap .sub-grid .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  font-size: 2em;
  font-weight: 600;
}

.roadmap .sub-grid .step::after {
  content: "0"counter(section);
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
}

.roadmap .roadmap-item::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  aspect-ratio: 1;
  --off: 3rem / 2 * var(--dir);
  --norm: (var(--dir) * -1 / 2 + 0.5);
  right: calc(100% * var(--norm) - var(--off));
  transform: translateX(50%);
  border-radius: 50%;

  background: var(--accent-color);
  border: solid 0.6rem var(--accent-color);
}

.roadmap .sub-grid:nth-child(even) {
  --dir: -1;
}

.roadmap .sub-grid:nth-child(even) .roadmap-item {
  grid-column: right-cell-start / end;
  direction: rtl;
}

.roadmap .sub-grid:nth-child(even)>.path {
  clip-path: inset(0 50% 0 0);
}

.roadmap .sub-grid:nth-child(odd) .roadmap-item,
.roadmap .sub-grid:nth-child(odd) .roadmap-item::before {
  background: var(--color-primary);
}

.roadmap .sub-grid:nth-child(even) .roadmap-item,
.roadmap .sub-grid:nth-child(even) .roadmap-item::before {
  background: var(--color-magenta-dark);
}

@media (max-width: 768px) {
  .roadmap .roadmap-item {
    padding-inline-end: 1em;
  }

  .roadmap .roadmap-item p {
    text-align: center;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.benefits {
  padding: 60px 0;
}

.benefits .content {
  padding: 60px;
  background-color: var(--color-white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid var(--color-white);
}

.benefits h2 {
  font-size: clamp(25px, 5vw, 30px);
  margin-bottom: 20px;
}

.benefits .checklist {
  list-style: none;
  padding: 0;
}

.benefits .checklist li {
  font-size: clamp(16px, 4vw, 18px);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.benefits .checklist li i {
  color: var(--color-primary);
  margin-right: 10px;
  font-size: clamp(14px, 3vw, 18px);
}

.benefits img {
  filter: hue-rotate(0deg) saturate(1) brightness(1) contrast(1) invert(0) sepia(0) blur(0px) grayscale(0) drop-shadow(var(--color-deep-black) 0px 0px 40px);
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .benefits {
    padding: 0;
  }

  .benefits .content {
    padding: 15px;
    margin: 10px;
  }

  .benefits h2 {
    margin-top: 30px;
  }

  .benefits img {
    margin-top: 25px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 15px 0 60px;
}

.counts .count-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--color-primary);
  border: none;
  border-radius: 20px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 22%;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.counts .count-box span {
  font-size: clamp(30px, 5vw, 45px);
  display: block;
  font-weight: 600;
  color: var(--color-white);
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: clamp(16px, 4vw, 20px);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .counts {
    margin: 0 10px;
  }

  .counts .count-box {
    width: 48%;
    padding: 20px 10px 0px 10px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills {
  padding: 60px 0;
}

.skills .content {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.skills .content h2 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 700;
}

.skills .card {
  height: 100%;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skills .card:hover {
  transform: translateY(-5px);
}

.skills .card-body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 20px;
}

.skills .card-body i {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--color-primary);
}

.skills .card-body p {
  font-size: clamp(16px, 2.5vw, 18px);
  margin: 0;
  text-align: left;
}

@media (max-width: 992px) {
  .skills .content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .skills .card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .skills .card-body {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .skills {
    padding-top: 0;
  }

  .skills .content {
    gap: 10px;
  }

  .skills .content h2 {
    text-align: center;
  }

  .skills .card-body {
    flex-direction: row;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Modules
--------------------------------------------------------------*/
.modules {
  padding: 60px 0;
}

.modules h2 {
  font-size: clamp(24px, 5vw, 35px);
  font-weight: 600;
}

.modules .card {
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 10px;
  background-color: var(--color-white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 350px;
  justify-content: space-between;
}

.modules .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  height: 100%;
}

.modules .card-body i {
  font-size: clamp(30px, 7vw, 40px);
  color: var(--color-primary);
  text-align: center;
}

.modules .card-body h5 {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.modules .card-body p {
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 500;
  text-align: center;
  margin: 20px 0;
  color: var(--color-gray);
}

.modules .btn {
  background-color: transparent;
  color: var(--color-gray);
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 7px 35px;
  transition: background-color 0.3s ease;
  vertical-align: middle;
}

.modules .btn i {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 7px;
}

.modules .card:hover {
  background-color: var(--color-primary);
  transform: translateY(-5px);
}

.modules .card:hover .card-body i,
.modules .card:hover .card-body h5,
.modules .card:hover .card-body p,
.modules .card:hover .btn {
  color: var(--color-white);
}

.modules .card:hover .btn {
  border-color: var(--color-white);
}

@media (max-width: 768px) {
  .modules {
    padding-top: 0;
  }

  .modules .card {
    padding: 0;
    min-height: 100%;
  }

  .modules h2 {
    padding: 12px;
  }

  .modules .btn {
    font-size: 14px;
    padding: 5px 20px;
  }

}

/*--------------------------------------------------------------
# Course
--------------------------------------------------------------*/
.course {
  background-color: var(--color-magenta-dark);
}

.course h2 {
  font-size: clamp(24px, 5vw, 35px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
}

.course .course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--color-white);
  color: var(--color-white);
  padding-bottom: 20px;
}

.course .course-card .course-info {
  padding: 20px;
}

.course .course-card .course-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: clamp(14px, 4vw, 16px);
  color: var(--color-gray);
}

.course .course-card .course-info span {
  display: block;
  font-size: clamp(10px, 3vw, 13px);
  font-weight: 400;
  color: var(--color-gray);
  margin-top: 15px;
}

.course .course-card .course-info span i {
  color: var(--color-primary);
  vertical-align: middle;
  padding-right: 5px;
}

.course .course-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course .course-card .btn-primary {
  padding: 10px 35px;
  background-color: var(--color-magenta-dark);
  border-color: var(--color-magenta-dark);
  border-radius: 30px;
  margin-top: 15px;
}

.course .swiper {
  padding: 40px;
}

.course .swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto;
}

.course .swiper-button-prev,
.course .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--color-white);
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 700;
}

.course .swiper-button-prev.hidden,
.course .swiper-button-next.hidden {
  display: none;
}

.course .swiper-pagination {
  position: relative;
  bottom: -35px;
}

.course .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  opacity: 0.7;
  transition: all 0.3s;
}

.course .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  width: 15px;
  height: 15px;
}

@media (max-width: 768px) {
  .course .swiper {
    padding: 10px 40px 70px 40px;
  }

  .course h2 {
    margin: 0 5px;
  }

  .course .course-card .course-img img {
    height: 150px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 60px 0 150px 0;
}

.about .content h2 {
  font-size: clamp(24px, 5vw, 35px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about .content p {
  font-size: clamp(16px, 4vw, 18px);
  text-align: justify;
}

@media (max-width: 768px) {
  .about {
    margin: 0 10px;
  }
}

/*--------------------------------------------------------------
# Reembolso
--------------------------------------------------------------*/
.reembolso {
  background-color: var(--color-light-pink);
  padding: 80px 20px 40px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.reembolso .seal {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.reembolso .seal img {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.reembolso .info h2 {
  font-size: clamp(20px, 8vw, 35px);
  font-weight: 600;
  margin: 120px 0 10px 0;
  margin-top: 120px;
}

.reembolso .info p {
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: clamp(14px, 4vw, 20px);
}

/*--------------------------------------------------------------
# Certificado
--------------------------------------------------------------*/
.certificado {
  padding: 60px 0;
}

.certificado .info h2 {
  font-size: clamp(20px, 8vw, 35px);
  font-weight: 600;
}

.certificado .info p {
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: clamp(16px, 4vw, 20px);
}

.certificado .list-unstyled {
  list-style: none;
  padding: 0;
}

.certificado .list-unstyled li {
  font-size: clamp(14px, 4vw, 16px);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.certificado .list-unstyled li i {
  color: var(--color-primary);
  margin-right: 10px;
  font-size: 20px;
}

.certificado .certificado-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .certificado {
    margin: 0 10px;
  }

  .certificado .certificado-img img {
    margin-top: 25px;
  }
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
  background-color: var(--color-light-pink);
}

.faq .section-title h2 {
  color: var(--color-primary);
}

.faq .faq-list {
  padding: 0;
  list-style: none;
  margin-top: 30px;
}

.faq .faq-list li {
  background-color: var(--color-white);
  border-radius: 6px;
  padding: 15px 10px;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

.faq .faq-list .question,
.faq .faq-list p,
.faq .faq-list i {
  color: var(--color-gray);
  transition: color 0.3s;
}

.faq .faq-list li:hover {
  background-color: var(--color-primary);
}

.faq .faq-list li:hover .question,
.faq .faq-list li:hover p,
.faq .faq-list li:hover i {
  color: var(--color-white);
}

.faq .faq-list li.collapsed {
  background-color: var(--color-white);
}

.faq .faq-list li.collapsed .question,
.faq .faq-list li.collapsed p,
.faq .faq-list li.collapsed i {
  color: var(--color-gray);
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-size: clamp(16px, 4vw, 18px);
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}


/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
#cursoModal {
  overflow-y: hidden !important;
}

#cursoModal .modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#cursoModal .modal-content {
  margin: auto;
  background-color: var(--color-white);
  border: none;
  padding: 1.5rem;
  border-radius: 8px;
}

#cursoModal .modal-header {
  border-bottom: none;
  padding: 1.5rem;
  color: var(--color-primary);
}

#cursoModal .modal-header .btn-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.modal-backdrop.show {
  background-color: rgba(119, 119, 119, 0.7);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--color-white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-magenta-dark);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--color-magenta-dark);
  color: var(--color-light-pink);
  text-decoration: none;
}

.footer-buttons .btn {
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 14px;
  background-color: var(--color-magenta-dark);
  border: none;
  color: var(--color-white);
  transition: 0.3s;
}

.footer-buttons .btn:hover {
  color: var(--color-white);
  text-decoration: none;
  transform: scale(1.05);
}