html{
  scroll-behavior: smooth;
}
:root{
  --color-primary-start: rgba(16, 36, 81, 1);
  --color-primary-end: rgba(33, 70, 138, 1);
  --color-secondary-start: rgba(228, 225, 213, 1);
  --color-secondary-end: rgba(231, 217, 182, 1);
  --gradient-primary: linear-gradient(90deg, var(--color-primary-start) 20%, var(--color-primary-end) 80%);
  --gradient-secondary: linear-gradient(90deg, var(--color-secondary-start) 20%, var(--color-secondary-end) 80%);
  --shadow-soft: 0 0 8px rgba(66, 65, 65, 1);
  --shadow-medium: 0 4px 12px rgba(66, 65, 65, 1);
  --shadow-strong: 0 12px 24px rgba(0, 0, 0, 0.18);
}
body{
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: white;
  color: black;
}
.container{
  display: flex;
  flex-direction: column;
  max-width: 1500px;
  width: 100%;
  height: auto;
  padding: clamp(3.125rem, 0.893rem + 5.952vw, 6.25rem) clamp(1.25rem, 0rem + 3.333vw, 3rem);
}
h2{
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 900;
  font-family: "Tangerine", cursive;
  font-size: 5rem;
}
.gradient-text{
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-secondary{
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
ul{
  margin: 0;
  padding: 0;
}
p{
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  line-height: 1.5;
  margin: 0;
}
li{
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  line-height: 1.5;
}
button{
  width: fit-content;
  padding: 16px 32px;
  background-color: #e7d9b6;
  color: #0a152e;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-top: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
button:hover {
  transform: scale(1.05);
  background-color: #d4c698;
  box-shadow: var(--shadow-medium);
}

/* Header */

header{
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
header.scrolled,
header.menu-open{
  background: var(--gradient-primary);
  box-shadow: var(--shadow-strong);
}
header .container{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  color: #e4e1d5;
}
.menu-toggle{
  display: none;
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  padding: 0;
  margin-top: 0;
}
.menu-toggle span{
  position: absolute;
  left: 10px;
  right: 10px;
  height: 3px;
  background: white;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle span:nth-child(1){
  top: 13px;
}
.menu-toggle span:nth-child(2){
  top: 20px;
}
.menu-toggle span:nth-child(3){
  top: 27px;
}
header.menu-open .menu-toggle span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
header.menu-open .menu-toggle span:nth-child(2){
  opacity: 0;
}
header.menu-open .menu-toggle span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}
.home-button{
  display: flex;
  height: 80px;
  width: 80px;
  background-image: url(../images/logo-carreira-sem-fronteiras.svg);
  background-repeat: no-repeat;
  background-size: 150px auto;
  background-position: center;
}
header ul{
  list-style: none;
  display: flex;
  gap: 16px;
}
header ul li a{
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-style: normal;
  position: relative;
  letter-spacing: .15rem;
}
@media (max-width: 768px) {
  header .container{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .menu-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header nav{
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  header.menu-open nav{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  header nav ul{
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 1rem 1.5rem 1.5rem;
  }

  header nav ul li{
    margin: 0;
    border-bottom: 1px solid rgba(231, 217, 182, 0.2);
    padding: 14px 0;
  }

  header nav ul li:last-child{
    border-bottom: none;
  }

  header nav ul li a{
    display: block;
    padding: 0;
  }
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e7d9b6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a:hover::after {
  transform: scaleX(1);
}

/* Banner */

.hero{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: -80px 0 0 0;
  text-align: center;
  background-image: url(../images/Banner-principal.png);
  background-size: cover;
  background-position: center;

}
@media (max-width: 768px) {
  .hero{
    background-position: left;
  }
}
h1{
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(5rem, 1.429rem + 9.524vw, 9rem);
  font-weight: 700;
  margin: 0;
  color: #e4e1d5;
  text-shadow: var(--shadow-soft);
}
.hero h2{
  font-size: clamp(0.9rem, 0.293rem + 1.619vw, 1.75rem);
  margin: -30px 0 0 0;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #21468a; */
}
@media (max-width: 768px) {
  .hero h2{
    margin-top: 10px;
  }
  
}
.hero .container{
  align-items: flex-start;
}
.caixa{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}
.titulo{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.subtitulo{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .subtitulo{
    margin-top: 50px;
  }
  
}
.subtitulo h3{
  font-size: clamp(1.5rem, 0.429rem + 2.381vw, 2.5rem);
  font-weight: 300;
  text-align: left;
  margin: 0;
}
.subtitulo h3 span{
  font-weight: 600;
  color: #21468a;
}
.subtitulo h4{
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 1.286rem + 1.905vw, 3rem);
  text-align: left;
  margin: 0 0 0 20px;
}
.aspas{
  width: 100px;
  height: 100px;
  background-image: url(images/aspas2.svg);
  margin: 0 0 0 -20px;
  object-fit: cover;
  background-position: center;
}

/* Pitch Video */

.pitch-video{
  display: flex;
  justify-content: center;
  width: 55%;
  height: auto;
  background-color: white;
}
.pitch-video iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {
  .pitch-video{
    width: 100%;
    margin-bottom: 20px;
  }
  
}

/* Bloco 1 — Abertura */

.carreira{
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background: var(--gradient-primary);
  color: white;
  border-top: #e7d9b6 5px solid;
  border-bottom: #e7d9b6 5px solid;;
}
.carreira .container{
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  
}
.conteudo{
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 40%;
  margin: 0 auto;
}
.carreira .conteudo > h2{
  text-align: center;
}
.conteudo > h3{
  text-align: justify;
}
@media (max-width: 768px) {
  .conteudo{
    width: 100%;
  }
  
}

/* Bloco 2 — Conexão com a Dor */

.para-quem{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-image: url(../images/andrea2.png);
  background-size: 700px auto;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: 55%;
}
.para-quem .container{
  justify-content: center;
}
.para-quem .conteudo{
  justify-content: center;
  margin: 0;
  width: 70%;
}
.para-quem h2{
  text-align: center;
}
.para-quem p{
  margin-bottom: 50px
}
.para-quem ul{
  list-style: none;
}
.para-quem li{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.material-symbols-outlined{
  color: green;
}
@media (max-width: 768px) {
  .para-quem .conteudo{
  width: 100%;
  }
.para-quem{
  background-image: none;
  }
}

/* Bloco 3 — A Jornada */

.transformacao{
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background: var(--gradient-primary);
  color: white;
  border-top: #e7d9b6 5px solid;
  border-bottom: #e7d9b6 5px solid;
}
.transformacao .container{
  max-width: none;
  background-image: url(../images/logo-carreira-sem-fronteiras.svg);
  background-repeat: no-repeat;
  background-size: 1500px auto;
  background-position: -190% 50%;
}
.transformacao .conteudo{
  width: 80%;
}
.transformacao .container .conteudo > h2{
  text-align: center;
}
.transformacao .container .conteudo > p{
  display: flex;
  width: 80%;
  margin: 0 auto;
  text-align: justify;
}
@media (max-width: 768px) {
 .transformacao .conteudo{
  width: 100%;
  margin: 0;
}
.transformacao .container .conteudo > p{
  width: 100%;
  margin: 0;
}
}


/* Bloco 4 — Entregas */

.beneficios{
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
.beneficios .container{
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}
.beneficios ul{
  list-style: none;
}
.beneficios li{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.foco{
  font-weight: 800;
  color: #21468a;
}
@media (max-width: 768px) {
  .beneficios li{
    gap: 10px;
  }
  .beneficios .container{
    padding-bottom: 0;
  }
}

/* Bloco 5 — Conteúdo Programático  */

.aulas{
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
.aulas .container{
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}
.aulas-lista{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: auto;
}
.aulas-lista div{
  min-width: 40%;
}
.bloco1{
  display: flex;
  justify-content: flex-end;
}
.bloco2{
  display: flex;
}
.aulas ul{
  list-style: none;
  list-style-position: outside; 
}
.aulas li{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.aulas li img{
  margin: 0;
  width: 20px;
  height: 20px;
}
.aulas .cartao{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: auto;
  padding: 30px;
  background: var(--gradient-primary);
  border-radius: 10px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.aulas .cartao > img{
  width: 80px;
  height: 80px;
  margin: 0 0 40px 0;
}
.tile{
  margin-bottom: 40px;
  width: 70%;
}
.tile > h2{
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .aulas .cartao > img{
    margin: 10px 0;
  }
}
.cartao::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.cartao:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.cartao:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
@media (max-width: 768px) {
  .bloco1, .bloco2{
    justify-content: flex-start;
    width: 100%;
  }
  .aulas .cartao{
    padding: 10px;
    width: 100%;
  }
  .aulas-lista{
    gap: 0px;
  }
}

/* Bloco 6 — Quem Conduz */

.quem-conduz{
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  background: var(--gradient-primary);
  color: white;
  border-top: #e7d9b6 5px solid;
  border-bottom: #e7d9b6 5px solid;;
}
@media (max-width: 768px) {
  .quem-conduz{
    flex-wrap: wrap;
    height: auto;
  }
}
.texto{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  padding: 0 clamp(1rem, -7.214rem + 21.905vw, 10.5rem);
}
.texto .lines{
  display: inline-block;
  background-color: white;
  height: 2px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .texto{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.texto p{
  font-size: clamp(1.25rem, 0.893rem + 0.952vw, 1.75rem);
}
.texto span{
  font-weight: 800;
  letter-spacing: 0.1rem;
}
.foto{
  display: flex;
  width: 60%;
  height: 100%;
}
@media (max-width: 768px) {
  .foto{
    width: 100%;
    height: auto;
  }
}
.foto img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bloco 7 — Método */

.metodo{
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
.metodo h2{
  text-align: center;
  margin-bottom: 100px;
}
.organizer{
  display: flex;
  justify-content: center;
  margin: 0 auto;
  flex-direction: row;
  width: 100%;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.textos{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
}
.organizer img{
  width: 80px;
  height: auto;
  margin: 0 auto;
}
.organizer h3{
  text-align: center;
  font-size: 1.5rem;
  color: #21468a;
}
.organizer p{
  text-align: center;
}
@media (max-width: 768px) {
  .textos{
  width: 100%;
  
}
.metodo h2{
  margin-bottom: 50px;
}
}

/* Bloco 8 — Como Funciona */

.informacoes{
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background: var(--gradient-primary);
  color: white;
  border-top: #e7d9b6 5px solid;
  border-bottom: #e7d9b6 5px solid;;
}
.informacoes .container > h2{
  text-align: center;
}
.informacoes .container > p{
  display: flex;
  width: 80%;
  margin: 0 auto;
  text-align: justify;
}
.cartoes{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 0.286rem + 1.905vw, 2rem);
  width: 100%;
  height: auto;
  margin: clamp(3.125rem, 0.893rem + 5.952vw, 6.25rem) 0 0 0;
}
.informacoes .cartao{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  padding: 16px;
  background: var(--gradient-secondary);
  border-radius: 10px;
  text-align: center;
  color: #21468a;
  position: relative;
  overflow: hidden;
}
.cartao img{
    width: 60px;
    height: 60px;
    margin: 0 0 16px 0;
}
.cartao h3{
  margin: 0 0 10px 0;
}
.cartao p{
  margin: 0;
}
@media (max-width: 768px) {
  .informacoes .container > p{
  width: 100%;
  margin: 0;
}
}

/* Bloco 9 — Chamada Emocional */

.chamada-emocional{
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
.chamada-emocional .container{
  flex-direction: row;
  flex-wrap: wrap;
}
.chamada-emocional .conteudo{
  align-items: center;
  justify-content: center;
}
.chamada-emocional p{
  font-size: 1.5rem;
}
.chamada-emocional span{
  font-weight: 800;
  color: #21468a;
}
@media (max-width: 768px) {
  .chamada-emocional .pitch-video{
    margin-top: 20px;
    margin-bottom: 0;
  }
}

/* Bloco 10 — Call to Action */

.cta-final{
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background: var(--gradient-primary);
  color: white;
  border-top: #e7d9b6 5px solid;
}
.cta-final h2{
  text-align: center;
  font-size: 5rem;
  margin-bottom: 50px;
}
.cta-final .container{
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.cta-final p{
  display: flex;
  width: 50%;
  margin: 0 auto;
  text-align: justify;
}
.cta-final button{
  margin-top: 100px;
}
@media (max-width: 768px) {
  .cta-final .container{
    width: 100%;
  }
  .cta-final p{
  width: 100%;
  margin: 0;
  }
  .cta-final button{
  margin-top: 50px;
  } 
}

/* Footer */

footer{
  display: flex;
  justify-content: center;
  background: var(--gradient-primary);
  width: 100%;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: #e7d9b6 1px solid;
}
footer .container{
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
footer p{
  font-size: 1rem;
  margin: 20px 0;
  color: white;
}