@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  --dark:#17191F;
  --dark-2:#101218;
  --white:#F5F5F3;
  --text:#E5E5E5;
  --yellow:#E2B340;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', Arial, sans-serif;
  background:var(--dark);
  color:var(--white);
  overflow-x:hidden;
  line-height:1.7;
}

a{
  color:inherit;
}

.container{
  width:90%;
  max-width:1280px;
  margin:0 auto;
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:92px;
  background:rgba(23,25,31,.98);
  border-bottom:1px solid rgba(255,255,255,.08);
  z-index:999;
}

.header-inner{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo img{
  height:70px;
  width:auto;
  display:block;
}

.hamburger{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:32px;
  cursor:pointer;
}

.menu{
  display:flex;
  align-items:center;
  gap:36px;
}

.menu a{
  color:var(--white);
  text-decoration:none;
  font-size:14px;
  font-weight:500;

  display:flex;
  align-items:center;

  height:92px;

  transition:color .2s ease;
}

.menu a:hover{
  color:var(--yellow);
}

.cta-menu{
  background:var(--yellow);
  color:var(--dark);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  padding:14px 22px;
  white-space:nowrap;
  border:1px solid var(--yellow);

 transition:all .25s ease;
}

.cta-menu:hover{
  background:transparent;
  color:var(--yellow);
}

/* CTA */

.cta{
  display:inline-block;
  margin-top:20px;
  padding:18px 30px;
  background:var(--yellow);
  color:var(--dark);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  border:1px solid var(--yellow);

 transition:all .25s ease;
}

.cta:hover{
  background:transparent;
  color:var(--yellow);
  transform:translateY(-2px);

}

.cta-publico{
  text-align:center;
  margin-top:40px;
}

.cta-publico .cta{
  display:inline-block;
}

/* HERO */

.hero{
  min-height:680px;
  display:flex;
  align-items:center;
  padding-top:170px;
  padding-bottom:100px;
  background:
    linear-gradient(
      90deg,
      rgba(23,25,31,.98) 0%,
      rgba(23,25,31,.92) 42%,
      rgba(23,25,31,.52) 100%
    ),
    url('hero.png');
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
}

.hero-content{
  width:90%;
  max-width:1280px;
  margin:0 auto;
}

.hero h1{
  font-size:52px;
  font-weight:300;
  line-height:.95;
  letter-spacing:-3px;
  margin-bottom:28px;
  max-width:none;
}

.hero p{
  max-width:760px;
  font-size:24px;
  line-height:1.75;
  color:var(--text);
  margin-bottom:20px;
}

.hero .destaque{
  color:#E2B340 !important;
  font-weight:800 !important;
  font-size:24px !important;
  line-height:1.3 !important;
  display:block;
}


/* MARKETISMO */

.marketismo-section{
  background:#2B303B;
  color:var(--white);
  padding:45px 0 55px;
  border-top:1px solid rgba(226,179,64,.15);
  border-bottom:none;
  position:relative;
  overflow:hidden;
}

.arrow{
  position:absolute;
  right:160px;
  top:20px;

  font-size:300px;
  color:rgba(226,179,64,.08);

  transform:rotate(0deg);
}

.marketismo-section h2{
  font-size:48px;
  font-weight:300;
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:28px;
}

.marketismo-copy{
  max-width:1180px;
}

.marketismo-section p{
  font-size:22px;
  line-height:1.75;
  color:var(--text);
  margin-bottom:15px;
}

.marketismo{
  color:var(--yellow);
  font-weight:700;
}

/* SOBRE */

.sobre-section{
  background:#17191F;
  color:rgba(255,255,255,.82);
  padding:80px 0;
}

.sobre-grid{
  display:grid;
  grid-template-columns:1fr 1px 1fr;
  gap:60px;
  align-items:start;
}

.sobre-titulo h2{
  font-size:58px;
  font-weight:300;
  line-height:.95;
  letter-spacing:-2px;
}

.sobre-titulo p{
  margin-top:50px;
  font-size:20px;
  line-height:1.55;
}

.divisor-dourado{
  width:1px;
  height:230px;
  background:var(--yellow);
}


.sobre-copy p{
  max-width:760px;
  font-size:22px;
  line-height:1.75;
  margin-bottom:14px;
}

.sobre-section .cta{
  margin-top:24px;
}

/* EXPERIÊNCIA */

.experiencia-section{
  background:var(--dark);
  color:var(--white);
  text-align:center;
  padding:80px 0 90px;
}

.experiencia-section h2{
  max-width:1200px;
  margin:0 auto 40px;
  font-size:58px;
  font-weight:300;
  line-height:1.15;
  letter-spacing:-2px;
}

.experiencia-subtitulo{
  max-width:1000px;
  margin:0 auto 40px;
  font-size:23px;
  line-height:1.5;
  color:rgba(255,255,255,.85);
  font-weight:300;
}

.cta-experiencia{
  margin-top:70px !important;
}

.subtitulo{
  color:var(--yellow);
  font-size:22px;
  margin-bottom:16px;
}

.experiencia-intro{
  color:var(--text);
  font-size:20px;
}

.logos-clientes{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin:50px 0 36px;
}

.logos-clientes div{
  min-height:78px;
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:22px;
  font-size:15px;
}

/* PLACEHOLDER */

.contato-placeholder{
  background:var(--white);
  color:var(--dark);
  padding:80px 0;
}

.contato-placeholder h2{
  font-weight:300;
  font-size:42px;
}



.linha-dourada{
  width:80px;
  height:2px;
  background:#E2B340;
  margin:40px auto 50px auto;
}

.clientes-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  margin-top:40px;
}

.clientes-grid div{

  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:center;

  padding:25px;

  color:rgba(255,255,255,.72);

  font-size:16px;
  font-weight:400;

  border-right:1px solid rgba(255,255,255,.08);

  transition:.25s ease;

}

.clientes-grid div:nth-child(5n){
  border-right:none;
}

.clientes-grid div:nth-child(-n+5){
  border-bottom:1px solid rgba(255,255,255,.08);
}

.clientes-grid div:hover{
  color:#E2B340;

  background:rgba(255,255,255,.02);

  box-shadow:
    inset 0 0 0 1px rgba(226,179,64,.25),
    0 0 20px rgba(226,179,64,.15);

  text-shadow:
    0 0 10px rgba(226,179,64,.35);

  transform:translateY(-2px);
}

.clientes-grid div{
  transition:all .3s ease;
}


/* MÉTODO */

.metodo-section{
  background:#F5F5F3;
  color:#17191F;
  padding:70px 0;
}

.metodo-grid{
  display:grid;
  grid-template-columns:420px 1px 1fr;
  gap:137px;
  align-items:stretch;
}

.metodo-head span{
  display:block;
  font-size:58px;
  font-weight:300;
  line-height:.95;
  letter-spacing:-2px;
}

.metodo-head strong{
  display:block;
  font-size:58px;
  font-weight:700;
  line-height:.95;
  color:#E2B340;
}


.icone-metodo{
  display:block;
  width:90px;
  height:auto;
  margin:0;
  opacity:.85;
}

.metodo-head{
  margin-bottom:60px;
}

.icone-metodo{
  margin:60px 0;
}

.metodo-titulo strong{
  color:#E2B340;
  font-weight:700;
  padding-top:10px;
}

.espaco{
  display:block;
  height:60px;
}

.ponto-dourado{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#E2B340;
}

.divisor-dourado{
  width:1px;
  background:#E2B340;
  height:auto;

  margin-left:-95px;
}

.metodo-item{
  margin-bottom:28px;
}

.metodo-item h3{
  font-size:28px;
  margin-bottom:0px;
  margin-top:-8px;
 }

.metodo-item p{
  margin-top:4px;
  font-size:20px;
  line-height:1.7;
}

.metodo-final{
  color:#E2B340;
  font-weight:700;
  font-size:24px;
  margin-top:10px;
}

/* PUBLICO */

.publico-section{
  background:#2B303B;
  color:#F5F5F3;
  padding:70px 0;
}

.publico-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:45px;
}

.publico-intro{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.publico-intro h2{
  font-size:58px;
  font-weight:300;
  line-height:1.05;
  margin-bottom:22px;
}

.publico-intro p{
  font-size:22px;
  line-height:1.65;
  color:white;
  max-width:1000px;
  margin:0 auto 10px;
}

.publico-listas{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;

  padding-top:30px;
  position:relative;
}

.publico-intro .cta{
  margin:35px auto 0;
  display:block;
  width:fit-content;
}

.publico-listas::before{
  content:"";
  display:block;
  width:80px;
  height:2px;
  background:#E2B340;

  position:absolute;
  top:0;
  left:50%;

  transform:translateX(-50%);
}

.publico-coluna h3{
  font-size:42px;
  margin-bottom:36px;
}

.publico-coluna h3{
  font-size:28px;
  text-align:left;
  color:var(--yellow);
}

.publico-coluna ul{
  list-style:none;
  padding:0;
}

.publico-coluna li{
  font-size:19px;
  line-height:1.6;
  margin-bottom:24px;
  padding-left:34px;
  position:relative;
}

.publico-coluna li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#E2B340;
  font-weight:700;
}

.publico-nao h3{
  color:#D94A4A;
}

.publico-nao li::before{
  content:"✕";
  color:#D94A4A;
}

.atuacao-section{
  background:#F5F5F3;
  color:#17191F;
  padding:42px 0;
}

.atuacao-header{
  max-width:900px;
  margin:0 auto 50px;
  text-align:center;
}

.atuacao-header h2{
  font-size:58px;
  font-weight:300;
  line-height:1.05;
  letter-spacing:-2px;
  color:#17191F;
  margin-bottom:15px;
}


/* ATUACAO */

.atuacao-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:30px;
  margin-top:50px;
}

.atuacao-item{
  text-align:center;
  opacity:0;
  transform:translateY(20px);
  transition:.7s ease;
}

.atuacao-item.visible{
  opacity:1;
  transform:translateY(0);
}


.atuacao-numero{
  display:block;
  color:var(--yellow);
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

.atuacao-item img{
  width:130px;
  height:130px;
  object-fit:contain;
  margin:0 auto 15px;
}

.atuacao-item h4{
  margin:0;
  font-size:15px;
  line-height:1.4;
  font-weight:600;
  color:var(--dark);
}

.atuacao-header p{
  font-size:22px;
  line-height:1.6;
  color:#555;
}

.atuacao-item.visible img{
  animation:atuacaoGlow 1.2s ease-out;
}

@keyframes atuacaoGlow{

  0%{
    filter:drop-shadow(0 0 0 rgba(214,173,58,0));
  }

  50%{
    filter:drop-shadow(0 0 18px rgba(214,173,58,.7));
  }

  100%{
    filter:drop-shadow(0 0 0 rgba(214,173,58,0));
  }

}

.atuacao-item img{
  transition:all .4s cubic-bezier(.22,1,.36,1);
}

.atuacao-item:hover img{
  transform:translateY(-2px) scale(1.03);

.atuacao-link{
  display:inline-block;
  text-decoration:none !important;
  border:none !important;
}

.atuacao-link img{
  display:block;
}

.atuacao-link:hover,
.atuacao-link:visited,
.atuacao-link:active{
  text-decoration:none !important;
}

  filter:
    drop-shadow(0 0 10px rgba(226,179,64,.22))
    drop-shadow(0 0 22px rgba(226,179,64,.10));
}

/* FUNDADORES */

.fundadores-section{
  background:#F5F5F3;
  color:#17191F;
  padding:40px 0;
}

.fundadores-section h2{
  text-align:center;
  font-size:42px;
  font-weight:300;
  margin-bottom:25px;
}

.fundadores-grid{
  display:grid;
  grid-template-columns:1fr 1px 1fr;
  gap:80px;
  max-width:1400px;
  margin:0 auto;
  align-items:start;
}

.divisor-fundadores{
  width:1px;
  background:#E2B340;
  opacity:.7;
  min-height:100%;
}

.fundador-card{
  text-align:left;
  width:100%;
}

.fundador-card img{
  width:190px;
  height:250px;
  object-fit:cover;
  border-radius:28px;
  margin-bottom:8px;
}

.fundador-card h3{
  font-size:24px;
  margin-bottom:14px;
  line-height:1.2;
}

.fundador-card p{
  font-size:16px;
  line-height:1.8;
  color:#555;
  max-width:520px;
}

.fundador-card p + p{
  margin-top:14px;
}

.fundador-card a{
  color:#E2B340;
  text-decoration:none;
  font-weight:700;
  display:inline-block;
  margin-top:10px;
}

.fundador-card:first-child{
  text-align:right;
}

.fundador-card:first-child p{
  max-width:520px;
  margin-left:auto;
  text-align:right;
}

.fundador-card:first-child h3{
  text-align:right;
}

.fundador-card:first-child a{
  text-align:right;
}

/* FAQ */

.faq-section{
  background:#17191F;
  color:#F5F5F3;
  padding:70px 0;
}

.faq-section h2{
  text-align:center;
  font-size:58px;
  font-weight:300;
  line-height:1.05;
  margin-bottom:25px;
}

.faq-list{
  max-width:750px;
  margin:0 auto;
}

.faq-list details{
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
}

.faq-list details:last-child{
  border-bottom:1px solid rgba(255,255,255,.08);
}

.faq-list summary{
  cursor:pointer;
  list-style:none;
  font-size:18px;
  font-weight:500;
  line-height:1.5;
  padding-right:40px;
  position:relative;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  color:#E2B340;
  font-size:28px;
}

.faq-list details[open] summary::after{
  content:"−";
}

.faq-list p{
  margin-top:15px;
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,.82);
}

.faq-list a{
  display:inline-block;
  margin-top:16px;
  color:#E2B340;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}
.faq-list details{
  transition:.25s ease;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.faq-list details:hover{
  padding-left:10px;
  border-left:2px solid #E2B340;
  background:rgba(255,255,255,.02);
}

.faq-list summary{
  transition:.25s ease;
  cursor:pointer;
}

.faq-list details:hover summary{
  color:#E2B340;
}

.faq-list details[open] summary{
  color:#E2B340;
}

.faq-list summary{
  list-style:none;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary::after{
  content:"+";
  float:right;
  color:#E2B340;
  font-size:24px;
  font-weight:300;
}

.faq-list details[open] summary::after{
  content:"−";
}

.faq-list summary{
  cursor:pointer;
  user-select:none;
  -webkit-user-select:none;
}



/* CONTATO */

.contato-section{
  background:#F5F5F3;
  color:#17191F;
  padding:45px 0;
  text-align:center;
}

.contato-section h2{
  font-size:42px;
  font-weight:300;
  margin-bottom:10px;
}

.contato-subtitulo{
  max-width:750px;
  margin:0 auto 25px;
  font-size:22px;
  line-height:1.7;
  color:#555;
}

.contato-form{
  width:90%;
  max-width:650px;
  margin:0 auto;
}

.contato-form input{
  width:100%;
  height:58px;
  border:none;
  border-bottom:1px solid rgba(0,0,0,.15);
  background:transparent;
  font-size:18px;
  padding:0;
  margin-bottom:18px;
  outline:none;
  transition:.25s ease;
}

.contato-form .cta{
  cursor:pointer;
}

.contato-form input:focus{
  border-color:#E2B340;
}

.contato-form .cta{
  padding:22px 42px;
  font-size:15px;
  letter-spacing:.5px;
  margin-top:10px;

  animation:ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow{

  0%,100%{
    box-shadow:0 0 0 rgba(226,179,64,0);
  }

  50%{
    box-shadow:
      0 0 14px rgba(226,179,64,.28),
      0 0 28px rgba(226,179,64,.12);
  }
}


/* FOOTER */

.site-footer{
background:#17191F;
color:rgba(255,255,255,.65);
text-align:center;
padding:40px 0;
}

.footer-linha{
width:80px;
height:2px;
background:#E2B340;
margin:0 auto 30px;
}

.site-footer p{
font-size:14px;
margin-bottom:8px;
}

.site-footer p.footer-menor{
  font-size:10px !important;
  line-height:1.4 !important;
}

.contato-form .cta:hover{
  background:#222833 !important;
  color:#E2B340 !important;
  border-color:#222833 !important;
  cursor:pointer;
}


/* ÂNCORAS MENU */

#experiencia,
#metodo,
#fundadores,
#faq,
#contato{
  scroll-margin-top:120px;
}

.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:62px;
  height:62px;
  z-index:999999;

  transition:.25s ease;
}

.whatsapp-float:hover{
  transform:translateY(-4px) scale(1.04);
}

.whatsapp-float img{
  width:100%;
  height:100%;
  display:block;
}


.menu-mobile{
  display:none;
}

/* MOBILE HONRA&JOHAN */

@media (max-width:768px){

  .container{
    width:88%;
  }

  .site-header{
    height:78px;
  }

  .header-inner{
    height:78px;
  }

  .logo img{
    height:48px;
  }

  .menu,
  .cta-menu{
    display:none;
  }

  .hamburger{
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
    color:#fff;
    font-size:32px;
  }

  .hero{
    min-height:82vh;
    padding:105px 0 45px;
    background-position:76% center;
  }

  .hero-content{
    width:88% !important;
    max-width:none !important;
    margin:0 auto !important;
    padding:0 !important;
  }

  .hero h1{
    font-size:28px;
    line-height:1.12;
    letter-spacing:-.5px;
    max-width:100%;
    margin-bottom:18px;
  }

  .hero p{
    font-size:15px;
    line-height:1.55;
  }

.sobre-copy p,
.experiencia-subtitulo,
.metodo-item p,
.publico-intro p,
.publico-coluna li,
.fundador-card p,
.faq-list p,
.contato-subtitulo{
  font-size:15px;
  line-height:1.6;
}

  .hero .destaque{
    font-size:20px !important;
    line-height:1.25 !important;
  }

.arrow{
  display:none !important;
}

  .hero .cta,
  .marketismo-section .cta,
  .cta-experiencia,
  .publico-intro .cta,
  .contato-form .cta{
    width:240px !important;
    height:58px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin:24px auto 0 auto !important;
    padding:0 16px !important;
    text-align:center !important;
    font-size:13px !important;
    line-height:1.25 !important;
    white-space:normal !important;
  }

.publico-intro h2{
  font-size:26px !important;
  line-height:1.15 !important;
  letter-spacing:-0.5px !important;
  margin-bottom:18px !important;
}

.marketismo-section{
  padding:35px 0 40px;
}

.marketismo-section h2,
.marketismo-section h3,
.marketismo-section .titulo,
.marketismo-section .destaque{
  font-size:26px !important;
  line-height:1.15 !important;
  font-weight:300 !important;
  margin-bottom:18px !important;
}

.marketismo-section p{
  font-size:15px !important;
  line-height:1.6 !important;
}

.sobre-section{
  padding:42px 0;
}

.sobre-grid{
  display:block;
}

.divisor-dourado{
  display:none;
}


.sobre-titulo p{
  margin-top:18px;
}

.sobre-subtitulo{
  margin:8px 0 24px 0;
  font-size:15px !important;
  line-height:1.6 !important;
  color:#F5F5F3 !important;
}

.sobre-copy{
  margin-top:0;
}

.sobre-copy p{
  font-size:15px;
  line-height:1.6;
  margin-bottom:18px;
}

.sobre-copy p:last-child{
  margin-bottom:0;
}

.sobre-quote{
    position:relative;

    margin:22px 0;
    padding:14px 14px;
    max-width:280px;

    border-radius:18px;
    overflow:hidden;

   background:
radial-gradient(
circle at top right,
rgba(226,179,64,.13) 0%,
rgba(226,179,64,.06) 22%,
rgba(226,179,64,.02) 45%,
rgba(226,179,64,0) 72%
);	

    box-shadow:
      inset 0 0 12px rgba(226,179,64,.025),
      0 0 10px rgba(226,179,64,.04);
}

.sobre-quote::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:1px;

    background:radial-gradient(
        circle at top right,
        rgba(226,179,64,.75) 0%,
        rgba(226,179,64,.35) 35%,
        rgba(226,179,64,.18) 100%
    );

    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    pointer-events:none;
}

.sobre-quote strong{
    font-size:18px;
    line-height:1.3;
    font-weight:300;
}

.sobre-quote strong br + *{
    color:var(--yellow);
    font-weight:700;
}

.hands-on{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:28px;
}

.hands-on img{
    width:42px;
    height:auto;
}

.hands-on strong{
    color:var(--yellow);
    font-size:18px;
    font-weight:600;
}


.experiencia-section{
  padding:42px 0;
}


.experiencia-subtitulo{
  text-align:left;
  font-size:15px;
  line-height:1.6;
  margin:0;
}

.experiencia-section .linha-dourada{
  display:none !important;
}

.faq-section .linha-dourada{
  width:80px !important;
  margin:20px 0 25px 5% !important;
}

.faq-section h2{
  width:90%;
  margin:0 auto 12px;
  text-align:left;
}

.clientes-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  margin-top:25px;
}
  .clientes-grid div{
    min-height:54px;
    padding:14px 12px;
    font-size:13px;
    text-align:left;
    justify-content:flex-start;
    border-right:1px solid rgba(255,255,255,.08) !important;
    border-bottom:1px solid rgba(255,255,255,.08) !important;
  }

  .clientes-grid div:nth-child(2n){
    border-right:none !important;
  }

  .clientes-grid div:nth-last-child(-n+2){
    border-bottom:none !important;
  }

.metodo-section{
  padding:42px 0;
}

.metodo-grid{
  display:block;
}

.metodo-titulo{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

.metodo-head{
  margin-bottom:10px !important;
}

.metodo-head span,
.metodo-head strong{
  display:block;
  font-size:32px;
  line-height:.95;
  letter-spacing:-1px;
}

.metodo-head strong{
  color:var(--yellow);
  font-weight:700;
}

.metodo-titulo .icone-metodo{
  display:none !important;
}

.metodo-copy{
  margin-top:0 !important;
  padding-top:0 !important;
}

.metodo-item{
  margin-bottom:18px;
}

.metodo-item h3{
  font-size:22px;
  margin-top:0 !important;
  margin-bottom:4px;
}

.metodo-item p{
  font-size:15px;
  line-height:1.6;
}

.metodo-final{
  font-size:16px;
}

  .publico-intro,
  .publico-intro p{
    text-align:left;
  }

  .publico-intro p{
    font-size:15px;
    line-height:1.6;
  }

  .publico-listas{
    display:block;
  }

  .publico-listas::before{
    left:0 !important;
    transform:none !important;
  }

  .publico-coluna{
    margin-bottom:30px;
  }

.publico-section{
  padding:40px 0 30px;
}

  .publico-coluna h3{
    font-size:24px;
    text-align:left;
    margin-bottom:20px;
}

  .publico-coluna li{
    font-size:15px;
    line-height:1.55;
    text-align:left;
  }

   .cta-publico{
    margin-top:-15px !important;
  }

  .cta-publico .cta{
    width:auto !important;
    max-width:260px;
    padding:16px 20px;
    line-height:1.15;
    font-size:13px;
  }

  .fundadores-section{
    padding:38px 0;
  }


  .fundadores-grid{
    display:block;
  }

  .divisor-fundadores{
    display:none;
  }

 .fundador-card,
.fundador-card:first-child{
  text-align:left !important;
  padding:0;
  margin-bottom:36px;
}

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

  .fundador-card:first-child p,
  .fundador-card:first-child h3{
    text-align:left !important;
    margin-left:0;
  }

  .fundador-card img{
    width:120px;
    height:160px;
    border-radius:14px;
    margin-bottom:14px;
  }

  .fundador-card h3{
    font-size:20px;
  }

  .faq-section{
    padding:42px 0;
  }

  .faq-list{
    width:90%;
    margin:0 auto;
    padding:0;
  }

  .faq-list summary{
    font-size:15px;
    line-height:1.45;
  }


.sobre-titulo h2,
.experiencia-section h2,
.metodo-titulo h2,
.fundadores-section h2,
.faq-section h2,
.contato-section h2{
  font-size:26px;
  line-height:1.15;
  font-weight:300;
  text-align:left;
  letter-spacing:-0.5px;
  margin-bottom:18px;
}

.contato-section{
  padding:38px 0;
  text-align:left;
}

.contato-section h2{
  width:86%;
  margin:0 auto 12px;
}

.contato-subtitulo{
  width:86%;
  margin:0 auto 25px;
  text-align:left;
}

.contato-form{
  width:86%;
  margin:0 auto;
}

.contato-form .cta{
  margin-top:10px !important;
}
  .whatsapp-float{
    width:50px;
    height:50px;
    right:15px;
    bottom:15px;
  }

.menu-mobile{
  display:none;

  position:fixed;

  top:78px;
  left:0;

  width:100%;

  background:#17191F;

  z-index:9999;
}


.menu-mobile.ativo{
  display:block;
}

.menu-mobile a{
  display:block;
  padding:18px 24px;
  color:#F5F5F3;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.menu-mobile-cta{
  display:block;
  margin:18px;
  width:220px;
  padding:8px 20px !important;

  background:#E2B340;
  color:#17191F !important;

  text-align:center;
  font-size:13px;
  font-weight:600;

  border:none;
}


.atuacao-grid{
  grid-template-columns:repeat(2,1fr);
  gap:25px 15px;
  margin-top:25px;
}

.atuacao-item img{
  width:90px;
  height:90px;
  display:block;
}

.atuacao-item h4{
  font-size:12px;
}

.atuacao-section{
  padding:42px 0;
}

.atuacao-header{
  width:100%;
  max-width:100%;
  margin:0 0 25px 0;
  text-align:left;
}

.atuacao-header h2{
  font-size:26px !important;
  line-height:1.15 !important;
  letter-spacing:-0.5px !important;
  margin-bottom:12px !important;
  text-align:left !important;
}

.atuacao-header p{
  font-size:15px;
  line-height:1.6;
  text-align:left;
  margin:0;
}

.atuacao-grid{
  grid-template-columns:repeat(2,1fr);
  gap:25px 15px;
  margin-top:20px;
}

}