@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');



:root {
  --primary-color: #00A9E0;
  --secondary-color: #155480;
  --text-color: #ffffff;
  --text-color-dark: #000;


  /* Cores da Marca */
      --color-primary: #EE9446;
      --color-secondary: #15245B;

      /* Hover */
      --color-primary-hover: #f7931e;
      --color-secondary-hover: #101B45;
      --titulo-escuro: #1A1A1A;
      /* Tipografia */
      --titulo: #FFFFFF;
      /* TÃ­tulos claros para fundo escuro */
      --color-subheading: #3D4B77;
      /* Azul acinzentado */
      --subtitulo: #E0E6F0;
      /* Texto claro para fundo escuro */

      /* Fundos */
      --color-bg: #F9F9F9;
      --color-bg-alt: #FFFFFF;

      /* Bordas e sombras */
      --color-border: #E0E0E0;

      /* Destaque extra */
      --color-accent: #FDCB9E;

            --success-color: #10b981;
            --danger-color: #ef4444;
            --warning-color: #f59e0b;
            --gradient-primary: linear-gradient(135deg, #155480 0%, #00a9e0 100%);
            --gradient-secondary: linear-gradient(135deg, #101B45 0%, rgb(71, 159, 181) 100%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
    color: var(--text-color-dark) !important;
    font-family: "Jost", sans-serif !important;
    font-size: 1em !important; 
}
.video-side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-video {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}

a:hover,
a:visited,
a:active {       
  text-decoration: none !important;
}
.main-button {
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--text-color);
}
.main-button a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    display: block;       
    width: 100%;          
    height: 100%;         
    text-align: center;   
    padding: 15px 35px;
}
.main-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    
}
.main-button a:hover {
    color: var(--text-color) !important;
}
@media (max-width: 340px) {
    .main-button a {
        padding: 10px 30px !important;
    }
}

/* HEADER */

header {
  position: absolute; /* fica por cima do hero */
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: transparent; /* sem fundo */
  z-index: 10; /* garante que fica na frente do banner */
}
nav {
    width: 100%;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap:40px;
}
header ul li a {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2em;
    font-weight: 600;
}
header ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* distancia da linha até o texto */
  width: 0;
  height: 2px; /* espessura da linha */
  background: currentColor; /* usa a mesma cor do texto */
  transition: width 0.3s ease;
}

header ul li a:hover {
    color: #fff;
}
header ul li a:hover::after {
  width: 100%;
}
header ul li a.no-underline::after {
  content: none;
}
header .navbar-collapse {
    justify-content: end;
}
@media (max-width: 992px) {
    header .navbar-collapse {
        background: rgba(21, 84, 128); /* fundo escuro semi-transparente */
        padding: 1rem;
        border-radius: 10px;
    }
    
}

/* Hero area */

#hero-area {
    padding: 240px 0 180px 0;
    display: flex;
    align-items: center;
    color: var(--text-color);
}
#hero-area h1 {
    font-size: 4em !important;
    line-height: 1;
    padding-bottom: 10px;
}
#hero-area h1 span {
    color: var(--primary-color);
}

#hero-area .main-button {
    margin: 15px 0px;
}
#hero-area .text-hero p {
    font-size: 1.1em;
}

#hero-area .counter-up-container {
    display: flex;
    gap: 20PX;
    margin-top: 20px;
}

#hero-area .counter {
    font-size: 3.2em;
    font-weight: bold;
    color: var(--text-color);
    font-variant-numeric: tabular-nums;
}
#hero-area .label {
    font-size: 1em;
}
#hero-area .label p {
    margin:0 !important;
}
#hero-area .label strong {
    font-size: 26px;
    color: var(--primary-color);
}

#hero-area .bar {
    height: 100px;
    width: 1px;
    background-color: #eee;
}
#hero-area .counter-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:20px;
}
#hero-area .counter-item span {
    font-size: 3.2em;
}


@media (width > 992px) and (width <= 1200px) {
    #hero-area .text-hero {
        max-width: 70%;
    }
}
@media (width > 1200px) {
    #hero-area .text-hero {
        max-width: 60%;
    }
}
@media (width <= 992px) {
    #hero-area {
        padding: 190px 0;
    }
    #hero-area .text-hero { 
        text-align: center;
    }
    #hero-area .counter-up-container {
        flex-direction: column;
    }
    #hero-area .bar {
        display: none;
    }
    #hero-area h1 {
        font-size: 2.8em !important;
    }
    #hero-area .counter-item {
        flex-direction: column;
        gap:0;
    }
    #hero-area .counter-item .label {
        text-align: center;
        margin-top: -10px;
    }
}
@media (width <= 768px) {
    #hero-area h1 {
        font-size: 2em !important;
    }
    #hero-area .counter,
    #hero-area .counter-percent span {
        font-size: 2.5em;
    }

}
@media (width <= 425px) {
    #hero-area h1 {
        font-size: 1.5em !important;
    }
    #hero-area p {
        font-size: 0.9em !important;
    }
    
    #hero-area .main-button a {
        font-size: 0.9em !important;
    }
}



/* ABOUT AREA */

#about {
    padding: 40px 0;
}
#about video {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: block;
    height: auto;
}
#about .video-side img {
    max-width: 100%;
    border-radius: 20px;
}
#about .video-side {
  flex: 1 1 65%;    /* ocupa até 60% no desktop */
  min-width: 300px; /* evita ficar minúsculo */
}

#about .text-side {
    color: var(--text-color-dark);
    flex: 1 1 35%;    /* ocupa até 40% no desktop */
    min-width: 280px;
}
#about .about-area {
    gap: 30px;
}
#about .text-side .title-about h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2em;
}
#about .text-side .title-about img {
    width: 14px;
    height: 14px;
}
#about .text-side h2 {
    font-size: 2.2em;
    font-weight: bold;
    margin-top: 5px
}
#about .text-side p {
    margin: 20px 0;
}
#about .text-side .main-button a{
    color: #fff;
    padding: 15px 100px;
}
@media (width >= 992px) {
    #about .about-area {
        display: flex;
        flex-direction: row-reverse;
    }
}
@media (width <= 1200px) {
    #about .text-side h2 {
        font-size: 1.8em;

    }
    #about .text-side p {
        margin: 10px 0;
        line-height: 1.3;
    }
    #about .text-side .title-about h4 {
        font-size: 1em;
    }
}
@media (width <= 992px) {
    #about .video-side {
        margin-top: 20px;
    }
}
@media (width <= 768px) {
    #about .text-side .main-button {
        border-radius: 10px;
    }
    #about .text-side .main-button a {
        padding: 10px 60px;
    }
     #about .text-side p {
        margin: 15px 0;
        line-height: 1.3;
    }
}
@media (width <= 425px) {
    #about .text-side h2 {
        font-size: 1.5em !important;
    }
    #about .text-side p {
        font-size: 0.9em;
    }
    #about .video-side {
        min-width: 250px;
    }
}

/*Autoridade*/

#autoridade {
    padding: 160px 0;
}
#autoridade .autoridade-area {
  gap: 50px;
  align-items: flex-start;
}
#autoridade .text-area {
  flex: 1;
  color: var(--text-color);
  margin-top: 30px;
}
#autoridade .gradient-text {
  background: linear-gradient(90deg, #fff, #00A9E0);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; /* Faz o preenchimento ficar transparente */
  background-clip: text; 
  color: transparent; 
}
#autoridade .text-area h2 {
    font-size: 3.2em;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.30));
}
#autoridade .text-area p {
    font-size: 1.3em;
    margin-bottom: 30px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.30));
}
#autoridade .images-area {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

#autoridade .images-area .main-img {
  border-radius: 10px;
  display: block;
  width: 100%;
  max-width: 350px;
  
}
#autoridade .images-area .certificado-img {
  position: absolute;
  bottom: -50px;   
  left: 40px;      
  width: 60%;
  border-radius: 10px;
}
@media (width >= 992px) {
    #autoridade .autoridade-area {
        display: flex;
    }
}
@media (width <= 1200px) {
    #autoridade .autoridade-area .main-img {
        max-width: 300px;
 
    }
}
@media (width <= 992px) {
    #autoridade .autoridade-area .certificado-img {
        max-width: 300px;
    }
    #autoridade .images-area {
        justify-content: center;
    }
}
@media (width <= 768px) {
    #autoridade .text-area h2 {
        font-size: 2.8em;
    }
     #autoridade .text-area p {
        font-size: 1em;
    }
    #autoridade .text-area {
        padding: 0 20px;
    }
}
@media (width <= 450px) {
    #autoridade .text-area h2 {
        font-size: 2.3em;
    }
    #autoridade .autoridade-area .main-img {
        max-width: 250px;
    }
    #autoridade .autoridade-area .certificado-img {
        max-width: 250px;
    }
}


/* INFLUENCERS AREA */

#influencers {
    padding: 60px 0;
    color: var(--text-color);
}
#influencers .card-content {
    background-color: var(--secondary-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    border-radius: 0px 10px 10px 0px;
}
@media (width >= 992px) {
    #influencers .influencers-area {
    display: flex;
    gap: 10px;
}
 #influencers .text-influencers {
        flex: 0 0 30%;
    }

    #influencers .carousel-area {
        flex: 0 0 70%; 
        max-width: 70%;
        min-width: 0; /* <- ESSENCIAL: evita o swiper vazar */
    }
}

#influencers .influencer-item {
    display: flex;
    gap: 10px;
}
#influencers .name-influencer {
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
#influencers .name-influencer small {
    color: var(--primary-color);
    font-weight: 500;
}
#influencers .card-content img {
    max-width: 100px;
    height: auto;
    align-self: center;
    margin-bottom: 10px;
}
#influencers .influencer-img img {
    border-radius: 10px 0px 00px 10px;
    max-width: 370px;
}
#influencers .text-influencers {
    color: var(--text-color-dark);
}
#influencers .text-influencers h4 {
    color: var(--primary-color);
    font-size: 1.5em;
    font-weight: bold;
}
#influencers .text-influencers h2 {
    font-size: 2.8em;
    font-weight: bold;
    padding: 10px 0px;

}

#influencers .text-influencers .main-button a {
    color: var(--text-color) !important;
    padding: 10px 60px;
    display: block;
    width: 100%;
    height: 100%;
}
#influencers .swiper-pagination {
  position: static;
  margin-top: 10px; /* dá espaço entre o carrossel e os bullets */
  text-align: center; /* centraliza */
}


.swiper {
    width: 100%;   /* ocupa só o espaço da .carousel-area */
    height: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

@media (width <= 1200px) and (width > 992px) {
    #influencers .card-text-g {
        font-size: 0.9em;
    }
}
@media (width <= 1200px) {
    #influencers .text-influencers h2 {
        font-size: 2.5em;
    }
    #influencers .influencer-img img {
        max-width: 320px;
    }
}
@media (width <= 992px) {
    #influencers .carousel-area {
        padding-top: 30px;
    }

}
@media (width <= 768px) {
    #influencers .influencer-item {
    flex-direction: column;
    align-items: center; /* centraliza a imagem */
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
    gap:5px;
  }
   #influencers .influencer-img img {
    width: 100%;       /* imagem ocupa toda a largura */
    max-width: 360px;  /* limite opcional para não ficar gigante */
    border-radius: 10px 10px 0 0; /* bordas ajustadas pro formato em coluna */
  }
   #influencers .card-content {
    width: 100%;  /* depoimento também ocupa 100% */
    border-radius: 0 0 10px 10px;
    padding: 20px 20px;
  }
  #influencers .text-influencers {
        text-align: center;
    }
}

@media (width <= 460px) {
    #influencers .influencer-item {
        max-width: 300px;
    }
     #influencers .influencer-img img {
        max-width: 300px;
    }
    #influencers .text-influencers h2 {
        font-size: 2em;
        padding: 10px 0;
    }
    #influencers .text-influencers h4 {
        font-size: 1.2em;
    }
    #influencers .card-content p {
        margin-bottom: 0;
    }
} 


/* SECTION CIDADES */

#cards-section {
  width: 100%;
  padding: 60px 0;
  text-align: center;
}

/* CARD CUSTOM */
.card-custom {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  margin-top: 25px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 10px;
  padding-bottom:5px ;
  color: #fff;
  text-align: center;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0) 100%
  );

  backdrop-filter: blur(1px);
  z-index: 2; 
}

.overlay h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.overlay p {
  font-size: 0.8em;
  margin-top: 5px;
  line-height: 1.4;
}
#cards-section h4 {
    color: var(--primary-color);
    font-size: 1.8em;
    font-weight: bold;
}
#cards-section h2 {
    font-size: 2.5em;
    font-weight: 800;
    padding-bottom: 20px;
    color: var(--text-color-dark);
}

@media (width <= 992px) {
    #cards-section .row .card-custom {
        margin: 20px auto;
        max-width:500px;
    }
}

#cards-section .main-button a{
    padding: 12px 40px;
}
@media (width <= 768px) {
    #cards-section h4 {
        font-size: 1.3em;
    }
    #cards-section h2 {
        font-size: 1.8em;
    }
}
@media (width <= 450px) {
    #cards-section h4 {
        font-size: 1.1em;
    }
    #cards-section h2 {
        font-size: 1.6em;
    }
}
#cards-section .card-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    
}



/* CURSOS AREA */

#cursos {
    padding: 100px 0;
    text-align: center;
    color: var(--text-color);
}
#cursos-container {
  gap: 20px;
  margin-top: 30px;
  background-color: transparent;
  display: flex;
  justify-content: center;
}

.curso-card {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#cursos h4 {
    color: var(--primary-color);
    font-size: 1.8em;
    font-weight: bold;
}
#cursos h2 {
    font-size: 2.5em;
    font-weight: bold;
}
.curso-card img {
    width: 100%;
    max-width: 100%;
    max-height: 370px;
    border-radius: 20px;
}
.curso-card h5 {
    font-size:1.7em ;
    font-weight: bold;
    padding: 5px 0;
}
.curso-card p {
    font-size: 1.1em;
    padding-bottom: 5px;
}
.curso-card .second-btn {
    background-color: var(--secondary-color);
    display: inline-block;
    border-radius: 10px;
    
}
.curso-card .second-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.curso-card .second-btn a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    display: block;       
    width: 100%;          
    height: 100%;         
    text-align: center;   
    padding: 10px 30px;
}
.curso-card span {
    background-color:var(--primary-color);
    padding: 15px 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1em;
    font-weight: 700;
    border-radius: 10px;
}
.curso-card-img {
    position: relative;
}
.curso-card-text {
    background-color: var(--primary-color);
    text-align: center;
    padding:20px;
    border-radius: 20px;
}
.cursos-area .idiomas-menu {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
@media (width > 992px) {
    .cursos-area .idiomas-top,
    .cursos-area .idiomas-bottom {
        display: flex;
    }
}
.cursos-area .idiomas-menu .idioma {
    background-color: transparent;
    padding: 15px 30px;
    border: 1px solid #fff;
    color: var(--text-color);
    cursor: pointer;
    font-weight: bold;
}

.cursos-area .idiomas-menu .active {
    background-color: #fff;
    color: var(--secondary-color);
}
@media (width <= 1200px) {
    .curso-card {
        max-width: 420px;
    }
}
@media (width <= 992px) {
    .curso-card {
        max-width: 450px;
    }
}
@media (width <= 768px) {
    .curso-card {
        max-width: 400px;
    }
    #cursos h4 {
        font-size: 1.4em;
    }
    #cursos h2 {
        font-size: 2.3em;
    }
    #cursos .curso-card-text h5 {
        font-size: 1.4em;
    }
    #cursos .curso-card-text p {
        font-size: 1em;
    }
}
@media (width <= 425px) {
    .idiomas-menu {
        flex-direction: column;
    }
    .idiomas-menu .idioma {
        padding: 10px 20px;
    }
    #cursos h4 {
        font-size: 1.2em;
    }
    #cursos h2 {
        font-size: 2em;
    }
}



/* JORNADA AREA */

#jornada {
    padding: 60px 0;
    color: var(--text-color);

}
#jornada h4 {
    color: var(--primary-color);
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
}
#jornada h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}
#jornada .jornada-1 {
    border: 6px solid #6FB5DC;
}
#jornada .jornada-1 .jornada-top {
    background-color: #6FB5DC;
}
#jornada .jornada-2 {
    border: 6px solid #4FA1D1;
}
#jornada .jornada-2 .jornada-top {
    background-color: #4FA1D1;
}
#jornada .jornada-3 {
    border: 6px solid #2F8DC6;
}
#jornada .jornada-3 .jornada-top {
    background-color: #2F8DC6;
}

/* Área principal */
#jornada .jornada-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 colunas */
  align-items: end; /*deixa cada card respeitar sua própria altura */
}


#jornada .jornada-1 { height: 450px; }
#jornada .jornada-2 { height: 550px; }
#jornada .jornada-3 { height: 650px; }


#jornada .jornada-top {
  color: #fff;
  padding: 10px;
  font-weight: bold;
  
  text-align: center;
  width: 100%;
}
#jornada .jornada-top h6 {
    font-size: 1.3em;
}
@media (max-width: 992px) {
  #jornada .jornada-area {
    grid-template-columns: 1fr; /* vira 1 coluna */
    justify-items: center; /* centraliza os cards */
  }

  #jornada .jornada-1,
  #jornada .jornada-2,
  #jornada .jornada-3 {
    height: auto;
    border-radius: 10px 10px 0 0 ;
  }
  #jornada .checks {
    padding: 5px 10px !important;
    font-size: 0.9em !important;
  }
  /* Escadinha agora pelo width */
  #jornada .jornada-1 { width: 70%; }
  #jornada .jornada-2 { width: 85%; }
  #jornada .jornada-3 { width: 100%; }

  #jornada h4 {
    font-size: 1.3em;
  }
  #jornada h2 {
    font-size: 2em;
  }
}

#jornada .jornada-item {
    background-color: #fff;
}
#jornada .checks {
    display: flex;
    align-items: center;
    color: var(--text-color-dark);
    font-size: 1em;
    font-weight: bold;
    padding: 0px 10px;
    line-height: 1.4;
    gap: 5px;
}
#jornada .checks p {
    margin: 0;
}
@media (width >= 1200px) {
    #jornada .checks {
        font-size: 1.1em;
    }
}
@media (width > 992px) {
    #jornada .jornada-1,
    #jornada .jornada-2,
    #jornada .jornada-3
    {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 15px;
        border-radius: 15px 0px 0px;
    }
}
@media (width <= 425px) {
    #jornada h4 {
    font-size: 1.1em;
  }
  #jornada h2 {
    font-size: 1.6em;
  }
}




/* EQUIPE AREA */
#equipe {
    background-color: #eee;
    padding: 60px 0;
}
#equipe h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}
#equipe h2 {
    color: var(--text-color-dark);
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}


.swiper-professores {
  width: 100%;
  padding: 20px 0;
}

.swiper-professores .swiper-slide {
  display: flex;
  justify-content: center;
}
#equipe .swiper-pagination {
    position: static;
    margin-top: 10px; /* dá espaço entre o carrossel e os bullets */
    text-align: center;
}
#equipe .professor {
   max-width: 350px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end; /* joga o conteúdo pro fundo */
    color: white;
}
#equipe .content-card {
  z-index: 1; /* fica acima do gradiente */
  text-align: left;
  
}
#equipe .content-card .texts-area {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(1px); 
    padding: 20px 10px;
}
#equipe .professor-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(21, 84, 128, 0.6);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: bold;
  
}
#equipe .professor-flags {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
#equipe .main-button a{
    padding: 10px 30px;
    text-align: left;
    justify-content: center;
}

#equipe .professor-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
#equipe h4 {
  margin-top: 16px;
  font-size: 1.5em;
  font-weight: bold;
}
#equipe p {
  font-size: 1em;
  margin: 10px 0;
}
@media (width <= 500px) {
    #equipe h3 {
        font-size: 1.2em;
    }
    #equipe h2 {
        font-size: 1.8em;
    }
    #equipe .professor {
        max-width: 300px;
        height: 450px;
    }
}

/* BANNER CTA AREA */


#banner-cta {
    padding: 150px 0;
    color: var(--text-color);
}
@media (width > 992px) {
    #banner-cta .banner-cta-area {
        padding-right: 40%;
    }
}
#banner-cta h3 {
    font-size: 1.8em;
    color: var(--primary-color);
}
#banner-cta h2 {
    font-size: 2.6em;
    padding-bottom: 20px;
    font-weight: bold;
}
#banner-cta p {
    font-size: 1.1em;
    padding-bottom: 15px;
}
@media (max-width: 768px) {
    #banner-cta h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    font-weight: bold;
}
#banner-cta h2 {
    font-size: 2em;
}
#banner-cta p {
    font-size: 1em;
}
}
@media (max-width: 550px) {
    #banner-cta h3 {
    font-size: 1.3em;
    color: var(--primary-color);
}
#banner-cta h2 {
    font-size: 1.8em;
}
#banner-cta p {
    font-size: 1em;
}
#banner-cta .banner-cta-area {
    text-align: center;
}
}


/* TESTIMONIALS AREA */

#testimonials {
    padding: 60px 0;
    text-align: center;
    color: var(--text-color-dark);
}
#testimonials h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
}
#testimonials h2 {
    font-size: 2.6em;
    padding-bottom: 20px;
    font-weight: bold;
}
#testimonials .text-t-area {
    padding: 20px;
    font-size: 1.4em;
    font-weight: 500;
}

#testimonials .swiper {
    width: 100%;
    max-width: 900px; /* controla a largura máxima do carrossel */
    margin: auto;
  }

#testimonials .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

#testimonials .swiper-slide video {
    width: 70%;
    height: auto;
    border-radius: 12px;
    background-color: #000;
    aspect-ratio: 4 / 7;
  }
#testimonials .main-button a{
    font-size: 1em !important;
    padding: 13px 60px;
    
}
#testimonials .main-button {
    margin-top: 20px;
}

  /* Setas personalizadas */
#testimonials .swiper-button-next,
#testimonials .swiper-button-prev {
    color: #00a8ff; /* cor da seta */
  }

  /* Paginação */
#testimonials .swiper-pagination-bullet {
    background: #00a8ff;
    opacity: 0.6;
  }
#testimonials .swiper-pagination-bullet-active {
    opacity: 1;
  }
#testimonials .swiper-pagination {
    position: static;
    margin-top: 10px; /* dá espaço entre o carrossel e os bullets */
    text-align: center;
}

@media (width <= 768px) {
    #testimonials h3 {
        font-size: 1.4em;
    }
    #testimonials h2 {
        font-size: 2.2em;
    }
    #testimonials .text-t-area {
        font-size: 1.1em;
    }
    #testimonials .swiper-slide video {
        width: 60%;
    }
}
@media (width <= 425px) {
    #testimonials h3 {
        font-size: 1.2em;
    }
    #testimonials h2 {
        font-size: 1.8em;
    }
    #testimonials .text-t-area {
        font-size: 1em;
    }

}

/* CTA */

#cta {
    padding: 120px 0;
}
#cta h3 {
    text-align: center;
    padding-bottom: 50px;
    font-size: 2.6em;
    font-weight: 900;
}
#cta h2 {
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    color: var(--primary-color);
}
@media (max-width: 768px) {
    #cta h2 {
        font-size: 2em;
    }
    #cta h3 {
        font-size: 1.6em;
    }
}
.form-container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }

        .form-header {
            background: var(--gradient-primary);
            color: white;
            padding: 40px 30px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .form-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
            100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
        }

        .form-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .form-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .step.active:has(#successMessage[style="display: flex;"]) .step-subtitle,
        .step.active:has(#successMessage[style="display: flex;"]) .consent-box,
        .step.active:has(#successMessage[style="display: flex;"]) .step-title-main {
          display: none !important;
        }

        .progress-container {
            padding: 20px 30px 0 30px;
            background: white;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .progress-bar-custom {
            height: 6px;
            background: #e5e7eb;
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }

        .progress-fill {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 10px;
            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .step-indicators {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 0 10px;
        }
        
        .step-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
            border: 2px solid #e5e7eb;
            background: white;
            color: #6b7280;
        }

        .step-indicator.active .step-number {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

        .step-indicator.completed .step-number {
            background: var(--success-color);
            color: white;
            border-color: var(--success-color);
        }

        .step-title {
            font-size: 11px;
            text-align: center;
            color: #6b7280;
            font-weight: 500;
            line-height: 1.2;
            max-width: 80px;
        }

        .step-indicator.active .step-title {
            color: var(--primary-color);
            font-weight: 600;
        }

        .form-content {
            padding: 30px;
        }

        .form-container i {
          color: black;
        }

        .step {
            display: none;
            animation: fadeInUp 0.6s ease-out;
        }

        .step.active {
            display: block !important;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-title-main {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .step-title-main i {
          color: black;
        } 

        .step-subtitle {
            color: #6b7280;
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            display: block;
            font-size: 14px;
        }

        .form-control, .form-select {
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 12px 16px !important;
            font-size: 14px;
            transition: all 0.3s ease;
            background: white;
            height: unset !important;
            width: 100%;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
            outline: none;
        }

        .form-control:hover, .form-select:hover {
            border-color: #d1d5db;
        }

        .btn-group-custom {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }

        .btn-option {
            padding: 16px 15px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: #374151;
        }

        .btn-option:hover {
            border-color: var(--primary-color);
            background: rgba(79, 70, 229, 0.05);
            transform: translateY(-2px);
        }

        .btn-option.active {
            border-color: var(--primary-color);
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
        }

        .btn-option i {
            font-size: 1.2rem;
            width: 20px;
            text-align: center;

        }

        .btn-option i:not(:hover) {
          color: black;
        }
        .btn-option small {
            font-size: 80%;;
        }
        @media (max-width: 992px) {
            .btn-option {
                padding: 16px 10px;
            }
        }

        .checkbox-group {
            display: grid;
            color: var(--text-color-dark);
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            padding: 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkbox-item:hover {
            border-color: var(--primary-color);
            background: rgba(79, 70, 229, 0.05);
        }

        .checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            accent-color: var(--primary-color);
        }

        .checkbox-item.checked {
            border-color: var(--primary-color);
            background: rgba(79, 70, 229, 0.1);
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px;
            background: #f9fafb;
            border-top: 1px solid #e5e7eb;
        }

        .btn-nav {
            padding: 12px 30px;
            border-radius: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-prev {
            background: #f3f4f6;
            color: #6b7280;
        }

        .btn-prev:hover {
            background: #e5e7eb;
            color: #374151;
        }

        .btn-next, .btn-submit {
            background: var(--gradient-primary);
            color: white;
        }

        .btn-next:hover, .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
        }

        .btn-submit {
            background: var(--gradient-primary);
            padding: 16px 40px;
            font-size: 16px;
        }

        .btn-submit:hover {
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
        }

        .input-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .input-group-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
        }

        .textarea-custom {
            min-height: 120px;
            resize: vertical;
        }

        .consent-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid #0284c7;
            border-radius: 16px;
            padding: 24px;
            margin: 30px 0;
            text-align: center;
        }

        .consent-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            text-align: left;
            margin-top: 20px;
        }

        .consent-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary-color);
            margin-top: 2px;
        }

        .success-animation {
            text-align: center;
            padding: 60px 30px;
            flex-direction: column;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounceIn 0.8s ease-out;
        }

        @keyframes bounceIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .language-flag {
            width: 24px;
            height: 18px;
            border-radius: 4px;
            margin-right: 8px;
            background-size: cover;
            background-position: center;
            display: inline-block;
        }

        .flag-de { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23000"/><rect width="3" height="1.33" fill="%23dd0000"/><rect width="3" height="0.67" fill="%23ffce00"/></svg>'); }
        .flag-en { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><rect width="60" height="30" fill="%23012169"/><g fill="%23FFF"><path d="M0,0L60,30M60,0L0,30" stroke="%23FFF" stroke-width="6"/><path d="M0,0L60,30M60,0L0,30" stroke="%23C8102E" stroke-width="4"/><path d="M30,0V30M0,15H60" stroke="%23FFF" stroke-width="10"/><path d="M30,0V30M0,15H60" stroke="%23C8102E" stroke-width="6"/></g></svg>'); }
        .flag-fr { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23ed2939"/><rect width="2" height="2" fill="%23fff"/><rect width="1" height="2" fill="%23002395"/></svg>'); }
        .flag-it { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23ce2b37"/><rect width="2" height="2" fill="%23fff"/><rect width="1" height="2" fill="%23009246"/></svg>'); }
        .flag-es { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23aa151b"/><rect width="3" height="1" y="0.5" fill="%23f1bf00"/></svg>'); }
        .flag-pt { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23ff0000"/><rect width="1.2" height="2" fill="%23006600"/></svg>'); }

        @media (max-width: 768px) {
            .form-container {
                margin: 0 10px;
                border-radius: 16px;
            }

            .form-header {
                padding: 30px 20px 20px;
            }

            .form-header h1 {
                font-size: 2rem;
            }

            .form-content {
                padding: 20px;
            }

            .input-group, .input-group-3 {
                grid-template-columns: 1fr;
            }

            .btn-group-custom {
                grid-template-columns: 1fr;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .step-indicators {
                padding: 0 5px;
            }

            .step-number {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }

            .step-title {
                font-size: 10px;
                max-width: 70px;
            }

            .form-navigation {
                padding: 20px;
            }
        }
         @media (max-width: 425px) {
            .step-indicators {
                flex-direction: column;
            }
            .btn-nav {
                padding: 10px 20px;
            }
         }

/* ENTREVISTA */ 

#entrevista {
    padding: 60px 0;
}
#entrevista h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
}
#entrevista h2 {
    color: var(--text-color-dark);
    font-size: 2.3em;
    font-weight: bold;

}
#entrevista .entrevista-area {
    margin-top: 30px;
}
#entrevista .video-entrevista {
  flex: 1 1 65%;    /* ocupa até 65% no desktop */
  min-width: 300px; /* evita ficar minúsculo */
}

#entrevista .text-e-side {
    color: var(--text-color-dark);
    flex: 1 1 35%;    /* ocupa até 40% no desktop */
    min-width: 280px;
}
#entrevista video {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: block;
    height: auto;
}
#entrevista .text-e-side h4{
    font-size: 2em;
    font-weight: bold;
    padding-bottom: 20px;
}
#entrevista .text-e-side p {
    font-size: 1.1em;
    font-weight: 500;
    padding-bottom: 10px;
}
@media (width > 992px) {
    #entrevista .entrevista-area {
        display: flex;
        gap: 20px;
    }
}
@media (width <= 992px) {
    #entrevista .text-e-side {
        margin-top: 30px;
    }
}
@media (width <= 768px) {
    #entrevista h3 {
        font-size: 1.2em;
    }
    #entrevista h2 {
        font-size: 1.9em;
    }
    #entrevista .text-e-side h4 {
        font-size: 1.5em;
    }
    #entrevista .text-e-side p {
        font-size: 1em;
    }
}
@media (width <= 440px) {
    #entrevista {
        text-align: center;
    }
    #entrevista h3 {
        font-size: 1.1em;
    }
    #entrevista h2 {
        font-size: 1.6em;
    }
     #entrevista .text-e-side h4 {
        font-size: 1.3em;
     }
    #entrevista .video-entrevista {
        min-width: 250px;
    }


}


/* PARCEIROS AREA */

#parceiros {
    padding: 50px 0;
}
 #parceiros .parceiros-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap:40px;
 }
@media (width > 768px) {
    #parceiros .parceiros-area {
        flex-direction: row;
        justify-content: space-between;
}
}



/* FOOTER */

footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
}
footer .footer-top {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .contato {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap:5px;
}
footer .contato p {
    margin-bottom: 0;
    font-weight: 500;
}
footer .contato a {
    color: #fff;
    text-decoration: none;
     font-weight: 500;
}
footer .contato a:hover {
    text-decoration: underline !important;
    color: #fff;
}
footer .nav-links nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}
footer h4 {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: bold;
}
footer .nav-links nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1em;
    position: relative;
    font-weight: 500;
}
footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* distancia da linha até o texto */
  width: 0;
  height: 2px; /* espessura da linha */
  background: currentColor; /* usa a mesma cor do texto */
  transition: width 0.3s ease;
}

footer nav a:hover {
    color: #fff;
}
footer nav a:hover::after {
  width: 100%;
}
footer address h4 {
        margin-bottom: 10px;
    }
@media (max-width: 992px) {
    footer .footer-top {
        flex-direction: column;
    }
    footer address {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        padding: 10px 0;
        border-top: 1px solid #fff;
        width: 100%;
    }
    footer address h4 {
        margin-bottom: 10px;
    }
    footer .nav-links {
        margin-top:20px;
        width: 100%;
        border-top: 1px solid #fff;
        text-align: center;
        padding: 10px 0;
    }
}
footer .logo-footer img {
    max-width: 150px;
    height: auto;
}
footer .footer-bottom {
    background-color: #094066;
    text-align: center;
    padding: 15px 0;
}
footer .footer-bottom p {
    margin-bottom: 0;
}
footer .footer-bottom a {
    color: #fff;
    text-decoration: underline;
}
@media (width <= 992px) {
    footer .footer-bottom  {
        font-size: 0.8em;
    }
}
@media (width <= 425px) {
    footer h4 {
        font-size: 1.2em;
    }
    footer nav a {
        font-size: 0.9em;
    }
    footer .logo-footer img {
        max-width: 100px !important;
        height: auto;
    }

}