:root {
  --white: #ffffff;
  --black: #000000;
  --black-lighter: #161514;
  --orange: #ffa800;
  --purple: #860fa9;
  --green: #088615;
  --green-lighter: #61CE70;
  --gradiente: linear-gradient(180deg, var(--orange) 0%, var(--purple) 100%);
  --gradiente-black: linear-gradient(180deg, #231F20 0%, #23211F 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: Montserrat; */
}

@font-face {
  font-family: Montserrat-regular;
  src: local("Montserrat-regular"), url("../fonts/Montserrat-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}


@font-face {
  font-family: Montserrat-medium;
  src: local("Montserrat-medium"), url("../fonts/Montserrat-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Montserrat-bold;
  src: local("Montserrat-bold"), url("../fonts/Montserrat-Bold.ttf");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: Roboto-regular;
  src: local("Roboto-regular"), url("../fonts/Roboto-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Roboto-medium;
  src: local("Roboto-medium"), url("../fonts/Roboto-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Roboto-bold;
  src: local("Roboto-bold"), url("../fonts/Roboto-Bold.ttf");
  font-weight: 800;
  font-display: swap;
}

body {
  overflow-x: hidden;
}

.container {
  padding-right: calc(1.5rem * .5);
  padding-left: calc(1.5rem * .5);
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3 {
  margin-top: 0;
  margin-bottom: .5rem;
  line-height: 1.2;
}

p{
  margin-top: 0;
  margin-bottom: 1rem;
}

img {
  vertical-align: middle;
}

button {
  -webkit-appearance: button;
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 576px) {
   .container{ 
    max-width: 540px;
   }
}


/* Section Headline */
.section-headline{
  position: relative;
  background-image: url("../assets/prova_social6.webp");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  padding: 160px 0;
  width: 100%;
}

.section-headline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  background-image: var(--gradiente-black);
  opacity: .8;
  height: 100vh;
  width: 100%;
}

.section-headline > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.section-headline > div > img {
  z-index: 1;
}

.box-headline {
  background: url("../assets/chronus-imagens.webp"), var(--gradiente);
  background-size: cover;
  border-radius: 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 50px 40px;
  z-index: 1;
}

.box-headline > h1 {
  font-size: 1.5rem;
  font-family: Roboto-bold;
  font-weight: bold;
  width: 90%;
}

.box-headline > p {
  font-family: Roboto-medium;
  font-weight: 500;
  width: 90%;
}

.box-headline > p > span {
  text-decoration: underline;
}

.button-whats {
  border: none;
  border-radius: 30px;
  background: var(--green);
  box-shadow: 0px 2px 0 1px var(--white);
  height: 50px;
  padding: 16px 0;
  z-index: 1;
  transition: all ease-in-out .3s;
}

.button-whats:hover{
  transform: scale(1.1);
}

.button-whats > a {
  padding: 16px 50px;
  color: var(--white);
  font-family: Montserrat-bold;
  font-size: 1em;
  font-weight: bold;
  fill: var(--white);
  line-height: 1em;
  letter-spacing: 1px;
  text-decoration: none;
}

@media (max-width: 940px) {
  .section-headline {
    background-size: 100% 100%;
  }
}

@media (max-width: 767px) {
  .section-headline {
    background-position: -148px -56px;
    background-size: auto;
    height: 82vh;
  }
  .section-headline::before {
    height: 82vh;
  }
  .section-headline > div {
    margin: 0 auto !important;
    max-width: 90%;
  }
}

@media (max-width: 701px) {
  .box-headline {
    padding: 60px 20px;
  }
}

@media (max-width: 569px) {
  .section-headline > div {
    max-width: 100%;
  }
  .box-headline {
    padding: 40px 10px;
  }
}

@media (max-width: 412px) {
  .section-headline {
    background-position: 50%;
    background-size: cover;
  }
  .button-whats > a {
    padding: 16px 30px;
  }
}

@media (max-width: 393px) {
  .button-whats > a {
    padding: 16px;
  }
}

@media (max-width: 365px) {
  .button-whats {
    height: auto;
    padding: 8px 0;
  }
  .button-whats > a {
    padding: 16px 8px;
  }
}

@media (max-width: 345px) {
  .button-whats {
    max-width: 90%;
  }
}

/* Section Content Headline */
.content-headline {
  position: relative;
  z-index: 1;
  background-color: var(--black);
  color: var(--white);
  padding: 40px 20px;
}

.content-headline > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.content-headline > div > h2 { 
  margin-bottom: 50px;
  font-family: Roboto-bold;
  font-weight: bold;
  font-size: 43px;
  width: auto;
}
.content-headline > div > p {
  font-family: Roboto-regular;
  font-weight: 400;
  width: 90%;
}

.carousel {
  position: relative;
  padding-top: 20px;
  padding-bottom: 100px;
  width: 90%;
}

.images-carousel {
  position: relative;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  overflow-x: scroll;
  scroll-behavior: smooth;
  overflow: -moz-scrollbar-none;
  scroll-snap-type: x mandatory;
  padding-top: 20px;
  white-space: nowrap;
  width: 92%;
  -ms-overflow-style: none;
}

.images-carousel > .item {
  scroll-snap-align: start;
  margin-right: 40px;
  width: 260px;
}

.images-carousel::-webkit-scrollbar {
  width: 0;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content > h2 {
  font-family: Roboto-regular;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 50px;
}

.content > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
}

.content-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  width: 45%;
}

.content-item > span {
  background-color: var(--orange);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 50px;
  width: 50px;
}

.content-item > span > i {
  font-size: 24px;
}

.content-item > h3 {
  font-size: 23px;
  font-family: Roboto-bold;
  font-weight: 600;
  text-align: center;
}

.content-item > p {
  font-family: Roboto-regular;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
}

@media (max-width: 991px) {
  .content-headline > .container {
    margin: 0 !important;
    max-width: 100%;
  }
  #carousel {
    width: 88%;
  }
  #carousel > .item {
    margin-right: 20px;
  }
}

@media (max-width: 780px) {
  .content-item {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 70%;
  }
}

@media (max-width: 563px) {
  .content > h2 {
    text-align: center;
  }
}

@media (max-width: 539px) {
  .content-item {
    width: 90%;
  }
}

@media (max-width: 401px) {
  .content-headline {
    padding: 40px 0;
  }

  .content-item {
    width: 100%;
  }

  #carousel {
    width: 80%;
  }
}

/* Section Video */

.section-video {
  position: relative;
  background: url("../assets/chronus-imagens.webp"), var(--gradiente);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  width: 100%;
  padding: 50px 0 100px 0;
}

.section-video > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.section-video > div > h2 {
  color: var(--white);
  font-family: Roboto-medium;
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-video > div > button {
  border: none;
}

.video {
  display: none;
  height: 740px;
  width: 440px;
}

.whats_video {
  background-color: var(--green-lighter);
  border: 3px solid var(--white) !important;
  border-radius: 4px;
  margin-top: 20px;
  /* margin-right: 50%; */
  padding: 10px 20px;
}

.whats_video > a {
  padding: 16px 20px;
  color: var(--white);
  font-family: Roboto-bold;
  font-weight: bold;
  font-size: 22px;
  fill: var(--white);
  text-decoration: none;
  -webkit-text-stroke-width: .8px;
  -webkit-text-stroke-color: var(--black);
}

@media (max-width: 790px) {
  .section-video > div {
    margin: 0 auto !important;
    max-width: 100% !important;
  }
  #button_video, .activeVideo {
    width: 94%;
  }
  #button_video > img {
    width: 100%;
  }

  iframe {
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 654px) {
  .section-video > div > h2 {
    text-align: center;
  }
  #button_video, .activeVideo {
    height: 350px;
  }

  #button_video > img {
    height: 100%;
  }
}

@media (max-width: 539px) {
  #button_video, .activeVideo {
    height: 300px;
  }
}

@media (max-width: 430px) {
  #button_video, .activeVideo {
    height: 260px;
  }
}

@media (max-width: 390px) {
  #button_video, .activeVideo {
    height: 220px;
  }
}


/* Section Coach */
.section-coach {
  position: relative;
  background: url("../assets/chronus-imagens.webp"), var(--gradiente);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  width: 100%;
  padding: 50px 0 100px 0;
}

.section-coach > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  height: 100%;
  width: 100%;
}

.section-coach > div > h3 {
  font-family: Roboto-bold;
  font-size: 43px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 50px;
}

.section-coach > div > div {
  display: flex;
  justify-content: space-between;
  width: 75%;
}

.content_coach {
  width: 54%;
}

.content_coach > p {
  font-size: 1.1em;
  font-family: Montserrat-medium;
  font-weight: 500;
  line-height: 1.3em;
  text-align: center;
}

@media (max-width: 1198px) {
  .section-coach > div > div {
    width: 100% !important;
  }
}

@media (max-width: 990px) {
  .section-coach > div {
    margin: 0 auto !important;
    max-width: 94%;
  }
}

@media (max-width: 890px) {
  .content_coach > p{
    font-size: 1rem;
  }
}

@media (max-width: 692px) {
  .section-coach > div > h3 {
    margin-bottom: 20px;
  }
  .section-coach > div > div {
    flex-direction: column;
    align-items: center;
  }

  .content_coach {
    margin-top: 30px;
    width: 80%;
  }
}

@media (max-width: 539px) {
  .section-coach > div > h3 {
    font-size: 38px;
  }
  .content_coach {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .section-coach > div > h3 {
    font-size: 32px;
  }
}

@media (max-width: 409px) {
  .section-coach > div > h3 {
    font-size: 38px;
    text-align: center;
  }
}

@media (max-width: 401px) {
  .section-coach > div > div > img {
    height: 300px;
    width: 300px;
  }
}

@media (max-width: 356px) {
  .section-coach > div > div > img {
    height: 280px;
    width: 280px;
  }
}

/* Section Calendar */
.section-calendar {
  background-color: var(--black-lighter);
  height: auto;
  width: 100%;
}

.section-calendar > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  padding-top: 50px;
  padding-bottom: 100px;
  height: 100%;
  width: 100%;
}

.section-calendar > div > h3 {
  font-family: Roboto-bold;
  font-size: 43px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 40px;
}

.section-calendar > div > p:nth-of-type(1) {
  margin-bottom: 0;
}

.section-calendar > div > p {
  font-family: Roboto-regular;
  font-size: 30px;
  font-weight: 400;
  margin: 20px;
  text-align: center;
}

.section-calendar > div > p > img {
  border-radius: 50%;
}

.whats_green_lighter {
  background-color: var(--green-lighter);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  padding: 15px 30px;
}

.whats_green_lighter > a {
  color: var(--white);
  font-family: Roboto-medium;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  text-decoration: none;
}

.questions {
  margin-top: 100px;
  width: 60%;
}

.questions > h3 {
  color: var(--orange);
  font-size: 2.3em;
  font-family: Montserrat-medium;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
}

.questions > div {
  position: relative;
}

.title-question{
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 10px;
  width: 100%;
}

.title-question > .active{
  background-color: transparent !important;
  transform: rotate(90deg);
  transition: all .4s;
}

.title-question > img:not(.active){
  transform: rotate(0deg);
  transition: all .4s;
}

.title-question > img {
  margin-right: 10px;
}

.title-question > span {
  font-family: Montserrat-medium;
  font-size: 1.1em;
  font-weight: 500;
}

.oneActive, .twoActive, .threeActive, .fourActive {
  color: var(--orange);
}

.oneActive::before{
  width: 100%;
}
.twoActive::before{
  width: 100%;
}
.threeActive::before{
  width: 100%;
}
.fourActive::before{
  width: 100%;
}

.content-question{
  animation: fadeIn .8s;
  animation-fill-mode: backwards;
  color: var(--white);
  display: none;
  font-size: 20px;
  margin-top: 10px;
  margin-left: 40px;
  width: 90%;
  max-height: 0;
  overflow: hidden;
  word-break: break-word;
  transition: ease-in-out .8s ;
}

@keyframes fadeIn {
  0% {
    max-height: 0;
    opacity: 0;
  }
  100% {
    max-height: 100px;
    opacity: 1;
  }
}

.content-one, .content-two, .content-three, .content-four {
  margin-bottom: 30px;
  max-height: max-content;
}

.whats_green {
  background-color: var(--green);
  border: 3px double var(--white);
  border-radius: 4px;
  margin-top: 30px;
  padding: 15px 30px;
}

.whats_green > a {
  color: var(--white);
  font-family: Roboto-medium;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px;
  text-decoration: none;
}

@media (max-width: 590px) {
  .questions {
    width: 90%;
  }

}

@media (max-width: 563px) {
  .section-calendar > div > h3 {
    margin-bottom: 20px;
  }
}

@media (max-width: 471px) {
  .whats_green_lighter {
    padding: 15px 0px;
  }
  .whats_green_lighter > a {
    padding: 15px 10px;
  }

  .whats_green {
    padding: 15px 10px;
  }
}

/* Footer */

footer {
  background-color: var(--black);
  height: 200px;
  width: 100%;
}

.social {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.social > button {
  border: none;
  border-radius: 4px;
  height: 50px;
  width: 50px;
  margin-left: 10px;
}

.social > button > a {
  font-size: 1.6rem;
  color: var(--white);
}

.face {
  background-color: #365088;
}

.insta {
  background-color: #222222;
}

.youtube {
  background-color: #b91d1c;
}

.copy {
  color: var(--white);
  font-size: .7em;
  font-family: Montserrat-regular;
  font-weight: 400;
  margin-top: 20px;
  text-align: center;
}

.privacy {
  font-family: Roboto-bold;
  font-size: 10px;
  font-weight: bold;
  stroke: var(--black);
  -webkit-text-stroke-color: var(--black);
  stroke-width: 0;
  -webkit-text-stroke-width: 0;
  text-shadow: 0 0 10px rgba(255, 252, 252, 61%);
}

.privacy > a {
  color: inherit;
}