@import url('https://fonts.googleapis.com/css?family=Montserrat'); /* Carregar fonte dos titulos */
@import url('https://fonts.googleapis.com/css?family=Quicksand'); /* Carregar fonte dos textos */

body {
    font-family: 'Quicksand', sans-serif; /* Setar fonte dos textos */
    color: #3e3f3a; /* Setar cores dos textos */
    background-color: #fff; /* Setar cor 5 */
}
h1, h2, h3, h4, h5, h6, .navbar .nav>li>a, .dropdown-menu>li>a, #admin #toolbar .btn {
    font-family: 'Montserrat', sans-serif; /* Setar fonte dos titulos */
}
h1, h2, h3, h4, h5, h6 {
    color: #3e3f3a; /* Setar cores dos titulos */
}
a, .btn-link {
    color: #f36a0d; /* Setar cores dos links */

}
a:hover, a:focus {
    color: #c9302c; /* Setar cores dos links com foco*/
}
#top-menu, footer, #course-banner {
    background-color: #444444; /* Setar cor 1 */
}
#menu-main.navbar {
    background-color: #f36a0d; /* Setar cor 2 */
}
#footer-top, #top-internal, #menu-main .nav>li.active>a, #landing-page #instructor-course {
    background-color: #f8f5f0; /* Setar cor 3 */
}
.nav>li>a:hover, .nav>li>a:focus, .panel-default .panel-heading, .panel-default .panel-title, .panel-default .panel-footer, #list-courses .course-unit .course-text, .borda-instrutor, #cart ul li, .nav-tabs>li>a, .pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    background-color: #FCFBF8; /* Setar cor 4 */
}
#landing-page .lessons-course {
    border-color: #FCFBF8; /* Setar cor 4 */
}
.nav-pills li.active>a, .nav-pills li>a:hover, .nav-tabs.nav-justified>li>a, .panel-default>.panel-heading+.panel-collapse>.panel-body, .profile-usermenu .nav>li>a, .profile-usermenu, .information-post, .pagination>li>a, .pagination>li>span, .blog-post, .panel-default>.panel-heading, hr, #landing-page #grid-course, .panel-default, .nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus, #landing-page #description-course #informations h5, .form-control, .pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus, .pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
    border-color: #dfd7ca; /* Setar cor das Bordas */
}
.btn-default, .btn-default:hover {
    background-color: #f36a0d; /* Setar cor do botão Padrão */
}
.btn-info, .btn-info:hover {
    background-color: #666666; /* Setar cor do botão de informação */
}
.btn-success, .btn-success:hover, #landing-page #registration-course  {
    background-color: #f36a0d; /* Setar cor do botão de sucesso */
}
.btn-danger, .btn-danger:hover, #list-courses .course-unit .language-course-title {
    background-color: #f36a0d; /* Setar cor do botão de atenção */
}

/* aqui entra o css especifico no cliente */
/*IMG LOGO THP */

img {
  max-width: 100%;
  height: auto;
}

/*METODOLOGIAS MACETE */

/* Container geral do card */
.metodologia-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
    max-width: 1100px;
    margin: 40px auto;
    border-left: 10px solid #ff751f;

}

.metodologia-card .icon-box {
    background: linear-gradient(135deg, #ff751f, #ff9a3c);
    width: 500px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.metodologia-card .icon-box img {
    width: 35px;
    height: 35px;
}




/* Container dos pilares */

.pilares-fundamentais {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff8f0;
  padding: 10px 15px;  
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: fit-content;
  margin: 0 auto;       
  transform: scale(0.9);  
}

.pilares-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    flex-wrap: wrap;
    max-width: 1200px;
}

.pilar-card {
    background: #fff;
    width: 350px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.pilar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
}

.card-1::before { background: #1e5bff; }
.card-2::before { background: #ff6b00; }
.card-3::before { background: #a93cff; }


.pilar-numero {
    font-size: 48px;
    font-weight: 700;
    color: #e5e8eb;
    margin: 10px 0;
}


.pilar-icone {
    width: 55px;
    height: 55px;
    background: #1e5bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}
 .pilar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}


.card-2 .pilar-icone { background: #ff6b00; }
.card-3 .pilar-icone { background: #a93cff; }

.pilar-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.pilar-card p {
    text-align: justify;
    line-height: 1.5;
}







/* Estrutura principal */
.container-desafios  {
    width: 980px;
    margin: 0 auto;
    font-family: "Segoe UI", sans-serif;
    position: relative;
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    background: #ff6f00;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
}

.header h2 {
    margin-top: 20px;
    font-size: 26px;
}

.header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.linha {
    position: absolute;
    left: 50%;
    top: 180px;
    width: 4px;
    height: calc(100% - 200px);
    background: #dcdcdc;
    transform: translateX(-50%);
    z-index: 0;
}


.fase {
    display: flex;
    justify-content: space-between;
    margin: 70px 0;
    position: relative;
}


.col {
    width: 45%;
    position: relative;
    z-index: 2;
}

.icone {
    position: absolute;
    left: -11%;
    transform: translateX(-50%);
    top: -10px;
}

.icone img {
    width: 30px;
    height: 30px;
    padding: 10px;
    background: white;
    border-radius: 50%;
    border: 3px solid #e3e3e3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.icone2 {
    position: absolute;
    left: 111%;
    transform: translateX(-50%);
    top: -10px;
}

.icone2 img {
    width: 30px;
    height: 30px;
    padding: 10px;
    background: white;
    border-radius: 50%;
    border: 3px solid #e3e3e3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.fase h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 10px;
}


.descricao {
    margin-bottom: 15px;
    color: #444;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 4px;
}

.azul {
    background: #e0e9ff;
    color: #3f51ed;
}

.roxa {
    background: #f3e5ff;
    color: #b234ff;
}

.verde {
    background: #dbffe7;
    color: #15a159;
}


.card {
    background: #f4f6ff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.card p {
    margin: 8px 0;
}

.card.verde {
    background: #e8fff1;
}

.card.roxa {
    background: #f8eaff;
}




/* eixos-evolutivos */
.eixos {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    font-family: "Inter", sans-serif;
}


.eixos-header h2 {
    color: #e65100;
    font-size: 20px;
    margin-bottom: 10px;
}

.eixos-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
}


.eixos-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.eixo-card {
    width: 330px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    margin-top: 70px;
    transition: .2s ease;
}

.eixo-card:hover {
    transform: translateY(-6px);
}

.eixo-icone {
    width: 150px;
    height: 150px;
    background: linear-gradient(180deg, #ffb56b, #ff6f00);
    border-radius: 50%;
    margin: -110px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(255, 115, 0, 0.4);
}

.eixo-icone img {
    width: 50%;
    height: auto;
}


.eixo-titulo h1 {
    font-size: 26px;
    color: #ff6f00;
    margin-bottom: 5px;
}

.eixo-titulo h3 {
    font-size: 17px;
    color: #333;
    margin-bottom: 17px;
}

.eixo-texto p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.eixo-tags {
    margin-top: 10px;
}

.eixo-tags span {
    display: inline-block;
    background: #ffe1c4;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 4px;
    font-size: 13px;
    color: #d45a00;
    font-weight: 500;
}



/* Ajuste geral: encolher tudo proporcionalmente */
@media (max-width: 768px) {

    .container-desafios {
        transform: scale(.85);
        transform-origin: top center;
        width: 100%;
    }

    .header h2 {
        font-size: 22px;
    }

    .badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .fase h3 {
        font-size: 18px;
    }

    .card {
        padding: 18px;
    }

    .icone img,
    .icone2 img {
        width: 26px;
        height: 26px;
        padding: 8px;
    }
}

.menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #e65400;
  background-color: #fff8f0;
  border: 2px solid #ffd7b3;
  padding: 15px 40px;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.menu a:hover {
  background-color: #ffe6cc;
  transform: scale(1.08);
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}


.macete {
    max-width: 2200px;   
   padding: 20px 100px;
}

.macete strong span {
    display: inline-block;
    margin-bottom: 15px;
    color: #f36a0d;
    padding-bottom: 5px;
}


.macete p span {
    font-weight: bold;
    color: #f36a0d;
}

.macete p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05em;
}

.macete ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.macete ul li {
    background: #ffe6d1;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #f36a0d;
    border-radius: 8px;
    font-size: 1em;
}

.macete div[style*="page-break-after"] {
    margin: 50px 0;
}









/*MACETE*/
.sec-macete {
    width: 100%;
    padding: 50px 5%;
    box-sizing: border-box;
}

.macete-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.macete-card {
    background: #fdecd2;
    padding: 40px;
    border-radius: 14px;
    width: 52%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.macete-card-icone {
    font-size: 20px;
    color: #f26b1d;
}

.macete-card-titulo {
    margin-top: 15px;
    font-size: 22px;
    color: #c64509;
}

.macete-card-texto {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.macete-imagem-area {
    position: relative;
    width: 45%;
}

.macete-imagem {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.macete-etapa-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ff7a00;
    color: white;
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
}

.etapa-numero {
    font-size: 28px;
}

.etapa-texto {
    font-size: 14px;
    margin-top: 3px;
}
.menu .icon {
  width: 28px;   
  height: 28px;
}

/*como funciona*/
.thp-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px auto;
    max-width: 1100px;
    flex-wrap: wrap;
}

.thp-card {
    background: #fff;
    width: 300px;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.thp-icone {
    width: 45px;
    height: 45px;
    padding: 10px;
    background: #1e5bff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    margin-bottom: 15px;
}

.thp-card:nth-child(2) .thp-icone {
    background: #158a21;
}

.thp-card:nth-child(3) .thp-icone {
    background: #a93cff;
}

.thp-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.thp-card p {
    font-size: 15px;
    line-height: 1.5;
}
/*linha do tempo*/
.menu-THP2 {
    position: relative;
    max-width: 700px;
    margin: 40px auto;
    padding-left: 40px;
}

.menu-THP2::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(rgba(255,154,60,0.4), rgba(255,107,0,0.4));
    border-radius: 2px;
}

.menu-THP2 p:nth-of-type(odd) {
    display: inline-block;
    width: 40px;
    height: 40px;
    left: -60px;

    background: #ff6b00;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0 10px -20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.menu-THP2 h3 {
    margin: 5px 0 10px 0;
    font-size: 22px;
    font-weight: 700;
    color: #ff6b00;
}

.menu-THP2 p:nth-of-type(even) {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
    line-height: 1.55;
}




/* Conheça o MACETE */
.novo-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .novo-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 10px;
        }

        .novo-card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .novo-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .novo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .novo-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .novo-card-metodologia .novo-card-icon {
            background: #9b59b6;
        }

        .novo-card-sobre .novo-card-icon {
            background: #e67e22;
        }

        .novo-card-human-project .novo-card-icon {
            background: #3498db;
        }

        .novo-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .novo-card-metodologia h3 {
            color: #9b59b6;
        }

        .novo-card-sobre h3 {
            color: #e67e22;
        }

        .novo-card-human-project h3 {
            color: #3498db;
        }

        .novo-card p {
            font-size: 1rem;
            color: #666666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .novo-card-btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .novo-card-metodologia .novo-card-btn {
            background: #9b59b6;
            color: #ffffff;
        }

        .novo-card-metodologia .novo-card-btn:hover {
            background: #8e44ad;
        }

        .novo-card-sobre .novo-card-btn {
            background: #e67e22;
            color: #ffffff;
        }

        .novo-card-sobre .novo-card-btn:hover {
            background: #d35400;
        }

        .novo-card-human-project .novo-card-btn {
            background: #3498db;
            color: #ffffff;
        }

        .novo-card-human-project .novo-card-btn:hover {
            background: #2980b9;
        }

        @media (max-width: 768px) {
            .novo-container {
                padding: 20px;
            }

            .novo-header h1 {
                font-size: 2rem;
            }

            .novo-header h2 {
                font-size: 1.2rem;
            }

            .novo-card-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .novo-card {
                padding: 20px;
            }






















 /* beneficios  */


/*GALERIA*/
:root{
    --gap: 12px;
    --cols: 4; 
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:system-ui,Segoe UI,Roboto,Helvetica,Arial}

.lb-wrap{max-width:1100px;margin:28px auto;padding:0 16px}
h1{font-size:20px;margin:0 0 14px}

.lb-grid{
    display:grid;
    gap:var(--gap);
    grid-template-columns:repeat(var(--cols),1fr);
}

@media (max-width:900px){
    .lb-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:640px){
    .lb-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:420px){
    .lb-grid{grid-template-columns:repeat(1,1fr)}
}

.lb-item{display:block;position:relative;overflow:hidden;border-radius:10px;text-decoration:none}
.lb-photo{
    width:100%;
    padding-top:66.66%; 
    background-size:cover;
    background-position:center;
    transition:transform .45s ease,filter .35s ease;
    will-change:transform;
}
.lb-item:hover .lb-photo{transform:scale(1.06);filter:brightness(.95)}

.lb-caption{
    position:absolute;left:8px;bottom:8px;padding:6px 10px;background:rgba(0,0,0,.45);color:#fff;border-radius:8px;font-size:13px}

.lb-lightbox{
    position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.85);z-index:60;padding:24px
}
.lb-lightbox:target{display:flex}

.lb-lightbox .lb-inner{max-width:1100px;width:100%;max-height:90vh;overflow:auto}
.lb-lb-photo{
    width:100%;height:0;padding-top:56.25%; /* 16:9 dentro da lightbox */
    background-size:contain;background-repeat:no-repeat;background-position:center center;box-shadow:0 10px 40px rgba(0,0,0,.6);border-radius:8px
}

