* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

/* CAROUSEL */
.carousel {
  height: 110vh;
  position: relative;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  max-width: 900px;
  width: auto;
  padding: 45px 55px; /* ⬅ espaçamento interno REAL */
  text-align: center;
  z-index: 2;
}

/* FUNDO ESCURO SEMI-TRANSPARENTE */
.overlay::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.3); /* escuro limpo */
  z-index: -1;

  /* detalhe elegante opcional */
  border-left: 3px solid rgba(255,255,255,0.1);
}


.tag {
  font-size: 13px;
  letter-spacing: 3px;
  opacity: 0.9;
}

.title {
  font-size: 67px;
  font-weight: 900;
  letter-spacing: 5px;
  line-height: 1.1;
}

.subtitle {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

.area {
  font-size: 40px;
  margin-top: 10px;
}

.area span {
  font-size: 22px;
  font-weight: 400;
  margin: 0 8px;
}

.nav-arrows {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
}

.nav-arrows button {
  width: 64px;
  height: 64px;
  background: transparent;
  border: 4px solid rgba(230, 150, 0);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrows button:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}


/* SECTION */
.sobre-section{
  width:100%;
  padding:110px 7%;
  overflow:hidden;
  background:#fff;
  margin-top: -60px;
  margin-bottom: 0px;
}

.sobre-container{
  display:grid;
  grid-template-columns:520px 1fr;
  gap:60px;
  align-items:start; /* ALTERADO */
}

/* =========================
   IMAGEM
========================= */

.sobre-image-area{
  position:relative;
 margin-top:70px;
}

.sobre-image-box{
  position:relative;
  border-radius:30px;
}

.sobre-image-box img{
  width:100%;
  height:370px;
  object-fit:cover;
  border-radius:30px;
  display:block;
  position:relative;
  z-index:2;
}

/* FORMAS */
.shape-top{
  position:absolute;
  width:85px;
  height:95px;
  background:#E69600;
  border-radius:24px;
  top:-18px;
  left:-18px;
  z-index:1;
}

.shape-top::before{
  content:"";
  position:absolute;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#b36b0d;
  top:0;
  right:0;
}

.shape-bottom{
  position:absolute;
  width:90px;
  height:55px;
  background:#5f9644;
  border-radius:22px;
  bottom:-18px;
  right:-18px;
  z-index:1;
}

.shape-bottom::before{
  content:"";
  position:absolute;
  width:34px;
  height:34px;
  border:2px solid rgba(255,255,255,0.4);
  border-radius:50%;
  right:10px;
  bottom:10px;
}

/* PONTOS */
.dots-left{
  position:absolute;
  width:90px;
  height:90px;
  left:-35px;
  bottom:40px;
  background-image:radial-gradient(#5f9644 1.5px, transparent 1.5px);
  background-size:10px 10px;
  z-index:0;
}

/* =========================
   CONTEÚDO
========================= */

.sobre-content{
  display:grid;
  grid-template-columns:333fr 0.9fr;
  gap:10px;
  align-items:flex-start;
}

/* TEXTO */

.sobre-mini-title{
  font-size:12px;
  font-weight:700;
  color:#5d7d4d;
  letter-spacing:1px;
  margin-bottom:18px;
  display:inline-block;
}

.sobre-title-wrap{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:35px;
}

.sobre-title-wrap h2{
  font-size:52px;
  font-weight:700;
  color:#1d1d1d;
  white-space:nowrap;
}

.title-line{
  width:100%;
  height:1px;
  background:#d9b77d;
  position:relative;
}

.heart-icon{
  position:absolute;
  top:-15px;
  left:10px;
  color:#E69600;
  font-size:22px;
}

.sobre-text p{
  font-size:18px;
  line-height:1.9;
  color:#4d4d4d;
  margin-bottom:24px;
  text-align: justify;
}

/* BOTÃO */

.sobre-btn{
  margin-top:20px;
  display:inline-flex;
  align-items:center;
  gap:14px;
  background:#062D66;
  color:#fff;
  text-decoration:none;
  padding:16px 30px;
  border-radius:40px;
  font-size:13px;
  font-weight:700;
  transition:.3s;
  box-shadow:0 10px 20px rgba(2, 11, 128, 0.18);
}

.sobre-btn span{
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}

.sobre-btn:hover{
  transform:translateY(-3px);
  background:#22582b;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .sobre-container{
    grid-template-columns:1fr;
    gap:60px;
  }

  .sobre-image-box{
    max-width:700px;
    margin:auto;
  }

  .sobre-content{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }

  .sobre-title-wrap h2{
    font-size:42px;
  }
}

/* =========================
   TABLET PEQUENO
========================= */

@media(max-width:850px){

  .sobre-content{
    grid-template-columns:1fr;
  }
  
  .sobre-image-area{
  position:relative;
  margin-top:-70px;
}
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .sobre-section{
    padding:80px 5%;
    margin-top: 10px;
  }

  .sobre-image-box img{
    height:270px;
  }

  .sobre-title-wrap{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  .sobre-title-wrap h2{
    font-size:38px;
    white-space:normal;
  }

  .title-line{
    width:100%;
  }

  .sobre-text p{
    font-size:15px;
    line-height:1.8;
  }

  .sobre-btn{
    width:100%;
    justify-content:center;
  }

  .shape-top{
    width:70px;
    height:80px;
  }

  .shape-bottom{
    width:70px;
    height:45px;
  }
}

    
.carousel-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.carousel-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  text-align: left;
  padding-left: 80px;
}

.highlight-red {
  color: #E69600; /* vermelho sombrio (dark red) */
  font-weight: 700 
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome */
}
.service-card {
  flex: 0 0 33.333%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.badge {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #131312, #062D66); /* Azul sombrio */
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 5px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #0d2235;
  margin: 10px 0;
}

.service-card p {
  color: #444;
  font-size: 0.95rem;
}
/* Botões laterais */
.carousel-btn {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  color: #002d62;
  border: none;
  font-size: 1.5rem;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s ease;
}
.carousel-btn:hover {
  background-color: rgba(0,0,0,0.8);
}
.carousel-btn.prev {
  left: -5px;
}
.carousel-btn.next {
  right: -20px;
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 900px) {
  .service-card {
    flex: 0 0 50%;
  }
}

/* Tablets pequenos e celulares grandes (até 768px) - 2 cards por tela */
@media (max-width: 768px) {
  .service-card {
    flex: 0 0 50%;
  }
}

/* Smartphones (até 576px) - apenas 1 serviço por tela */
@media (max-width: 576px) {
  .service-card {
    flex: 0 0 100%;
  }

  .carousel-btn.prev {
    left: 5px;
  }

  .carousel-btn.next {
    right: 5px;
  }

  .carousel-title {
    font-size: 1.5rem;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .overlay {
    max-width: 90%;
    padding: 25px;
  }

  .title {
    font-size: 54px;
  }

  .subtitle {
    font-size: 15px;
  }

  .area {
    font-size: 28px;
  }
}

/* TABLETS: até 1024px */
@media (max-width: 1024px) {
  .carousel {
    height: 80vh;
  }

  .overlay {
    padding: 35px 45px;
  }

  .title {
    font-size: 55px;
  }

  .subtitle {
    font-size: 22px;
  }

  .area {
    font-size: 32px;
  }

  .area span {
    font-size: 18px;
    margin: 0 6px;
  }

  .nav-arrows {
    right: 20px;
  }

  .nav-arrows button {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* CELULARES GRANDES: até 768px */
@media (max-width: 768px) {
  .carousel {
    height: 65vh;
  }

  .overlay {
    padding: 25px 30px;
  }

  .title {
    font-size: 42px;
  }

  .subtitle {
    font-size: 18px;
  }

  .area {
    font-size: 28px;
  }

  .area span {
    font-size: 16px;
    margin: 0 4px;
  }

  .nav-arrows {
    right: 15px;
    gap: 12px;
  }

  .nav-arrows button {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* CELULARES PEQUENOS: até 480px */
@media (max-width: 480px) {
  .carousel {
    height: 50vh;
  }

  .overlay {
    padding: 15px 20px;
  }

  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .area {
    font-size: 22px;
  }

  .area span {
    font-size: 14px;
    margin: 0 3px;
  }

  .nav-arrows {
    right: 10px;
    gap: 10px;
  }

  .nav-arrows button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}


/* =========================================
   RESET
========================================= */

/* =========================================
   SECTION PRINCIPAL
========================================= */
.sec-cursos-destaque{
  position:relative;
  width:100%;
  overflow:hidden;
  background:
  radial-gradient(circle at right, rgba(9,70,150,0.25), transparent 35%),
  linear-gradient(90deg,#02152D 0%, #002B66 50%, #02152D 100%);
  padding:40px 40px;
  margin-bottom: 60px;
}

/* EFEITOS */
.efeito-top-right{
  position:absolute;
  top:30px;
  right:40px;

  width:140px;
  height:140px;

  background-image:
  radial-gradient(#E69600 1.5px, transparent 1.5px);

  background-size:12px 12px;

  opacity:.8;
}

.efeito-bottom-right{
  position:absolute;
  right:130px;
  bottom:80px;

  width:180px;
  height:180px;

  background-image:
  radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);

  background-size:12px 12px;

  opacity:.5;
}

/* CONTAINER */
.container-cursos-destaque{
  max-width:1400px;
  margin:auto;

  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:60px;
}

/* =========================================
   LADO ESQUERDO
========================================= */
.lado-cursos{
  flex:1;
}

/* TÍTULO */
.titulo-cursos{
  display:flex;
  align-items:center;
  gap:14px;

  margin-bottom:35px;
}

.linha-seta{
  width:12px;
  height:12px;

  border-top:2px solid #E69600;
  border-right:2px solid #E69600;

  transform:rotate(45deg);
}

.titulo-cursos h2{
  color:#fff;
  font-size:35px;
  font-weight:800;
}

.titulo-cursos h2 span{
  color:#E69600;
}

.titulo-cursos::after{
  content:"";
  display:block;

  width:50px;
  height:4px;

  background:#E69600;

  position:absolute;

  margin-top:70px;
  margin-left:30px;
}

/* GRID */
.grid-cursos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;

  margin-bottom:35px;
}

/* CARD */
.card-curso{
  background:linear-gradient(180deg,#032D69 0%, #03214B 100%);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:6px;
  height:160px;
  width: 200px;
  padding:2px 3px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  transition:.3s;
}

.card-curso:hover{
  transform:translateY(-5px);
  border-color:#E69600;
}

.icone-curso{
  color:#E69600;
  font-size:42px;

  margin-bottom:18px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.card-curso h3{
  color:#fff;
  font-size:15px;
  line-height:1.4;
  font-weight:400;

  max-width:220px;
}

.botao-card{
  width:30px;
  height:30px;
  border-radius:50%;
  border:2px solid #E69600;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#E69600;
  font-size:11px;
  margin-top:18px;
  transition:.3s;
}

.card-curso:hover .botao-card{
  background:#E69600;
  color:#031B38;
}
/* BOTÃO */
.btn-ver-cursos{
  display:inline-flex;
  align-items:center;
  gap:14px;

  background:#E69600;
  color:#eeeff1;

  text-decoration:none;

  font-size:18px;
  font-weight:800;

  padding:18px 28px;

  border-radius:4px;

  transition:.3s;
}

.btn-ver-cursos:hover{
  transform:translateY(-4px);
}

.btn-ver-cursos span{
  width:28px;
  height:28px;

  border-radius:50%;
  border:2px solid #031B38;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:12px;
}

/* =========================================
   LADO DIREITO
========================================= */
.lado-beneficios{
  width:800px;
  position:relative;
}

/* TÍTULO */
.titulo-beneficios{
  margin-bottom:35px;
}

.titulo-beneficios h2{
  color:#fff;
  font-size:35px;
  line-height:1.2;
  font-weight:800;
}

.titulo-beneficios span{
  color:#E69600;
}

/* LISTA */
.lista-beneficios{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:19px;
}

.lista-beneficios li{
  color:#fff;
  font-size:16px;
  display:flex;
  align-items:center;
  gap:14px;
}

/* CHECK */
.check-beneficio{
  width:24px;
  height:20px;
  border-radius:50%;
  background:#E69600;
  color:#031B38;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  flex-shrink:0;
}

/* =========================================
   IMAGEM
========================================= */
.imagem-profissional{
  position:absolute;
  right:-120px;
  top:100px;
}

.circulo-imagem{
  width:360px;
  height:360px;
  border-radius:50%;
  border:6px solid #E69600;
  overflow:hidden;
  position:relative;
  background:#062D66;
  box-shadow:0 0 50px rgba(0,0,0,0.4);
}

.circulo-imagem::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:50%;
}

.circulo-imagem img{
  width:100%;
  height:100%;
  object-fit:cover;
 
}

/* =========================================
   TABLETS
========================================= */
@media(max-width:1200px){

  .container-cursos-destaque{
    flex-direction:column;
  }

  .lado-beneficios{
    width:100%;
  }

  .imagem-profissional{
    position:relative;
    right:auto;
    top:auto;

    margin:50px auto 0;

    display:flex;
    justify-content:center;
  }

}

/* =========================================
   TABLETS PEQUENOS
========================================= */
@media(max-width:992px){

  .grid-cursos{
    grid-template-columns:repeat(2,1fr);
  }

  .titulo-cursos h2,
  .titulo-beneficios h2{
    font-size:38px;
  }

  .card-curso h3{
    font-size:21px;
  }

  .lista-beneficios li{
    font-size:20px;
  }

}

/* =========================================
   SMARTPHONES
========================================= */
@media(max-width:768px){

  .sec-cursos-destaque{
    padding:60px 20px;
  }

  .grid-cursos{
    grid-template-columns:1fr;
  }

  .titulo-cursos h2,
  .titulo-beneficios h2{
    font-size:30px;
  }

  .card-curso{
    min-height:160px;
  }

  .card-curso h3{
    font-size:20px;
  }

  .lista-beneficios{
    gap:20px;
  }

  .lista-beneficios li{
    font-size:17px;
    line-height:1.5;
    align-items:flex-start;
  }

  .circulo-imagem{
    width:280px;
    height:280px;
  }

  .btn-ver-cursos{
    width:100%;
    justify-content:center;
  }

}