html{
    /*overflow-x: hidden !important;*/
}

body{
    background-image: url(../imgs/background-4.jpg);
    background-size: cover;
    background-repeat: no-repeat;    
    font-family: "Roboto";    
    background-attachment: fixed;
    font-size: 14px;
    background-color: #FFF;    
    color: #FFF;    
    /*overflow-x: hidden !important;*/


    --neon-1:#FFB84D;
    --neon-2:#ECA307;
    --neon-3:#FF8C00;


}




.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
}






.modal-content{
    background-color: #000;
    color: #FFF;
    border-radius: 20px;

    box-shadow: 0 0 5px var(--neon-1), 0 0 10px var(--neon-2), inset 0 0 8px rgba(255, 255, 255, 0.1);    

}


.modal .close span{
    color: #FFF;

}


.modal-header{
    border-bottom: 1px solid rgba(255,255,255,0.3);
}


.modal-comprar .box-preco{
    text-align: center;
    background-color: #222 !important;    
    padding: 20px;    
    border-radius: 15px;
}

.modal-comprar .box-preco.destaque{
    background-color: #333 !important;    
}

.modal-comprar .box-preco.destaque h3{
    color: var(--neon-1);

}

.modal-comprar .box-preco h4{
    font-size: 1.2rem;
    color: #FF0000;
    margin-bottom: 20px;
}


.modal-comprar .box-preco h5{
    font-size: 2rem;
}

.modal-comprar .box-preco .btn{
    width: 100%;
    margin-top: 40px;

}














.home .scrollTop{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 999;
    font-size: 1.4rem !important;
    text-transform: uppercase;
}


.home .scrollTop strong{
    color: var(--neon-3);
}

.home .btn-matricula-topo{
    background-color: var(--neon-3);
    color: #FFF;
    font-weight: 500;
    padding-left: 20px;
    padding-right:  20px;
    border: none ;
    box-shadow: none;

}





.home .base_timer{
    position: relative;
    width: 100%;
    background-color: #000000CC;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 9999;    
    animation: glowing 2000ms infinite;
}



@keyframes glowing {
    0% {
        background-color: #002247;
        box-shadow: 0 0 5px #002247;
    }
    50% {
        background-color: #672626;
        box-shadow: 0 0 20px #672626;
      
    }
    100% {
        background-color: #002247;
        box-shadow: 0 0 5px #002247;
    }
  }



.base_timer .logo{
    height: 2rem;
    margin-right: 10px;
    display: none;
}

.base_timer .clock{
    display: flex;
    justify-content: end;
}

.base_timer .box{
    width: 60px;
    margin-left: 20px;
    background-color: #FFF;
    color: #DD1F26 !important;    
    padding: 5px;
    border-radius: 10px;    
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-width: 50px !important;
}


.base_timer h2{
    color: #FFF !important;    
    font-size: 1.1rem !important;
    text-transform: uppercase;    
    margin: 0 !important;
}

.base_timer  h3{    
    color: #DD1F26 !important;    
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    font-size: 1.1rem !important;    
}

.base_timer small{  
    display: block;
    transform: translateY(-3px);    
    font-size: 10px;
    text-transform: uppercase;
}



.base_timer .btn-matricula{
    background-color: #DD1F26 !important;
    color:  #FFF !important;
    max-width: 370px !important;
    box-shadow: none;
    padding: 5px 20px !important;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 20px;
    height: 30px;
}


.base_timer.fixo{    
    position: fixed !important;
    padding: 5px 0 !important;
}

.base_timer.fixo .logo{
    height: 20px;
    display: inline-block   ;
}

.base_timer.fixo .box{
    padding: 0 !important;
    min-height: 30px !important;
    border: none;
    flex-direction: row;
    margin-left: 20px;
    width: auto !important;
    
}











.btn-matricula{    
    display: inline-block;
    padding: 15px;
    border-radius: 10px;    
    font-size: 1.4rem;
    text-transform: uppercase;
    height: auto !important;
    font-weight: normal;
    text-align: center;
    
    
}


.btn-matricula{
    position:relative;        
    border:2px solid var(--neon-1);    
    color:var(--neon-1);
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(2px);
    cursor:pointer;
    text-shadow:0 0 8px var(--neon-1);
    overflow:hidden;
    transition:all 0.3s ease;
    box-shadow:
      0 0 6px var(--neon-1),
      0 0 12px var(--neon-2),
      inset 0 0 6px rgba(255,255,255,0.2);
  }

  /* o gradiente que se move */
  
  .btn-matricula::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:linear-gradient(90deg,
      transparent 0%,
      var(--neon-1) 40%,
      var(--neon-2) 60%,
      transparent 100%);
    background-size:200% 100%;
    animation:shine 3s linear infinite;
    opacity:0.4;
  }

  /* brilho no hover */  
  .btn-matricula:hover{
    color:#000;
    background:linear-gradient(90deg,var(--neon-1),var(--neon-2));
    text-shadow:none;
    box-shadow:
      0 0 12px var(--neon-1),
      0 0 20px var(--neon-2),
      0 0 40px var(--neon-3);
    transform:translateY(-2px);
  }

  /* animação do gradiente passando */
  @keyframes shine{
        0%{ background-position:200% 0; }
        100%{ background-position:-200% 0; }
  }

  /* botão acima do pseudo-elemento */
  .btn-matricula span{
        position:relative;
        z-index:2;
  }











.atendimento{
	position: fixed;
	bottom: -300px;
	right: 100px;
	z-index: 99999;
}


.atendimento .icone::before{
	background-color: #26CC64;
	border: 4.5px #00800066 solid;		
	border-radius: 50%;		
	width: 65px !important;
	height: 65px !important;			
	content: "";
	display: flex;
	z-index: -1;
	position: absolute;
}


.atendimento .icone{		
	position: absolute;
	border-radius: 50%;		
	width: 60px;
	height: 60px;			
	color: #FFF;
	font-size: 36px;
	display: flex;
	justify-content: center;
	align-items: center;

}


.atendimento .icone::before{
	animation: girar 16s infinite linear;
	transform: rotate(30deg);
}		



.home > .blocos > .row{
    padding-top: 8vh;
    padding-bottom: 8vh;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px var(--neon-1), 0 0 10px var(--neon-2), inset 0 0 8px rgba(255,255,255,0.1);
}







/*
.home > .blocos > .row:nth-child(odd){
    
}
    */





.home > .blocos > .row h2{
    font-size: 2rem;
    margin-bottom: 8vh;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFF;
}


.home > .blocos > .row h2 strong{      
    color: var(--neon-1);
    
    display: inline-block;
    border-radius: 5px;
    font-weight: 900;
    
}

@keyframes MoveBackgroundPosition { 
    0% {
        background-position: 0% 50%
    }
    
    50% {
      background-position: 100% 50%
    }
    
    100% {
      background-position: 0% 50%
    }
}



.home .apresentacao{                
    background-color: rgba(0, 0, 0, 0.4) !important;
    background-position: bottom center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background-size: cover;
    height: 100vh !important;
        
}



.home .apresentacao .simonelli-destaque{
    display: none;
}

.home .apresentacao .simonelli{
    background-image: url(../imgs/simonelli.webp);    
    background-repeat: no-repeat;
    background-position: top right;
    min-height: 65vh;    
}   

.home .apresentacao .logo{
    max-height: 80px;
    margin-bottom: 40px;    
}

.home .apresentacao .texto h1{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.home .apresentacao .texto h1 strong{
    background-color: #DD1F26;
    color: #FFF;
    padding: 2px 6px;
    display: inline-block;
    border-radius: 5px;
    font-weight: 500;
}


.home .apresentacao .texto h2{            
    font-size: 0.9rem;
    
    margin-bottom: 20px;
    color: #FFF;
    
}






.home .apresentacao .scrollCursos{
    margin-top: auto;
    display: flex;
    flex-wrap: nowrap;
    padding-left: 50px;    
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 1rem;
    padding-bottom: 1rem;


    overflow: hidden;
}

.home .apresentacao .scrollCursos img{
    height: 120px;
    border-radius: 10px ;
    margin-right: 50px;
    box-shadow: 0 0 3px var(--neon-1), 0 0 6px var(--neon-2), inset 0 0 2px rgba(255,255,255,0.1);
    
}



.carrossel-wrapper {    
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;    
    height: 140px;
}

.carrossel {    
    display: flex;
    white-space: nowrap;
    position: absolute;
    left: 0;
    height: 40vh;    
    align-items: center;
    
}












.row.vantagens{
    background-color: #d3b15f;
    background-image: linear-gradient(to bottom, #EEEEEE, #C3C3C3);
    color: #FFF;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    
    position: relative;

}


.row.vantagens i{
    color: var(--neon-1);
    font-size: 2em;
    margin-right: 20px;
}

.row.vantagens h3{
    display: flex;
    font-size: 1.3em;
    font-weight: 400;
    justify-content: center;
    align-items: center;
}


.row.vantagens::before{
	width: 100%;
	height: 50px;
	background-image: url(../imgs/destaque1_top.svg);
	background-position: left top;
	background-repeat: no-repeat;
	content: "";
	margin-bottom: 3vh;		
    margin-top: -50px;		
    z-index: 999;
}


.row.vantagens::after{
	width: 100%;
	height: 50px;
	background-image: url(../imgs/destaque1_bottom.svg);
	background-position: left top;
	background-repeat: no-repeat;
	content: "";		
    margin-top: 3vh;		
}




.home .row.descritivo{
    
    font-size: 1.2rem;

    
}




.home .row.descritivo .balao{
    box-shadow: 5px 5px 15px 0 #999;
    width: 210px;
    background-color: #DD1F26;
    position: absolute;
    border-radius: 15px;
    z-index: 999;
    top: 140px;
    right: -170px;
    color: #FFF;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    
}





.home .row.descritivo .balao::before {
    content: "";
    position: absolute;
    top: 90px;
    left: -60px;
    width: 120px;
    height: 60px;
    background-image: url(../imgs/seta.svg);
    background-size: contain ;    
}
  
  

.home .row.descritivo .quote{
    font-size: 1.4rem;
    text-align: justify;
}

.home .row.descritivo .quote i{
    color: var(--neon-1);
}




.home .row.descritivo .imagens img{
    border-radius: 15px;
    box-shadow: 5px 5px 10px 0 #999;
}


.home .row.descritivo strong{
    color: var(--neon-1);
    
}


.home .row.descritivo h2{
    margin-bottom: 2vh;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.6rem;
    line-height: 2.2rem;
    color: var(--neon-1);
    
}

.home .row.descritivo h2 span{
    color: #d3b15f;
}

.home .row.descritivo h3{
    text-transform: uppercase;
    margin-bottom: 4vh;
    font-weight: 500;
    font-size: 1.4rem;
}

.home .row.descritivo h3 span{
    color: #d3b15f;
}


.home .row.descritivo ul{
    padding: 0;
    margin: 0;
}

.home .row.descritivo ul li{
    
    list-style: none;
    padding: 5px 0 5px 40px;
    position: relative;
    font-size: 1.2rem;

    margin-bottom: 1vh;
}


.home .row.descritivo ul li:before {
    font-family: "Font Awesome 5 Free";
    content: '\f4fc';
    font-weight: 900;
    color: var(--neon-1);
    font-size: 22px;
    display: block;
    width: 33px;
    height: 16px;
    position: absolute;
    left: 0;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}




 
.home .row.depoimentos{
    
    padding-top: 8vh !important;
    padding-bottom: 8vh !important;
}



.home .row.depoimentos .swiper {
    width: 100%;
    height: 500px; /* altura fixa */
    padding: 20px;
}

.home .row.depoimentos .swiper-slide {
    width: auto; /* <-- ESSENCIAL: largura automática */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;

    box-shadow: 0 0 10px var(--neon-1), 0 0 20px var(--neon-2), inset 0 0 8px rgba(255, 255, 255, 0.1) !important;

        
}

.home .row.depoimentos .swiper-slide img {
    height: 100%;
    width: auto; /* mantém proporção natural */
    object-fit: contain; /* imagem sempre inteira */

}



.home .row.presentes{
    padding-bottom: 8vh;    
}


.home .row.presentes h2{
    padding-top: 6vh !important;
}


.home .row.presentes h2 span{
    color: #d3b15f;
}


.home .row.presentes .itens .item{
    background-color: rgba(0,0,0,0.3);
    box-shadow: 0 0 2px var(--neon-1), 0 0 5px var(--neon-2), inset 0 0 4px rgba(255, 255, 255, 0.1);    
    border-radius: 12px;
    height: 100%;
    font-size: 1.1rem;    
    padding: 20px;            
    color: #FFF;

}


.home .row.presentes .itens .item .icone {    
    background-image: linear-gradient(135deg, var(--neon-1), var(--neon-2) 50%, var(--neon-1));
    width: 50px;
    height: 50px;    
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 25px;        
}



.home .row.presentes .itens .item h3{    
    padding: 0;        
    margin-top: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;    
    margin-bottom: 20px !important;
        
}












.home .presentes .card{
	margin-bottom: 20px;
    border-radius: 15px;
	/*box-shadow: 2px 2px 10px 0px  #ddd;*/
	border: none !important;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 5px var(--neon-1), 0 0 10px var(--neon-2), inset 0 0 8px rgba(255, 255, 255, 0.1);	
    margin-bottom: 4vh !important;
}







.home .presentes .card:last-child{
	margin-bottom: 0;
}

.home .presentes .card-header {
	
	border-bottom: 0;
}

.home .presentes .card-body{
	margin-left: 30px;
	margin-right: 30px;
	border-top: 1px solid #e6e6e6;
	padding-left: 10px;
	padding-right: 0;
}

.home .presentes .card h2{
	font-size: 1em;
}

.home .presentes button{
	outline: none !important;
	border: none;
	box-shadow: none !important;
    background-color: transparent !important;
	color: #FFF;		
	font-size: 1em;
	text-decoration: none !important;
	background-image: url(../imgs/cseta_faq.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	padding-right: 100px;
	padding-left: 20px;
}


.home .presentes button span{    
    background-image: linear-gradient(135deg, var(--neon-1), var(--neon-2) 50%, var(--neon-1));
    width: 50px !important;
    height: 50px;    
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 25px;        
}



.home .presentes button.collapsed{
    color: #FFF;
	background-image: url(../imgs/cseta_faq_f.png);
}


.home .presentes .card-header{
	background-color: transparent;        
}












.home .row.crescimento .rotulo{
    position: absolute;
    left: 40px;
    top: -30px;
    height: 30px;
    padding-top: 2px;
    background-color: var(--neon-2);    
    
    width: 500px !important;    
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-top: 1px solid #333;
}

.home .row.row.crescimento .texto2{
    padding: 20px !important;
}


.home .row.crescimento .item-card{    
    
    background-color: #000;
    box-shadow: 0 0 5px var(--neon-1), 0 0 10px var(--neon-2), inset 0 0 8px rgb(255, 255, 255, .1);
    padding: 0;
    border-radius: 15px;
    margin-top: 20px;    
}


.home .row.crescimento .item-card img{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    
}

.home .row.crescimento .item-card h4{
    margin-bottom: 20px;
    display: flex;    
}

.home .row.crescimento .item-card h4 strong{
    background-color: var(--neon-3);
    font-size: 1rem;
    padding: 5px 10px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 10px;
    border-radius: 5px;
}




.home .row.destaque-valor{
    font-size: 1rem;
}


.home .row.destaque-valor h2{
    margin: 0;
}


.home .row.destaque-valor h2 span{
    color: #d3b15f;
}


.home .row.destaque-valor p{
    background-color: #191919;
    padding: 30px;
    border-radius: 5px;
    
    
}






.home .row.comparativo{    
    padding-top: 6vh;
    padding-bottom: 8vh;
    color: #FFF;
    font-size: 1.2rem;
}


.home .row.comparativo .comparativo_box{    
        background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px var(--neon-1), 0 0 10px var(--neon-2), inset 0 0 8px rgba(255, 255, 255, 0.1);
    color: #FFF;        
    padding: 80px 40px;
    border-radius: 15px;
    margin-bottom: 4rem;
}

.home .row.comparativo .comparativo_box h2{    
    color: var(--neon-1);
    font-size: 2rem;
    margin-bottom: 0;
}


.home .row.comparativo .comparativo_box h3{    
    font-size: 1.4rem;
}


.home .row.comparativo .comparativo_box h5{    
    color: var(--neon-3);
    text-transform: uppercase;
    font-size: 1rem;
}

.home .row.comparativo ul{
    margin: 0;
    padding: 0;
}

.home .row.comparativo ul li{
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 12px 0 12px 40px;
    position: relative;    
    display: flex;    
    font-size: 1.2rem;
}



.home .row.comparativo ul li .desc{
    width: calc(100% - 200px);
}


.home .row.comparativo ul li .preco{
    font-weight: bold;
    text-align: right;
    width: 200px;
    
}




.home .row.comparativo ul li:last-child{
    min-height: 0;
}




.home .row.comparativo ul li:last-child{
    border-bottom: 1px solid rgba(255,255,255,0.3);

}



.home .row.comparativo ul li:before {
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    font-weight: 900;
    color: var(--neon-1);
    font-size: 16px;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 10px;    
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;    
}


.home .row.comparativo ul li:last-child::before{
    display: none;    
}






.home .row.comparativo .total{    
    border-top: 2px solid var(--neon-2);
    border-bottom: 2px solid var(--neon-2) !important;
    color: var(--neon-1);    
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 0;
}


.home .row.comparativo .total .label{
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;    
    
}

.home .row.comparativo .total .preco{
    color: #DD1F26;
    font-size: 1.6rem;
}
    



.home .row.comparativo .preco_riscado .preco{    
    text-decoration: line-through;
}






.home .row.comparativo .destaque::before{
    display: none !important;
}


.home .row.comparativo .destaque{    
     
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 0;
}


.comparativo_anos li{
    padding-left: 0 !important;
}
.comparativo_anos li::before{
    display: none !important;
}

.home .row.comparativo .destaque .label{
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;    
}


.home .row.comparativo .destaque .preco{    

}











.home .row.garantia{
    overflow-x:  hidden !important;
}


.home .row.garantia .garantia{
    font-size: 1rem;
    
}

.home .row.garantia .garantia h2{
    margin-bottom: 1vh;
    font-weight: 400;
    color: #fff;
    font-size: 1.4rem;
}


.home .row.garantia .garantia h2 span{
    color: #d3b15f;
}


.home .row.garantia .garantia p{
    font-size: 1rem;
    color: #FFF;
    font-weight: 500;
    margin: 0;
}











.home .row.destinado{
        
    padding: 0;
}

.home .row.destinado .container{
    padding-top: 8vh;
    padding-bottom: 8vh;
}

.home .row.destinado::before,
.home .row.destinado::after{    
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%);        
    width: 100%;
    content: '';
    height: 10px;
    position: relative;
    top: 0;
}

.home .row.destinado::before{ 
    transform: rotate(180deg);
}


.home .row.destinado .icone{
    /*background-image: repeating-linear-gradient(155deg, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
    background-size: 700%;*/

    background-image: linear-gradient(135deg, #DFC573, #B58136 50%, #DFC573);
    text-align: center;    
    font-size: 2rem;
    margin-bottom: 20px;
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;    

}

.home .row.destinado .texto{
    font-size: 1.1rem;

}


.home .row.destinado .icone i{
    
    
}




.home .row.posgraduacao{
    
    font-size: 1.1rem;
    padding: 0 !important;
    
}

.home .row.posgraduacao .container{
    padding-top: 8vh;
    padding-bottom: 8vh;
}






.home .row.posgraduacao h2{
    margin-bottom: 4vh !important;

    
}


.home .row.posgraduacao .container{
    
    
}

.home .row.perfil{    
    font-size: 1rem;   
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    
}

.home .row.perfil .container{    
    padding-top: 8vh;
    padding-bottom: 8vh;

}


/*
.home .row.perfil::before,
.home .row.perfil::after{    
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB3799 0%, #FDB93199 8%, #9f792899 30%, #8A6E2F99 40%, transparent 80%);        
    width: 100%;
    content: '';
    height: 10px;
    position: relative;
    top: 0;
}

.home .row.perfil::before{ 
    transform: rotate(180deg);
}

*/



.home .row.perfil h2{
    margin-bottom: 4vh;
}

.home .row.perfil h2 span{
    color: #d3b15f;
}

.home .row.perfil .foto img{
    border-radius: 15px;
    box-shadow: 5px 5px 10px 0 #999;
    
    
}


.home .row.impressionante{
    background-color: #300;
}


.home .row.impressionante h3{
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}


.home .row.base-comprar{
    background-color: #354e78;
    
    /* background-image: linear-gradient(to bottom, #000, #333); */
    padding: 0 !important;
    
    
    
}

.home .row.base-comprar::after1{
    background-image: linear-gradient(135deg, #DFC573, #B58136 90%, #DFC573);
    width: 100%;
    height: 2px;    
    content: ' ';
    display: block;
    position: relative;
    z-index: 9999;
    
}


.home .row.base-comprar::before1{
    background-image: linear-gradient(135deg, #DFC573, #B58136 90%, #DFC573);
    width: 100%;
    height: 2px;    
    content: ' ';
    display: block;
    position: relative;
    z-index: 9999;    
}







.home .row.base-comprar h2{    
    margin-bottom: 4vh !important;
    
}

.home .row.base-comprar h5{    
    font-weight: 400;
}

.home .row.base-comprar i{    
    margin-left: 10px;
    margin-right: 10px;
    color: #d3b15f;
    font-size: 1rem;
    transform: translateY(-6px);
}

.home .row.base-comprar .container{
    padding-top: 8vh;
    padding-bottom: 8vh;
}




.home .row.base-comprar .box-preco{
    padding-bottom: 8vh !important;
}


.home .row.base-comprar .box-preco h3{
    font-weight: 100;
    font-size: 2.6rem;
}

.home .row.base-comprar .box-preco h3 strong{
    color: #d3b15f;
}

.home .row.base-comprar .box-preco h5{
    font-weight: 100;
}

.home .row.base-comprar .box-preco h5 strong{
    font-weight: 300;
}


/*
.btn-comprar{
    padding: 20px 40px !important;     
    background-color: var(--neon-1);
    background-image: linear-gradient(135deg, var(--neon-3), var(--neon-2) 50%, var(--neon-3));
    
    border: none;
    color: #FFF;
    
    padding: 15px;    
    font-size: 1.4rem !important;
    text-transform: uppercase;
    border-radius: 15px;
    
}

.btn-comprar:hover{
    box-shadow: 0 0 15px 5px #DBA10FAA;
    color: #FFF;
}
*/

.btn-warning{
    background-color: var(--neon-1);
    background-image: linear-gradient(135deg, var(--neon-3), var(--neon-2) 50%, var(--neon-3));
    color: #FFF;
    text-transform: uppercase;
    font-weight: 500;
    padding: 5px 15px;
}

.btn-comprar {
  padding: 20px 40px !important;
  background-color: var(--neon-1);
  background-image: linear-gradient(135deg, var(--neon-3), var(--neon-2) 50%, var(--neon-3));
  border: none;
  color: #FFF;
  font-size: 1.4rem !important;
  text-transform: uppercase;
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
  animation: pulseGlow 2s infinite ease-in-out;
}

/* efeito de brilho leve ao passar o mouse */
.btn-comprar:hover {
  box-shadow: 0 0 20px 6px #ffb84daa;
  color: #FFF;
}

/* animação de pulsar */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 8px 2px #ffb84d55;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px 6px #ffb84daa;
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 8px 2px #ffb84d55;
    transform: scale(1);
  }
}









.home .row.faq{

    padding-top: 0;
    
    
}


.home .row.faq::before{
	width: 100%;
	height: 50px;    
	content: "";	    
    z-index: 999;
    margin-bottom: 8vh;
}




.home .faq h2{		
	margin-bottom: 40px;
}


.home .faq .card{
	margin-bottom: 20px;
    border-radius: 5px;
	/*box-shadow: 2px 2px 10px 0px  #ddd;*/
	border: none !important;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 5px var(--neon-1), 0 0 10px var(--neon-2), inset 0 0 8px rgba(255, 255, 255, 0.1);
	
}





.home .faq .card:last-child{
	margin-bottom: 0;
}

.home .faq .card-header {
	
	border-bottom: 0;
}

.home .faq .card-body{
	margin-left: 30px;
	margin-right: 30px;
	border-top: 1px solid #e6e6e6;
	padding-left: 10px;
	padding-right: 0;
}

.home .faq .card h2{
	font-size: 1em;
}

.home .faq button{
	outline: none !important;
	border: none;
	box-shadow: none !important;
    background-color: transparent !important;
	color: #FFF;		
	font-size: 1.3em;
	text-decoration: none !important;
	background-image: url(../imgs/cseta_faq.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	padding-right: 100px;
	padding-left: 20px;
}

.home .faq button.collapsed{
    color: #FFF;
	background-image: url(../imgs/cseta_faq_f.png);
}


.home .faq .card-header{
	background-color: transparent;        
}









.home .rodape{    
    background-color: #000 !important;    
    color: #ccc;
    padding-top: 2vh !important;
    padding-bottom: 2vh !important;
    min-height: 0;
    font-size: 0.8em;
    position: relative;
    z-index: 999;
    text-transform: uppercase;
}

.home .row.rodape .logo{
    max-height: 40px;
}    





#ccTitulo{            
    position: sticky !important;
    top: 20px; 
    z-index: 100;                         
}


#cc1{            
    position: sticky !important;
    top: 100px; 
    z-index: 101;                         
}


#cc2{            
    position: sticky !important;
    top: 130px; 
    z-index: 102;                         
}

#cc3{            
    position: sticky !important;
    top: 160px; 
    z-index: 103;                         
}


#cc4{            
    position: sticky !important;
    top: 190px; 
    z-index: 104;                         
}

#cc5{            
    position: sticky !important;
    top: 220px; 
    z-index: 105;                         
}


#cc6{            
    position: sticky !important;
    top: 250px; 
    z-index: 106;                         
}


#cc7{            
    position: sticky !important;
    top: 280px; 
    z-index: 107;                         
}


#cc8{     
    position: sticky !important;
    top: 310px; 
    z-index: 108;                         
    
}


#cc9{     
    position: sticky !important;
    top: 340px; 
    z-index: 109;                         
    opacity: 0 !important;
    height: 10px !important;
    min-height: 0 !important;
    
}



    

        


@media(max-width: 991.9px){


    #cc1{                    
        top: 90px;         
    }


    #cc2{                    
        top: 115px;         
    }

    #cc3{           
        top: 140px;         
    }

    #cc4{                    
        top: 165px;         
    }

    #cc5{                    
        top: 190px;         
    }

    #cc6{                   
        top: 215px;         
    }

    #cc7{            
        top: 240px; 
    }

    #cc8{             
        top: 265px;     
    }

    #cc9{     
        top: 290px;         
    }






    body{        
        
    }
    
    .home .apresentacao{                
        background-size: cover;
        padding-top: 4vh !important;
        padding-bottom: 8vh !important;
        height: auto !important;
        
    }

    .home .apresentacao .simonelli{
        background: none;
        min-height: 0;
    }

    .home .apresentacao .simonelli-destaque{
        max-height: 200px;        
        display: inline-block;
    }

    .home .apresentacao .logo{
        height: 60px !important;
        margin-bottom: 3vh !important;
    }


    .home .apresentacao .texto{        
        text-align: center;

    }


    .home .row.vantagens{
        padding-top: 2vh;
        
    }

    .row.vantagens::after{
        margin-top: 0;
    }
    
    .home .row.vantagens h3{
        justify-content: start;
        padding-left: 20px;
    }


    .home .row.vantagens h3 i{
        width: 40px;
        font-size: 1.6rem;
        text-align: center;
    }

    .home h1{
        font-size: 1rem !important;        
        margin-bottom: 3vh !important;
    }


    .home h2{
        font-size: 1.4rem !important;
        
    }

    
    .home .apresentacao h1{        
        margin-bottom: 20px !important;
    }


    .home .apresentacao h2{            
        font-size: 1rem !important;
        margin-bottom: 20px !important;

    }


    
    .linkDown{
        display: none;
    }


    .home .row.estrutura-destaque{
    }
    

    .home .row.imersao{
    }



    .home .row.comparativo .box {
        margin-left: 0;
        margin-right: 0;
    }



    .home .row.oportunidades h4 {
        min-height: auto;
    }

    .home .row.oportunidades .texto{
        text-align: center;
    }



    .home .row.descritivo .balao{
        right: 20px;
        top: 0;
    }


    .home .row.descritivo .balao::before {
        transform: rotate(-65deg);
        left: 120px;

    }

    .home .row.descritivo h3 {
        font-size: 1rem;
    }


    .home .row.descritivo ul li {
        font-size: 1rem;
    }

    .home .row.presentes .itens .item .texto{
        padding: 20px !important;        

    }

    .home .row.presentes .itens .item .valor{
        padding: 20px !important;
    }


    .home .row.presentes .itens .item .icone {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 8px !important;
        left: 25px !important;
    }


    .home .row.presentes .itens .item .valor{
        font-size: 1.2rem;
    }




    .home .row.row.crescimento .texto2{
        padding: 20px;
    }
    

    .home .row.crescimento .item-card{
        margin-top: 30px;
        min-height: 50vh;          
    }


    .home .row.crescimento img{
        
    }

    .home .row.crescimento .item-card .titulo{
        margin-right: 20px !important;
    }

    .home .row.crescimento .item-card .imagem1{
        max-width: 100px !important;
        margin-left: auto;
        right: 0;
    }

    .home .row.crescimento .item-card img{
        border-radius: 15px !important;
        width: 100%;            
    }


    .home .row.crescimento .item-card h3{             
        font-size: 1.2rem !important;
    }

    .home .row.crescimento .item-card h4{        
        display: flex;
        flex-direction: column;
        justify-content: center;
     
    }


    .home .row.crescimento .item-card h4 strong{        
        
        margin-top: 10px;
        text-align: center;
        margin-left: 0 !important;
    }


    .home .presentes button{
        padding: 10px;
        padding-right: 40px;
        align-items: start;
        font-size: 1rem;
        border-radius: 15px !important;
    }

    .home .presentes .accordion .card{
        overflow: unset !important;
        border: none !important;
    }


    .card-header{
        border-radius: 15px !important;
    }

 


    .home .presentes button span{
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem;
        position: absolute;
        top: -10px;
        left: -10px;
        z-index: 999;
    }


    .home .row.crescimento .rotulo{
        width: calc(100% - 40px) !important;
        height: 30px;
        top: -30px;
        font-size: 0.8rem;
        line-height: 1.3rem;
        display: flex;
        align-items: center;
    }
    

    .home .row.comparativo  li:before {
        left: 27px !important;

    }



    
    
    .home .row.base-comprar .icones i{
        display: none;
    }
    

    .home .row.base-comprar h2{
        font-size: 1.2rem !important;
        margin-bottom: 40px !important;
    }


    .home .row.comparativo .descritivo{
        font-size: 1.2rem;
    }
    


    .home .row.base-comprar h5{
        font-size: 1rem !important;
        margin-bottom: 60px;
    }

    .home .row.base-comprar .box-preco{
        padding-bottom: 0 !important;
    }


    .home .row.base-comprar .icones i:nth-child(1){
        display: inline-block;
        transform: translateY(-2px);
    }


    
    
    .home .estrutura .piramide{
        padding: 10px;
    }
    
    .home .estrutura .itens{
        display: block !important;        
    }

    .home .estrutura .texto h3 {
        font-size: 1.1rem;
    }   


    .home .estrutura .itens .titulo h3 {
        font-size: 1.1rem !important;
    }

    .home .row.destinado .itens{
        display: block !important;        
    }

    .home .sobre li {
        font-size: 1rem;
    }

    .home .row.presentes .itens .item .titulo h3{
        font-size: 1rem !important;
    }

    .home .row.comparativo .preco{
        font-size: 1.6rem !important;
    }

    .home .row.comparativo .total small{
        font-size: 0.9rem !important;
    }

    .btn-comprar{
        font-size: 1.2rem !important;
    }


    .home .row.garantia h2{
        font-size: 1rem !important;
    }

    .home .row.garantia p{
        font-size: 0.8rem !important;
    }

    .home .row.garantia img{
        max-width: 100px;
        margin-bottom: 20px;
        
    }


    
    .home .row.perfil img{
        margin-bottom: 20px;
    }



    

    .home .row.pos-graduacao .base-imagem {
        margin-top: 6vw;
        margin-bottom: 30vw;
        width: 60vw;
        height: 40vw;
        
    }





    .home .faq button {
        font-size: 1rem !important;
        padding: 10px !important;
        padding-right: 40px !important;
        border-radius: 15px !important;
        overflow: hidden;
    }


    .home .faq .card-header{
        padding: 0 !important;
        
    }


    .base_timer{    
        padding: 10px 0 !important;     
    }
        
    .base_timer .box{
        padding: 0 !important;
        min-height: 35px !important;
        border: none;
        flex-direction: row;
        margin-left: 20px;
        width: auto !important;
        
    }
    
    .base_timer h2{
        text-align: center;
        font-size: 1.2rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .base_timer small{
        margin: 0;
        margin-left: 2px;
        
    }

    .base_timer small span{
        display: none;
        
    }
    
    
    .base_timer .btn-matricula{
        max-width: 100%;
        width: 180px !important;
        padding: 5px 0 0 0 !important;
        font-size: 1rem !important;        
        transform: translateY(3px);
        
    }

    .atendimento{
        right: 60px;
    }

    .atendimento .icone::before{
        width: 45px !important;
        height: 45px !important;			
    }

    .atendimento .icone{		
        width: 40px;
        height: 30px;			
        font-size: 25px;        
    
    }


    .home .row.comparativo .de{    
        font-size: 1.4rem;
    }




    .btn-matricula{
        font-size: 1.2rem !important;
        padding: 10px !important;
    }



    .home .row.comparativo ul li .desc{
        width: 100% !important;
    }

    .home .row.comparativo .preco{
        width: 100% !important;
        font-size: 1.2rem !important;
    }

    .home .row.comparativo ul li{
        display: block;
    }

    .home .row.comparativo ul li:before{
        margin-left: -20px;
    }

    .home .row.comparativo .comparativo_box{
        padding: 20px;
    }

    .depoimentos_fotos img{
        border-radius: 15px;
        box-shadow: 0 0 10px var(--neon-1), 0 0 20px var(--neon-2), inset 0 0 8px rgba(255, 255, 255, 0.1) !important;   
        margin-bottom: 20px;
    }

}


@media(min-width: 992px){
    .home .row.crescimento .item-card .imagem1{
        display: none !important;
    }


}


@media(min-width: 1200px){

}



@media(min-width: 1600px){
}