/* -----------------------------------------------
            Barra Flutuante Premium
--------------------------------------------------*/

.floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Gradiente escuro igual ao fundo do login */
    background: linear-gradient(135deg, #001a3d 0%, #002b5c 100%);
    backdrop-filter: blur(10px); /* Efeito de vidro */
    border-top: 2px solid #f07d00; /* Linha laranja do topo (logo) */
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    padding: 15px 0;
    overflow: hidden; /* Garante que os círculos não saiam da barra */
    
    transform: translateY(100%); 
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.floating-bar.visivel {
    transform: translateY(0);
}

/* Círculos de fundo (Estilo Login Restrito) */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.4;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: #f07d00; /* Laranja da logo */
    top: -50px;
    left: -30px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #0050a1; /* Azul claro da logo */
    bottom: -80px;
    right: 5%;
}

.floating-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Limita a largura em telas grandes */
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.floating-info {
    color: white;
}

.floating-info p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    color: #f07d00; /* Destaque laranja */
    font-weight: 700;
}

.floating-info h3 {
    font-size: 1.2rem;
    margin: 3px 0 0 0;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.floating-info h3 span {
    color: #ffffff;
    font-weight: 800;
}

/* Estilo do Botão Modernizado */
.btn-azul-floating {
    background: #f07d00; /* Laranja chamativo */
    color: white;
    padding: 12px 35px;
    border-radius: 50px; /* Botão arredondado moderno */
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 125, 0, 0.3);
}

.btn-azul-floating:hover {
    background: #ff8c0a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(240, 125, 0, 0.5);
}

/* 📱 RESPONSIVIDADE ADAPTADA */

@media (max-width: 768px) {
    .floating-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .floating-info p { display: block; font-size: 0.65rem; }
    
    .floating-info h3 {
        font-size: 1rem;
    }

    .btn-azul-floating {
        width: 100%;
        padding: 10px;
    }
}

/* -----------------------------------------------
                Configurações Gerais
--------------------------------------------------*/

* {
    font-family: Source Sans Pro,Arial,sans-serif;
}

main {
    background-color: #fff;
}

.container {
    margin: 50px 15%;
    max-width: 2000px;
}

@media (max-width: 1250px) {
    .container { 
        margin: 50px 5%;
    }   
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 1.75rem;
}

h4 {
    margin: 0;
    font-size: 1.25rem;
    text-align: left;
}

p, a, h5 {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
    margin: 0;
}

h6 {
    font-size: 0.87rem;
    color: #666;
    text-align: left;
    margin: 5px 0 0 0;
    margin: 0;
    font-weight: inherit;
}

button {
    font-size: 1rem;
}

/* -----------------------------------------------
                Configurações Banner
--------------------------------------------------*/

.banner {
    display: flex;
    position: relative;
    background-color: #F2F6FD;
    padding: 50px 15%;
    margin: 0;
}

.banner div:nth-child(2) {
  background-image: url('/Imagens/Fotos/bg-banner.png');
  width: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
}


.banner-texto {
    position: relative;
    width: 45%;
    z-index: 2;
}

.banner-texto button {
    background-color: #0056d2;
    color: white;
    padding: 15px 25px;
    margin-bottom: 50px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #0056d2;
    transition: all 0.3s ease;
}

.banner-texto button:hover {
    background-color: #fff;
    color: #0056d2;
}

.banner-texto button span {
    font-weight: normal;
    font-size: 0.85rem;
    margin: 0 50px;
}

@media (max-width: 1250px) {
    .banner-texto {
        width: auto;
    }   
}

@media (max-width: 1250px) {
    .img-banner {
        display: none;
    }
    
    .banner {
        padding: 50px 5%;
    }
}

/* -----------------------------------------------
            Configurações CardsDados
--------------------------------------------------*/

.descCards {
    display: flex;
    position: relative;
    background: white;
    width: 70%;
    height: 125px;
    margin: -50px auto 0 auto;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10;
}

@media (max-width: 1250px) {
    .descCards {
        width: 90%;
    }
}

.card {
    flex: 1;
    padding: 20px 2%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient( to bottom, transparent 25%, #eee 25%, #eee 75%, transparent 75% );
}

@media (max-width: 940px) {
    .descCards {
        width: auto;
        display: flex;
        flex-direction: column;
        height: auto;
        border-radius: 0;
        padding: 0 5%;
    }
}

/* -----------------------------------------------
            Configurações Seletor
--------------------------------------------------*/

.seletor {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0;
}

.opcao {
    padding: 15px 25px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.opcao-ativa {
    color: blue;
    border-bottom: 3px solid blue;
}

/* -----------------------------------------------
            Configurações Aprender
--------------------------------------------------*/

.aprender {
    width: 50%;
}

@media (max-width: 1500px) {
    .aprender {
        width: auto;
    }   
}

.aprender-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    align-items: stretch;
    
}

.aprender-item {
    display: flex;
    align-items: center;
}

.aprender-item img {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .aprender-box {
        display: flex;
        flex-wrap: wrap;
    }   
}

/* -----------------------------------------------
            Configurações Habilidades
--------------------------------------------------*/

.habilidades {
    width: 50%;
}

@media (max-width: 1500px) {
    .habilidades {
        width: auto;
    }   
}

.habilidade-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.habilidade-cards p {
    margin: 0;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #f0f0ff;
    font-weight: 600;
    color: #0056d2;
}

/* -----------------------------------------------
            Configurações Informações
--------------------------------------------------*/

.informacoes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 75px;
}

.informacoes-card img {
    width: 30px;
    height: 30px;
}

.informacoes-card h6 {
    color: gray;
    font-weight: inherit;
}

@media (max-width: 558px) {
    .informacoes-container {
        flex-direction: column;
    }
}


/* -----------------------------------------------
            Configurações Resultados
--------------------------------------------------*/

.resultados {
    display: flex;
}

.resultados-box {
    flex-direction: row;
    margin-right: 15px;
}

.resultados-box ul li {
    margin: 5px 0;
}

.resultados-img {
    width: 50%;
    margin: 0 auto;
    background-image: url('/../Imagens/Fotos/conhecimento.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .resultados-img {
        display: none;
    }   
}

/* -----------------------------------------------
        Configurações Especialização
--------------------------------------------------*/

.secao-cursos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 50px 15%;
}   

@media (max-width: 1250px) {
    .secao-cursos { 
        padding: 50px 5%;
        margin: 0;
    }   
}

.secao-cursos h1 {
    font-size: 1.75rem;
    width: 100%;
}

.secao-cursos p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.container-cursos {
    width: 100%;
    border: 2px solid #dfdff5;
    border-radius: 30px;
    
}

.card-curso {
    padding: 25px 0;
    margin: 0 50px;
}

.card-curso:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.card-curso-cab {
    display: flex;
    cursor: pointer;
}

.img-cursos {
    max-width: 100px;
    aspect-ratio: 10/6;
    width: 20%;
    border-radius: 10px;
}

@media (max-width: 500px) {
    .img-cursos {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }   
}



.card-curso-cab div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 20px;
}

.card-curso-cab div h1 {
    text-align: left;
    margin: 0;
    font-size: 1.25rem;
}

.card-curso-cab div p {
    color: #777;
    text-align: left;
    margin: 0;
    font-size: 0.875rem;
}

.card-curso-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.card-curso.ativo .card-curso-desc {
    max-height: 1000px; /* Um valor alto o suficiente para o seu texto */
    opacity: 1;
    margin-bottom: 20px;
}

.card-curso.ativo .seta-v {
    transform: rotate(-135deg); /* Gira para cima */
    margin-bottom: -2px;
}

.card-curso-desc h1 {
    margin: 20px 20px 0 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

.card-curso-desc p {
    margin: 5px 20px 0 20px;
    font-size: 0.875rem;
}

.button-curso {
    margin-left: auto;
    background: none; /* Remove fundos estranhos */
    border: none;
    color: white;   /* Cor visível para o texto */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;  /* Muda o mouse para a "mãozinha" */
    display: flex;    /* Alinha o texto e a seta internamente */
    align-items: center;
    padding: 10px;    /* Aumenta a área de clique */
    transition: all 0.3s ease;
    z-index: 10;      /* Garante que fique por cima de tudo */
}

.button-curso:hover {
    color: #007bff;
}

.button-curso2{
    display: none;
    margin-left: auto;
    background: none; /* Remove fundos estranhos */
    border: none;
    cursor: pointer;  /* Muda o mouse para a "mãozinha" */
    padding: 10px;    /* Aumenta a área de clique */
    transition: all 0.3s ease;
    z-index: 10;      /* Garante que fique por cima de tudo */
}

.seta-v {
    display: inline-block;
    width: 7px;      
    height: 7px;       
    border-right: 3px solid #007bff; 
    border-bottom: 3px solid #007bff;
    transform: rotate(45deg);
    margin-left: 5px;
    margin-bottom: 3px;
    cursor: pointer;
    pointer-events: none;
    transition: all 0.3s ease-in-out 0.1s;
}

@media (max-width: 1150px) {
    .container-cursos {
        width: auto;
    }   
}

@media (max-width: 850px) {
    .secao-cursos {
        padding: 0 15px 60px 15px;
        width: auto;
    }
}

@media (max-width: 670px) {
    .card-curso-cab div h1 {
        font-size: 1rem;
    }   
    
    .card-curso {
        margin: 0 20px;
    }
    
    .button-curso2 {
        display: flex;
    }
    
    .button-curso {
        display: none;
    }
}


@media (max-width: 1250px) {
    .secao-cursos {
        margin: 0;
        padding: 50px 5%;
    }
}







