
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
}

/* HERO */
.hero-cursos{
  width:100%;
  min-height:100vh;
  overflow:hidden;
  position:relative;
  background:
  linear-gradient(
  90deg,
  rgba(2,12,35,0.98) 0%,
  rgba(2,17,50,0.95) 45%,
  rgba(2,17,50,0.65) 65%,
  rgba(2,17,50,0.15) 100%),
  url('../imag/construction-worker-overlooking-cityscape.webp');

  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:70px 7% 0;
}

/* brilho */
.hero-cursos::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:radial-gradient(circle,
  rgba(0,102,255,0.25),
  transparent 70%);
  left:-250px;
  top:-150px;
  z-index:0;
}

/* formas */
.shape-top{
  position:absolute;
  top:0;
  right:0;
  width:220px;
  height:220px;
  background:#E69600;
  clip-path:polygon(100% 0, 0 50%, 100% 100%);
  z-index:1;
}

.shape-middle{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:260px;
  height:260px;
  background:#E69600;
  clip-path:polygon(100% 0, 0 50%, 100% 100%);
  z-index:1;
}

/* CONTAINER */
.container-hero{
  width:100%;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  position:relative;
  z-index:5;
}

/* LEFT */
.hero-left{
  max-width:620px;
  color:#fff;
  padding-bottom:90px;
}

.mini-title{
  color:#E69600;
  font-size:17px;
  font-weight:700;
  margin-bottom:18px;
  text-transform:uppercase;
}

.hero-title{
  font-size:55px;
  line-height:0.95;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:28px;
  margin-top: 60px;
}

.hero-title span{
  color:#E69600;
  display:block;
}

.hero-text{
  font-size:17px;
  line-height:1.7;
  color:#d8dfeb;
  margin-bottom:38px;
}

/* BENEFICIOS */
.hero-beneficios{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  margin-bottom:45px;
}

.beneficio{
  display:flex;
  align-items:center;
  gap:10px;
}

.beneficio i{
  color:#E69600;
  font-size:22px;
}

.beneficio span{
  color:#fff;
  font-size:15px;
  line-height:1.4;
  font-weight:500;
}

/* BOTÕES */
.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:19px 34px;
  border-radius:8px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  transition:0.4s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary {
      background: #E69600;
      color: #071b38;
      padding: 14px 28px;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
    }

    .btn-outline {
      border: 2px solid #E69600;
      color: #ffffff;
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 500;
      text-decoration: none;
    }

/* RIGHT */
.hero-right{
  flex:1;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
}

/* IMAGEM */
.hero-right img{
  
  width:560px;
  object-fit:contain;
  display:block;
  position:relative;
  bottom:0;
}

/* CARD */
.card-certificados{
  position:absolute;
  bottom:35px;
  right:0;
  background:#061d46;
  padding:25px 28px;
  border-radius:22px;
  display:flex;
  align-items:center;
  gap:18px;
  z-index:5;
  box-shadow:0 15px 40px rgba(0,0,0,0.45);
}

.card-icon{
  width:70px;
  height:70px;
  border-radius:18px;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

.card-icon i{
  font-size:38px;
  color:#E69600;
}

.card-certificados h2{
  color:#fff;
  font-size:48px;
  line-height:1;
  margin-bottom:6px;
}

.card-certificados p{
  color:#fff;
  font-size:18px;
  line-height:1.4;
}

/* ===================== */
/* TABLET */
/* ===================== */

@media(max-width:1100px){
.hero-cursos{
  min-height:50vh;
}

  .container-hero{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .hero-left{
    max-width:100%;
    padding-bottom:40px;
  }

  .hero-title{
    font-size:50px;
    margin-top: 100px;
  }

  .hero-text{
    margin:auto auto 35px;
  }

  .hero-beneficios{
    justify-content:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-right{
    width:100%;
    justify-content:center;
  }

  .hero-right img{
    display: none;
  }

  .card-certificados{
   display: none;
  }

}

/* ===================== */
/* MOBILE */
/* ===================== */

@media(max-width:768px){

  .hero-cursos{
    padding:60px 20px 10px;
    
  }

  .hero-title{
    font-size:40px;
  }

  .hero-text{
    font-size:18px;
  }

  .hero-beneficios{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .hero-right img{
    max-width:100%;
  }

  .card-certificados{
    width:90%;
    bottom:-55px;
    padding:18px;
  }

  .card-certificados h2{
    font-size:34px;
  }

  .card-certificados p{
    font-size:15px;
  }

  .shape-top,
  .shape-middle{
    display:none;
  }

}

.curso-destaque {
  background: #f0f0f0;
  padding: 80px 6%;
  font-family: 'Poppins', sans-serif;
}

.curso-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  background: linear-gradient(135deg, #061b3a, #0c2f5e);
  overflow: hidden;
  clip-path: polygon(
    0 0,
    96% 0,
    100% 12%,
    100% 100%,
    4% 100%,
    0 88%
  );
}

/* IMAGEM */
.curso-imagem {
  position: relative;
  background: #E69600;
  clip-path: polygon(
    0 0,
    90% 0,
    100% 15%,
    100% 85%,
    90% 100%,
    0 100%
  );
}

.curso-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(
    4% 4%,
    88% 4%,
    96% 16%,
    96% 84%,
    88% 96%,
    4% 96%
  );
}

/* CONTEÚDO */
.curso-info {
  padding: 40px;
  color: #fff;
}

.curso-etiqueta {
  display: inline-block;
  background: #E69600;
  color: #071b38;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 15px;
}

.curso-titulo {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.curso-descricao {
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 25px;
}

/* METAS */
.curso-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.meta-item i {
  color: #E69600;
  font-size: 20px;
}

.curso-preco {
  background: #081c36;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;

  clip-path: polygon(
    10% 0,
    100% 0,
    100% 100%,
    0 100%,
    0 15%
  );
}

.preco-label {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.preco-valor {
  font-size: 28px;
  color: #E69600;
  margin-bottom: 25px;
}

.btn-inscricao {
  background: #E69600;
  color: #071b38;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
}

.btn-inscricao:hover {
  background: #ffd34d;
}

@media (max-width: 1024px) {
  .curso-wrapper {
    grid-template-columns: 1fr;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 96%,
      96% 100%,
      0 100%
    );
  }

  .curso-preco {
    clip-path: none;
  }
}

@media (max-width: 600px) {
  .curso-imagem,
  .curso-imagem img {
    clip-path: none;
  }
}

@media (max-width: 1024px) {
  .curso-wrapper {
    grid-template-columns: 1fr;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 96%,
      96% 100%,
      0 100%
    );
  }

  .curso-preco {
    clip-path: none;
  }
}

@media (max-width: 600px) {
  .curso-imagem,
  .curso-imagem img {
    clip-path: none;
  }
}

@media (max-width: 600px) {
  .curso-info {
    padding: 30px 20px;
  }

  .curso-titulo {
    font-size: 22px;
  }

  .preco-valor {
    font-size: 24px;
  }
}

/* =========================================
   SECTION
========================================= */
.professional-courses{
  position:relative;
  overflow:hidden;
  padding:90px 8%;

  background: #f0f0f0;
}

/* PONTOS */
.courses-dots-left,
.courses-dots-right{
  position:absolute;
  width:140px;
  height:300px;
  background-image:
  radial-gradient(#E69600 1.2px, transparent 1.2px);
  background-size:12px 12px;
  opacity:.5;
}

.courses-dots-left{
  left:0;
  bottom:80px;
}

.courses-dots-right{
  right:0;
  top:120px;
}

/* CONTAINER */
.courses-container{
  max-width:1450px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* =========================================
   HEADER
========================================= */
.courses-top{
  text-align:center;
  max-width:950px;

  margin:0 auto 70px;
}

.courses-mini-title{
  display:inline-flex;
  align-items:center;
  gap:18px;
  color:#E69600;
  font-size:18px;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:28px;
}

.courses-mini-title i{
  font-size:22px;
}

.line{
  width:80px;
  height:2px;
  background:#E69600;
}

.courses-top h2{
  color:#111111;
  font-size:50px;
  line-height:1;
  font-weight:900;

  margin-bottom:25px;
}

.courses-top h2 span{
  color:#E69600;
}

.courses-top p{
  color:#111111;
  font-size:23px;
  line-height:1.6;
}

.courses-top p strong{
  color:#E69600;
}

/* =========================================
   GRID
========================================= */
.courses-list-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* =========================================
   CARD
========================================= */
.professional-card{
  position:relative;

  background:
  linear-gradient(180deg,#001A45 0%, #00132E 100%);

  border:1px solid rgba(66,130,255,.45);

  border-radius:16px;

  overflow:hidden;

  transition:.4s;

  box-shadow:
  0 20px 40px rgba(0,0,0,.35);

  display:flex;
  flex-direction:column;

  height:100%;
}

.professional-card:hover{
  transform:translateY(-10px);
}

/* NÚMERO */
.course-number-tag{
  position:absolute;
  top:0;
  left:0;

  width:85px;
  height:70px;

  background:#E69600;

  clip-path:polygon(
    0 0,
    100% 0,
    72% 100%,
    0 100%
  );

  display:flex;
  align-items:center;
  justify-content:center;

  color:#071B38;

  font-size:24px;
  font-weight:900;

  z-index:3;
}

/* IMAGEM */
.course-image-box{
  position:relative;
  height:260px;
}

.course-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ÍCONE */
.course-icon-box{
  position:absolute;
  left:20px;
  bottom:-35px;

  width:82px;
  height:82px;

  border-radius:18px;

  background:
  linear-gradient(180deg,#001F52 0%, #00122B 100%);

  border:1px solid rgba(255,255,255,.08);

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:4;
}

.course-icon-box i{
  color:#E69600;
  font-size:40px;
}

/* CONTEÚDO */
.course-content-box{
  padding:55px 22px 22px;

  display:flex;
  flex-direction:column;

  flex:1;
}

.course-content-box h3{
  color:#fff;

  font-size:21px;
  line-height:1.4;
  font-weight:800;

  margin-bottom:14px;
}

.course-content-box p{
  color:#fff;

  opacity:.88;

  font-size:15px;
  line-height:1.8;

  margin-bottom:25px;
}

/* FOOTER */
.course-bottom{
  display:flex;
  flex-direction:column;
  align-items:flex-start;

  gap:22px;

  margin-top:auto;
}

/* META */
.course-infos{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.course-infos span{
  display:flex;
  align-items:center;
  gap:8px;

  color:#fff;
  font-size:13px;
}

.course-infos i{
  color:#E69600;
}

/* BOTÃO */
.btn-course-access{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#E69600;
  color:#071B38;
  text-decoration:none;
  padding:14px 20px;
  border-radius:8px;
  font-size:14px;
  font-weight:800;
  transition:.3s;
}

.btn-course-access:hover{
  transform:translateY(-3px);
}

.btn-course-access i{
  width:22px;
  height:22px;

  border-radius:50%;
  border:2px solid #071B38;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:10px;
}

/* =========================================
   BOTÃO FINAL
========================================= */
.courses-button-area{
  display:flex;
  justify-content:center;

  margin-top:55px;
}

.btn-all-courses{
  display:inline-flex;
  align-items:center;
  gap:18px;

  border:2px solid #E69600;

  padding:24px 50px;

  border-radius:12px;

  text-decoration:none;

  color:#E69600;

  font-size:22px;
  font-weight:800;

  transition:.3s;
}

.btn-all-courses:hover{
  background:#E69600;
  color:#071B38;
}

.btn-all-courses span{
  width:36px;
  height:36px;

  border-radius:50%;
  border:2px solid currentColor;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
}

/* =========================================
   RESPONSIVO
========================================= */
@media(max-width:1200px){

  .courses-list-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .courses-top h2{
    font-size:70px;
  }

}

@media(max-width:768px){

  .professional-courses{
    padding:80px 20px;
  }

  .courses-list-grid{
    grid-template-columns:1fr;
  }

  .courses-top h2{
    font-size:46px;
  }

  .courses-top p{
    font-size:18px;
  }

  .courses-mini-title{
    font-size:15px;
    gap:10px;
  }

  .line{
    width:40px;
  }

  .course-image-box{
    height:230px;
  }

  .btn-all-courses{
    width:100%;
    justify-content:center;

    font-size:18px;
    padding:20px;
  }

}
/* ===================================
   BANNER FORMAÇÕES
=================================== */
.banner-formacoes{
  position:relative;
  width:100%;
  overflow:hidden;
  background:#061C3B;
}

/* ===================================
   RECORTE ESQUERDO IGUAL DA IMAGEM
=================================== */
.banner-recorte-esquerdo{
  position:absolute;
  top:8px;
  left:0;

  width:140px;
  height:155px;

  background:#061C3B;

  clip-path:polygon(
    0 0,
    55% 0,
    78% 18%,
    100% 18%,
    68% 100%,
    0 100%
  );

  z-index:2;
}

/* ===================================
   IMAGEM
=================================== */
.banner-visual{
  flex:0 0 320px;

  display:flex;
  align-items:flex-end;

  position:relative;
  z-index:5;

  margin-left:-15px;
}

.banner-visual img{
  width:100%;
  max-width:320px;
  object-fit:contain;
  display:block;

  transform:translateY(12px);

  filter:drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}
/* FAIXA AMARELA */
/* ===================================
   FAIXA AMARELA PRINCIPAL
=================================== */
.banner-formacoes::before{
  content:"";
  position:absolute;
  top:8px;
  left:0;
  width:100%;
  height:155px;
  background:#E69600;

  /* BORDA DIREITA IGUAL DA IMAGEM */
  clip-path:polygon(
    0 0,
    88% 0,
    92.5% 50%,
    88% 100%,
    0 100%
  );

  z-index:1;
}

/* BARRA INFERIOR */
.banner-formacoes::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:14px;
  background:#031731;
  z-index:2;
}

/* DETALHE TOPO DIREITO */
.banner-topo-shape{
  position:absolute;
  top:0;
  right:0;

  width:130px;
  height:30px;

  background:#F6BE00;

  border-bottom-left-radius:50px;

  z-index:3;
}

/* RECORTE DIREITO */
.banner-formacoes .banner-wrapper::after{
  content:"";
  position:absolute;

  top:8px;
  right:-120px;

  width:240px;
  height:155px;

  background:#061C3B;

  clip-path:polygon(
    30% 0,
    100% 0,
    100% 100%,
    30% 100%,
    0 50%
  );

  z-index:2;
}

/* DETALHE BASE */
.banner-base-shape{
  position:absolute;
  left:-10px;
  bottom:0;
  width:100px;
  height:20px;
  background:#F6BE00;
  border-top-right-radius:30px;
  z-index:3;
}

/* PONTOS */
.banner-pontos{
  position:absolute;
  top:0;
  right:0;
  width:180px;
  height:80px;

  background-image:
  radial-gradient(#2E5D9F 1px, transparent 1px);

  background-size:10px 10px;

  opacity:.7;
  z-index:2;
}

/* CONTAINER */
.banner-wrapper{
  position:relative;
  z-index:5;

  max-width:1400px;
  min-height:170px;

  margin:auto;
  padding:0 35px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* ===================================
   IMAGEM
=================================== */
.banner-visual{
  flex:0 0 320px;

  display:flex;
  align-items:flex-end;

  position:relative;
}

.banner-visual img{
  width:100%;
  max-width:320px;
  object-fit:contain;
  display:block;

  transform:translateY(10px);

  filter:drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

/* ===================================
   CONTEÚDO
=================================== */
.banner-info{
  flex:1;
  max-width:600px;
}

.banner-info h1{
  color:#062349;
  font-size:20px;
  line-height:1.15;
  font-weight:800;
  text-transform:uppercase;

  margin-bottom:12px;
}

.banner-info h1 span{
  display:block;
  font-size:24px;
}

.banner-info p{
  color:#08213E;
  font-size:15px;
  line-height:1.5;
  max-width:520px;
}

/* ===================================
   BOTÃO
=================================== */
.banner-acao{
  flex:0 0 auto;
}

.banner-acao a{
  background:#062349;
  color:#fff;
  text-decoration:none;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;

  min-width:250px;

  padding:18px 28px;

  border-radius:6px;

  font-size:14px;
  font-weight:700;

  transition:0.3s;
}

.banner-acao a:hover{
  background:#031731;
  transform:translateY(-3px);
}

.banner-icon-circle{
  font-size:18px;
}

/* ===================================
   TABLETS
=================================== */
@media(max-width:992px){

   .banner-recorte-esquerdo{
    display:none;
  }

  .banner-formacoes::before{
    top:0;
    height:100%;
    clip-path:none;
  }

  .banner-wrapper{
    flex-direction:column;
    text-align:center;

    padding:40px 25px 45px;
    gap:25px;
  }

  .banner-visual{
    flex:none;
  }

  .banner-visual img{
    max-width:270px;
    transform:none;
  }

  .banner-info{
    max-width:100%;
  }

  .banner-info h1{
    font-size:22px;
  }

  .banner-info h1 span{
    font-size:28px;
  }

  .banner-info p{
    margin:auto;
    font-size:15px;
  }

  .banner-acao a{
    width:100%;
    max-width:320px;
    min-width:auto;
  }
}

/* ===================================
   SMARTPHONES
=================================== */
@media(max-width:576px){

  .banner-wrapper{
    padding:35px 18px 40px;
  }

  .banner-visual img{
    max-width:220px;
  }

  .banner-info h1{
    font-size:18px;
  }

  .banner-info h1 span{
    font-size:24px;
  }

  .banner-info p{
    font-size:14px;
    line-height:1.6;
  }

  .banner-acao a{
    font-size:13px;
    padding:16px 20px;
  }

  .banner-pontos{
    width:120px;
    opacity:.4;
  }
}