@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: 'Lato', sans-serif;
}
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-dark-blue {
    background-color: #152534;
}

.bg-dark-green {
    background-color: #2d3748;
}

.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.image-background img{
    position: absolute;
    bottom: 0;
    right: 0;
}

.image-background{
    height: 100%;
    background: #878787;
}

.image-background:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #152431, #17263585);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
    color: white;
}
.content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.content h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #36BC98;
    color: #003350;
    padding: 15px 35px;
    border-radius: 45px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    filter: drop-shadow(7px 7px 9px #00000091);
    font-weight: 700;
}

.cta-button:hover {
    background-color: #36BC98;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.polygon {
    width: 100vh;
    height: 100vh;
    position: absolute;
    top: -140px;
    left: -300px;
    background: linear-gradient(45deg, #152534, #152534cf);
    border-radius: 250px;
    transform: rotate(45deg);
}

header {
    background-color: #15243282;
    color: white;
    position: fixed;
    width: 100%;
    border-bottom: 1px solid #ffffff59;
    border-top: 4px solid #36BC98;
    z-index: 9;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: calc(100% - 60px);
}

#main-header.scrolled {
    background-color: #152534;
    transition: background-color 0.5s ease; /* Adicionando uma transição suave */
}

nav{
    height: 55px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    height: 100%;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-right: 20px;
    display: block;
    height: 100%;
}

nav a:hover {
    text-decoration: underline;
    text-decoration-color: #36BC98; /* Definindo a cor do underline */
    text-underline-offset: 5px; /* Distância do underline em relação ao texto */
    text-decoration-thickness: 3px; /* Espessura do underline */
}

.features {
    padding: 100px 0;
    text-align: center;
}

.features h2 {
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.info {
    padding: 40px 0;
    color: white;
}

.info h3 {
    font-size: 24px;
    color: #1AB481;
}

footer {
    background-color: #1a202c;
    color: white;
    text-align: center;
    padding: 90px 0 10px 0;
    border-top: 4px solid #36bc98;
}

.bg-green-500 {
    background-color: #1AB481;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.bg-green-500:hover {
    background-color: #2f855a;
}

header i {
    color: #FFF !important;
    font-size: 25px;
    margin-right: 20px;
}

.image-placeholder {
    width: 800px;
    height: 400px;
    background-color: #e2e8f0; /* Cor de fundo para simular a imagem */
    border: 2px dashed #cbd5e0; /* Borda para indicar que é um placeholder */
}

.info .image-placeholder {
    width: 400px;
    height: 400px;
}

.group ul {
    display: none;
    position: absolute;
    top: 55px;
    height: fit-content;
    box-shadow: 5px 5px 15px #272727;
    border-radius: 0 0 40px;
    padding: 0;
    width: max-content;
}

.group ul li {
    background: #FFF;
    border: 1px solid black;
    border-top: none;
    display: flex;
}

.group ul li a {
    color: #000;
    text-align: center;
    padding: 20px;
}

.group ul li:last-child {
    border-radius: 0 0 40px;
}

.group ul li:hover {
    background: #36bc98;
}

.group ul li:hover a {
    color: #FFF;
    text-decoration: none;
}

.group:hover > ul,
.group ul:hover {
    display: block;
}

footer .row{
    text-align: left;
}

.oque{
    padding: 100px 0;
    background-image: url('../images/programming.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.oque .container{
    position: relative;
    z-index: 2;
}

.oque:before {
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(90deg, #152534 60%, #36bc98b4);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: .7;
}

.oque h2{
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.oque p.p-left {
    font-size: 25px;
    padding-left: 25px;
    border-left: 6px solid #1ab481;
    margin-bottom: 40px;
}

.oque p.p-right {
    align-self: flex-end;
    font-size: 32px;
}

.device-icons {
    display: flex;
    position: absolute;
    bottom: -40px;
    right: 300px;
    z-index: 1;
}

.device-icons .icon-container {
    width: 80px;
    height: 80px;
    background: #36bc98;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
}

.depoimentos{
    padding: 100px 0 30px;
}

.depoimentos h2{
    font-size: 60px;
    color: #111111;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 70px;
    font-weight: 600;
    text-align: center;
}

.dep_left p{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.dep_right i {
    font-size: 36px;
    margin-bottom: 12px;
    color: #36bc98;
}

.dep_right h3 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 900;
    font-style: italic;
}

.dep_right p {
    line-height: 1;
}

.testimonial-slider {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-image {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 auto;
}

.testimonial h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
}

.testimonial p {
    color: gray;
    font-style: italic;
}

.testimonial blockquote {
    font-size: 18px;
    margin: 20px 0;
    color: #636363;
    font-style: italic;
}

.row.slider {
    margin-top: 40px;
    padding-top: 50px;
    border-top: 1px solid #dbdbdb;
}

.slick-dots li button:before{
    font-size: 10px!important;
}

.slick-dots li{
    margin: 0!important;
}

.slick-next:before, .slick-prev:before{
    font-size: 40px!important;
    color: #152534!important;
}

.depoimentos h4 {
    font-size: 38px;
    color: #111111;
    font-style: italic;
    font-family: 'Lato';
    margin-top: 50px;
    font-weight: 500;
    text-align: center;
}

.fale-erik{
    padding: 100px 0;
    position: relative;
    background-image: url('../images/bg_erik.webp');
    background-size: cover;
    background-position: center;
}

.fale-erik::before{
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(90deg, #152534 12%, #1d5d4ced 55%, #152534);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
}

.fale-erik .container{
    position: relative;
    z-index: 2;
}

.fale-erik img{
    position: absolute;
    bottom: calc(0px - 100px);
    left: 0;
    height: 750px;
}

.fale-erik h2{
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 30px;
    font-weight: 600;
}

.fale-erik p {
    font-size: 32px;
    color: #FFF;
    font-weight: 500;
    margin-bottom: 30px;
}

.relative{
    position: relative;
}

.erik-text {
    position: absolute;
    right: 0;
    border-bottom: 1px solid #FFF;
    display: flex;
    flex-direction: column;
}

.erik-text strong{
    font-family: 'Lato';
    font-style: italic;
    font-size: 32px;
    color: #FFF;
}

.erik-text span{
    color: #FFF;
    font-weight: 300;
    font-size: 22px;
    padding-bottom: 6px;
}

.internal h1{
    font-size: 100px;
    font-weight: 700;
    font-style: italic; 
    font-family: 'Lato';
    margin-bottom: 40px;
}

.internal .cta-button-container{
    display: flex;
    align-items: center;
}

.internal .cta-button-container a{
    margin-right: 20px;
    color: #192837;
}

.internal .cta-button-container p{
    margin: 0;
    font-size: 20px;
    color: #36bc98;
}

.profile {
    text-align: center;
    height: 100%;
    background: #DAD9D8;
    padding: 35px;
    border-radius: 15px 15px 70px;
}

.profile img {
    border-radius: 15px 15px 50px;
    width: 95%;
    height: auto;
    object-fit: cover;
}

.linkedin a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    text-decoration: none;
    color: #ffffff;
    background: #152534;
    margin: -20px 10px 35px;
    border-radius: 24px;
    padding: 5px 25px 5px 5px;
    position: relative;
    width: fit-content;
    font-size: 20px;
}

.linkedin a:after {
    width: 100%;
    height: 5px;
    position: absolute;
    content: "";
    background: #1ab481;
    bottom: -26px;
    border-radius: 40px;
    left: 0px;
}

.linkedin i {
    background: #ffffff;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: #152534;
}

.linkedin img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.trajectory h2 {
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.trajectory blockquote {
    border-left: 5px solid #1AB481;
    padding-left: 10px;
    margin: 20px 0;
}

.trajectory ul {
    list-style: none;
    padding: 0;
}

.trajectory ul li {
    margin: 5px 0;
}

.ep-sistemas {
    font-size: 22px;
    margin-bottom: 40px;
    text-align: justify;
}

.ep-sistemas strong{
    color: #1AB481;
}

.instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background: #36bc98;
    font-family: 'Lato';
    font-style: italic;
    font-weight: 600;
    padding: 10px 20px 10px 60px;
    border-radius: 40px;
    position: relative;
    scale: .6;
    top: -35px;
    right: -60px;
}

.instagram img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.instagram i{
    left: 8px;
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FFF;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.instagram p{
    margin: 0;
}

.instagram:after {
    position: absolute;
    content: "Acesse nosso Instagram";
    color: #616161;
    top: 60px;
    right: 4px;
}

.erik-sobre{
    padding: 100px 0;
}

.ep-sistemas{
    padding-top: 100px;
}

.profile p {
    font-size: 20px;
    text-align: justify;
    font-weight: 400;
    padding: 10px;
    line-height: 1.3;
}

.trajectory p{
    font-size: 22px;
    margin-bottom: 40px;
    text-align: justify;
}

.trajectory blockquote p{
    font-weight: 500;
    font-family: 'Lato';
    font-style: italic;
    font-size: 22px;
}

.trajectory ul li {
    font-size: 18px;
    margin: 5px 0;
    text-decoration: underline;
}

.instagram-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.image-instagram{
    padding: 45px;
    background: linear-gradient(135deg, #152534, #058361, #152534);
    border-radius: 20px 20px 20px 60px;
    position: relative;
}

.image-instagram:before {
    position: absolute;
    content: "";
    width: 140%;
    height: 108%;
    background: #dad9d8;
    z-index: -1;
    left: -40px;
    top: 40px;
    border-radius: 6px 6px 6px 60px;
}

.image-instagram img{
    width: 140px;
    filter: drop-shadow(2px 4px 6px);
    min-height: 140px;
    object-fit: cover;
}

.promover {
    padding: 100px 0;
    background: #dad9d8;
}

.promover h2{
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
    text-align: center;
}

.promover p{
    font-size: 22px;
    text-align: justify;
}

.orientacoes{
    padding: 100px 0;
}

.orientacoes h2{
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.orientacoes p{
    font-size: 22px;
    text-align: justify;
}

.orientacoes a{
    margin-top: 40px;
}

.orientacoes p strong{
    color: #1AB481;
}

.orientacoes span{
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #7E689F;
}

.orientacoes blockquote strong{
    color: #7E689F;
    font-size: 150px;
    position: absolute;
    top: -85px;
    left: -65px;
}

.orientacoes blockquote{
    color: #5b5b5b;
    font-family: 'Lato';
    font-style: italic;
    font-weight: 500;
    font-size: 36px;
    position: relative;
}

.dad-divider{
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider{
    border-left: 1px solid #7d7d7d;
    height: 100%;
}

.sis img{
    filter: brightness(0.5);
}

.about {
    padding: 100px 0;
}

.about h2 {
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.about p, .about blockquote {
    font-size: 22px;
    text-align: justify;
}

.about .mission-vision-values {
    margin: 100px 0;
    background: #dad9d8;
    padding: 40px 20px;
    border-radius: 8px;
}

.about .mission-vision-values h3 {
    color: #212529;
    margin-top: 15px;
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    text-decoration: underline;
    padding-bottom: 15px;
    text-decoration-color: #1ab481;
    text-decoration-thickness: 5px;
}

.about .mission-vision-values p, .about .mission-vision-values ul {
    font-size: 20px;
    text-align: center;
    list-style: none;
}

.about .mission-vision-values i {
    color: #ffffff;
    margin-bottom: 10px;
    background: #152534;
    padding: 25px;
    border-radius: 15px 15px 40px;
    box-shadow: 3px 3px 4px #5d5d5d;
}

.about blockquote {
    background: #f0f0f0;
    padding: 15px;
    border-left: 5px solid #007b5e;
    margin: 20px 0;
}

.about .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    filter: saturate(.3);
    position: relative;
}

.img-about{
    position: relative;
}

.img-about:after {
    width: 100%;
    position: absolute;
    content: "Transformamos o modo de gestão de empresas através da criação de softwares que automatizam os processos e os fluxos de trabalho.";
    background: #dad9d8;
    padding: 35px;
    font-size: 18px;
    font-family: 'Lato';
    font-style: italic;
    color: #474747;
    text-align: justify;
    border-radius: 15px 15px 40px;
    left: 80px;
    bottom: -25px;
    box-shadow: 2px 2px 4px #a5a5a5;
}

.about .text-center {
    text-align: center;
}

.features {
    padding: 50px 0;
    background-color: #fff;
}

.features h2 {
    color: #007b5e;
    margin-bottom: 30px;
}

.features .feature-box {
    background-color: #f0f0f0;
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px 15px 40px;
    height: 100%;
    margin-top: 30px;
}

.features i {
    color: #ffffff;
    margin-bottom: 15px;
    background: #00c18d;
    padding: 10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features h3 {
    color: #212529;
    margin-top: 15px;
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 4px solid #1ab481;
    width: min-content;
}

.features p {
    color: #666;
    line-height: 1.5;
}

.features .container p {
    margin-top: 30px;
    color: #333;
}

.about strong, .features strong{
    color: #1AB481;
}

.img_cogs{
    height: 320px!important;
}

.rodap{
    margin-top: 80px!important;
    color: #333;
    font-size: 20px;
}

.consultoria-ep {
    padding: 40px 0;
}

.consultoria-ep h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.consultoria-ep p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.consultoria-ep ul {
    padding-left: 0;
}

.consultoria-ep li {
    margin-bottom: 10px;
    font-size: 22px;
}

.consultoria-ep li i {
    color: #7E689F;
    margin-right: 15px;
}

.consultoria-ep .text-success {
    color: #28a745;
}

.mentoria-ep {
    padding: 40px 0;
    background-color: #ffffff;
}

.mentoria-ep h3 {
    font-size: 42px;
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 600;
    color: #424242;
}

.mentoria-ep p {
    font-size: 22px;
    text-align: justify;
    margin-right: 30px;
}

.mentoria-ep hr {
    margin: 30px 0;
}

.mentoria-ep .text-success {
    color: #28a745;
}

.mentoria-ep .text-muted {
    color: #6c757d;
}

.empresas-mentoria {
    padding: 40px 0;
    background-color: #1a2b3c;
    color: #ffffff;
}

.empresas-mentoria h4 {
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 42px;
    z-index: 1;
    position: relative;
    text-shadow: 2px 1px 5px #131f2c;
}

.empresas-mentoria p {
    font-size: 22px;
    text-align: justify;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
    text-shadow: 2px 1px 5px #131f2c;
}

.empresas-mentoria strong{
    color: #1AB481;
}

.empresa-logos img {
    max-width: 230px;
    margin-bottom: 25px;
    width: 100%;
    height: 50px;
    object-fit: contain;
    filter: brightness(300);
}

.btn-success {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
}

.btn-success:hover {
    background-color: #218838;
}

.consultoria-ep{
    padding: 100px 0;
}

.consultoria-ep h2{
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.consultoria-ep p{
    font-size: 22px;
    text-align: justify;
}

.consultoria-ep strong{
    color: #1AB481;
}

.pilares{
    padding: 20px;
    margin: 60px 0;
    position: relative;
}

.pilares:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #152534, #11654eb0, #152534);
    top: 0;
    left: 0;
    border-radius: 12px;
}

.pil{
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pil h3{
    color: #FFF;
    font-family: 'Lato';
    font-style: italic;
    font-weight: 600;
    margin-bottom: 20px;
}

.pil li{
    margin-bottom: 10px;
    font-size: 22px;
    color: #FFF;
}

.projetada i{
    color: #afafaf;
    font-size: 140px;
}

.solucoes h2{
    color: #424242;
    font-size: 48px;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.solucoes{
    padding: 20px;
    background: #dad9d8;
    border-radius: 12px;
    margin-top: 60px!important;
}

.mentoria-ep {
    padding: 0 0 60px 0;
    background-color: #fff;
}

.mentoria-intro {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.icon-wrapper {
    flex-shrink: 0;
}

.icon-wrapper i {
    color: #afafaf;
    font-size: 140px;
}

.intro-text {
    flex-grow: 1;
}

.intro-text p {
    font-size: 22px;
    text-align: justify;
}

.text-prim {
    color: #1AB481!important;
    font-weight: 600;
}

.divider {
    border-top: 1px solid #E5E5E5;
    margin: 40px 0;
}

.mentoria-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.mentoria-info {
    flex: 1;
}

.mentoria-title{
    font-size: 40px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.all-title {
    font-size: 60px;
    color: #1AB481;
    font-style: italic;
    font-family: 'Lato';
    margin-bottom: 50px;
    font-weight: 600;
}

.mentoria-description,
.mentoria-experience {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.erik-profile {
    width: 300px;
    text-align: center;
}

.erik-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.instagram-handle {
    font-size: 16px;
    margin: 0;
}

.instagram-handle span {
    font-size: 14px;
    color: #666;
}

.mentoria-benefits {
    text-align: center;
    padding: 30px 0;
}

.benefits-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 70px;
    color: #00B894;
    margin-bottom: 20px;
}

.benefit-item p {
    margin: 0;
    text-align: center;
    font-weight: 600;
    font-size: 22px;
}

@media (max-width: 768px) {
    .mentoria-content {
        flex-direction: column;
    }
    
    .erik-profile {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.mentoria-ep .image-instagram:before {
    z-index: 0;
}

.mentoria-ep .image-instagram {
    padding: 0; 
    background: 0;
    border-radius: 0;
    position: relative;
}

.mentoria-ep .image-instagram img {
    width: 270px;
    filter: none;
    border-radius: 20px 20px 20px 60px;
    z-index: 2;
    position: relative;
}

.mentoria-ep .instagram{
    z-index: 3;
}

.mentoria-ep .instagram:after{
    font-size: 22px;
}

.sol_prat{
    background: url('../images/bg_erik.webp');
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    border-radius: 12px;
    position: relative;
}

.sol_prat::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #152534, #11654eb0, #152534);
    top: 0;
    left: 0;
    border-radius: 10px;
    z-index: 0;
}

.como-funciona-content i{
    color: #afafaf;
    font-size: 220px;
    display: flex;
    align-items: center;
}

.como-funciona{
    padding: 100px 0;
}

.como-funciona-content p{
    font-size: 22px;
    text-align: justify;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.clients-content {
    background-color: #152534;
}  

.all-subtitle{
    margin-bottom: 20px;
    color: #FFF;
    font-style: italic;
    font-size: 30px;
    text-align: right;
}

.comment-box{
    background: #ffffff26;
    padding: 20px 20px 20px 45px;
    border-radius: 8px 8px 80px 8px;
}

.comment-box blockquote{
    color: #fff;
    font-size: 20px;
    position: relative;
    text-align: justify;
    padding-right: 10px;
}

.comment-box blockquote strong{
    color: #7E689F;
    font-size: 150px;
    position: absolute;
    top: -100px;
    left: -65px;
}

.comment-box span{
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: #7E689F;
}

.horizontal-inverted{
    transform: scaleX(-1);
    direction: ltr;
}

.horizontal-inverted .instagram{
    transform: scaleX(-1);
    direction: ltr;
}

.clientes{
    padding: 100px 0;
}

.empresas_atendidas{
    padding: 100px 0;
    background: #dad9d8;
}

.empresas_atendidas img{
    filter: brightness(0.2);
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.empresas_atendidas h2{
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
    font-weight: 600;
    font-size: 40px;
}

.exp h1{
    font-size: 80px;
}

.exp span{
    font-size: 48px;
    color: #36bc98;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
    margin-top: 30px;
}
.exp blockquote{
    margin: 10px 0 0;
    padding-left: 25px;
    font-size: 22px;
    border-left: 5px solid #36bc98;
    text-align: justify;
}

.experimente{
    padding: 100px 0;
    background: #1AB481;
}

.experimente h2{
    font-size: 48px;
    color: #152534;
    font-weight: 700;
    margin-bottom: 20px;
}

.experimente p{
    font-size: 22px;
    text-align: justify;
    color: #fff;
    margin: 40px 0;
}

.experimente ul{
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #fff;
}

.experimente li{
    font-size: 22px;
    margin-bottom: 10px;
}

.experimente li i{
    color: #152534;
    margin-right: 10px;
}

.experimente .btn{
    background: #F58423;
    color: #FFF;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 24px;
    border: 0;
    border-radius: 8px;
    animation: pulse 2s infinite;
    margin-top: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 132, 35, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 132, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 132, 35, 0);
    }
}

.experimente .btn:hover{
    background: #e97714;
    color: #FFF;
}

.exp_imgs{
    height: 380px;
    position: relative;
}

.exp_imgs img {
    position: absolute;
    width: 80%;
    border-radius: 8px;
    box-shadow: 1px 1px 8px #00000085;
}

.exp_imgs img:first-child {
    top: 0;
    left: 0;
    height: 270px;
    object-fit: cover;
    object-position: top left;
}

.exp_imgs img:last-child {
    top: 30%;
    left: 25%;
    height: 270px;
}

.experimente strong{
    margin-top: 30px;
    display: block;
    padding-top: 13px;
    border-top: 4px solid #152534;
    width: fit-content;
    color: #FFF;
    font-size: 22px;
    margin-bottom: 12px;
}

.experimente p:last-child{
    margin-top: 0!important;
}

.horizontal-inverted .image-instagram img{
    transform: scaleX(-1);
}

footer a {
    text-decoration: none;
}

/* Estilos do Botão Hamburger */
.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

#mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Animações do Menu Mobile */
#mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

#mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-item {
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease-out;
}

#mobile-menu.active .mobile-menu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Delay em cascata para os itens do menu */
#mobile-menu.active .mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.active .mobile-menu-item:nth-child(2) { transition-delay: 0.2s; }
#mobile-menu.active .mobile-menu-item:nth-child(3) { transition-delay: 0.3s; }
#mobile-menu.active .mobile-menu-item:nth-child(4) { transition-delay: 0.4s; }
#mobile-menu.active .mobile-menu-item:nth-child(5) { transition-delay: 0.5s; }

/* Submenus Mobile */
.mobile-submenu {
    display: none;
}

.mobile-menu-item.active .mobile-submenu {
    display: block;
}

/* Efeito de Blur no fundo quando menu está aberto */
body.menu-open {
    overflow: hidden;
}

/* Estilos adicionais para o menu mobile */
#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.95), rgb(17, 24, 39));
    z-index: 50;
    width: 100%;
    height: 100vh;
    padding-bottom: 40px;
}

#mobile-menu nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
}

#mobile-menu .mobile-menu-item {
    margin-bottom: 1.5rem;
}

#mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
}

#mobile-menu .mobile-submenu {
    margin-top: 1rem;
}

#mobile-menu .mobile-submenu a {
    font-size: 1.125rem;
    color: rgba(209, 213, 219);
}

/* Estilos para as redes sociais no menu */
#mobile-menu .social-links {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

#mobile-menu .social-links a {
    color: white;
    font-size: 1.5rem;
}

#mobile-menu-close {
    position: absolute;
    right: 	50px;
    top: 30px;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#mobile-menu-close i{
    font-size: 40px;
    margin: 0;
}

#mobile-menu-button{
    background: 0;
    border: 0;
}

#mobile-menu-button i{
    margin: 0;
    font-size: 30px;
}

.slick-prev{
    left: -60px;
}

.slick-next{
    right: -60px;
}

@media (max-width: 1500px) {
    .hero{
        height: 100vh!important;
    }
    .polygon{
        top: 0;
        left: -280px;
    }
}

/* Media query para esconder/mostrar menus */
@media (min-width: 1200px) {
    #mobile-menu,
    #mobile-menu-button {
        display: none;
    }
}

@media (max-width: 1199px) {
    .desktop-menu, .social_header {
        display: none;
    }
}

@media (max-width: 991px) {
    .fale-erik img {
        position: relative;
        bottom: 0;
        left: 0;
        height: auto;
        width: 100%;
    }
    .erik-text {
        position: relative;
        text-align: center;
        margin: 30px 0;
    }
    .testimonial {
        padding: 0;
    }
    
    .slick-slide {
        margin: 0;
    }
    
    .testimonial blockquote {
        padding: 0 10px;
    }
    .hero{
        height: 100vh!important;
    }
    .polygon {
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(45deg, #152534, #152534cf);
        border-radius: 0;
        transform: none;
    }
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0;
        color: white;
        text-align: center;
    }
    .device-icons {
        display: flex;
        position: relative;
        bottom: -40px;
        right: 0px;
        z-index: 1;
        justify-content: center;
    }
    .p-right{
        width: 100%!important;
    }
    .fale-erik .col-lg-4{
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .img-about:after{
        left: 0;
        bottom: -140px;
    }
    .img-about{
        margin-bottom: 120px;
    }
    .about .img-fluid{
        margin-top: 30px;
    }
    .about .mission-vision-values{
        margin: 60px 0;
    }
    .about .mission-vision-values .col-md-4{
        margin-bottom: 30px;
    }
    .about .mission-vision-values p, .about .mission-vision-values ul{
        padding: 0;
    }
    section.features .col-md-3{
        margin-bottom: 30px;
    }
    .cta-button{
        font-size: 24px!important;
        text-align: center!important;
    }
    .internal .cta-button-container a{
        margin: 0;
    }
    .internal .cta-button-container{
        flex-direction: column;
    }
    .internal .cta-button-container p{
        margin-top: 30px;
    }
    .erik-sobre .col-lg-4{
        margin-bottom: 30px;
    }
    .ep-sistemas {
        padding-top: 60px;
    }
    .dep_left, .dep_right h3{
        font-size: 26px!important;
        margin-bottom: 30px;
    }
    .ep-sistemas .col-lg-6{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    .instagram-container{
        width: 60%!important;
        margin-top: 30px;
    }
    .image-instagram img {
        width: 100%;
        filter: drop-shadow(2px 4px 6px);
        min-height: 0;
        object-fit: cover;
    }
    .mentoria-ep .instagram-container{
        width: 100%!important;
        justify-content: center;
        align-items: center;
    }
    .dad-divider{
        display: none;
    }
    .orientacoes blockquote{
        font-size: 30px!important;
        text-align: center!important;
    }
    .orientacoes .col-lg-4{
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    .orientacoes .col-lg-7{
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .pil h3 {
        margin-bottom: 30px;
        font-size: 30px;
        text-align: center;
    }
    .pil li, .consultoria-ep li{
        font-size: 20px!important;
    }
    .projetada .col-md-3{
        display: flex;
        justify-content: center;
    }
    .mentoria-intro{
        flex-direction: column;
    }
    .mentoria-ep p{
        margin-right: 0;
    }
    .empresas-mentoria .col-md-4{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    } 
    .como-funciona-content, .development-step{
        flex-direction: column;
    }
    .como-funciona-content i, .development-arrow{
        display: none;
    }
    .como-funciona-content .flex-column, .development-content{
        margin-left: 0!important;
    }
    .planning-steps, .development-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .development-title{
        text-align: center!important;
        font-size: 22px!important;
    }
    .development-step{
        max-width: 100%!important;
    }
    .cta-subtitle{
        font-size: 26px!important;
    }
    .features h2, .oque h2, .depoimentos h2, .fale-erik h2, .about h2, .trajectory h2, .promover h2, .orientacoes h2, .consultoria-ep h2, .empresas-mentoria h4, .all-title{
        font-size: 40px!important;
        text-align: center!important;
    }
    .experimente h2{
        font-size: 36px!important;
        text-align: center!important;
    }
    .comment-box{
        margin: 30px 0!important;
    }
    .clients-content video, .clientes .col-md-4{
        margin-bottom: 30px!important;
    }
    .mentoria-ep{
        padding: 0 0 30px 0!important;
    }
    .experimente li{
        font-size: 20px!important;
    }
    .exp_imgs {
        height: 300px;
        position: relative;
        margin: 30px 0;
        width: 100%;
    }
    .exp_imgs img:first-child{
        height: 220px;
    }
    .exp_imgs img:last-child {
        top: 30%;
        left: 20%;
        height: 220px;
    }
    .experimente .col-md-5{
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .oque p.p-left, .oque p.p-right, .fale-erik p, .empresas-mentoria p{
        font-size: 20px!important;
        text-align: center!important;
        padding-left: 0;
    }
    .about p, .trajectory p, .ep-sistemas p, .promover p, .orientacoes p, .consultoria-ep p, .mentoria-ep p, .como-funciona-content p, .step-description, .development-description, .text-box p, .clients-content p, .experimente p{
        font-size: 20px!important;
        text-align: justify!important;
    }
    .fale-erik, .depoimentos, .about, .erik-sobre, .promover, .orientacoes, .consultoria-ep, .como-funciona, .clients-content, .clientes, .empresas_atendidas, .experimente{
        padding: 60px 0!important;
    }
    .internal h1{
        font-size: 52px!important;
    }
    .benefit-item p{
        text-align: center!important;
    }
}

@media (max-width: 767px) {
    footer img{
        width: 80%!important;
    }
    footer .row{
        text-align: center!important;
    }
    footer .col-md-3 {
        margin-bottom: 20px !important;
        padding: 0 40px;
    }
    header img{
        width: 200px;
    }
}
