@font-face{font-family:'Bebas Neue';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/bebas-neue-400.woff2) format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/montserrat-400.woff2) format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/montserrat-500.woff2) format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:600;font-display:swap;src:url(../fonts/montserrat-600.woff2) format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:700;font-display:swap;src:url(../fonts/montserrat-700.woff2) format('woff2');}
  :root{
    --dark:#121212;
    --orange:#f1430d;
    --white:#ffffff;
    --maxw:1440px;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  section[id],#servicos{scroll-margin-top:20px;}
  body{
    font-family:'Montserrat',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;
  }
  img{max-width:100%;display:block;}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  .container{
    width:100%;
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 40px;
  }

  /* ===================== HEADER ===================== */
  .site-header{
    position:absolute;
    top:0;left:0;right:0;
    z-index:20;
    background:var(--dark);
    height:105px;
  }
  .site-header .container{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .logo{width:172px;flex-shrink:0;}
  .logo svg{width:100%;height:auto;display:block;}
  .nav{
    display:flex;
    align-items:center;
    gap:50px;
  }
  .nav a{
    font-size:18px;
    font-weight:400;
    color:var(--white);
    position:relative;
    white-space:nowrap;
    transition:color .2s ease;
  }
  .nav a:hover{color:var(--orange);}
  .nav a.active::after{
    content:"";
    position:absolute;
    left:0;right:0;
    bottom:-6px;
    height:2px;
    background:var(--white);
  }
  .nav-toggle,.nav-check{display:none;}

  /* ===================== HERO ===================== */
  .hero{
    position:relative;
    background:var(--dark) url("../img/hero-bg.jpg") no-repeat;
    background-size:cover;
    background-position:center right;
  }
  .hero__inner{
    position:relative;
    max-width:var(--maxw);
    margin:0 auto;
    min-height:827px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:160px 40px 90px;
  }
  .hero__content{
    width:100%;
    max-width:800px;
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }
  .hero__title{
    align-self:stretch;
    min-width:0;
    font-family:'Bebas Neue',sans-serif;
    font-weight:400;
    line-height:.92;
    text-align:center;
    white-space:normal;
    overflow:visible;
    color:var(--white);
    font-size:clamp(52px,9vw,124px);
    letter-spacing:1px;
  }
  .hero__subtitle{
    margin:26px auto 0;
    max-width:800px;
    font-size:clamp(16px,1.6vw,20px);
    font-weight:400;
    line-height:1.4;
    text-align:center;
    color:var(--white);
  }
  .btn-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--orange);
    color:var(--white);
    font-weight:700;
    font-size:18px;
    letter-spacing:.5px;
    height:72px;
    width:341px;
    max-width:100%;
    border-radius:10px;
    border:none;
    cursor:pointer;
    margin:36px auto 0;
    transition:transform .15s ease,filter .2s ease;
  }
  .btn-cta:hover{filter:brightness(1.08);transform:translateY(-2px);}
  .hero__scroll{
    margin:48px auto 0;
    width:32px;height:32px;
  }
  .hero__scroll svg{width:100%;height:100%;display:block;animation:bob 1.8s ease-in-out infinite;}
  @keyframes bob{0%,100%{transform:translateY(0);}50%{transform:translateY(6px);}}

  /* ===================== RESPONSIVE ===================== */
  @media (max-width:1024px){
    .container{padding:0 28px;}
    .nav{gap:32px;}
    .nav a{font-size:16px;}
  }
  @media (max-width:820px){
    .site-header .container{position:relative;}
    .nav-toggle{
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:5px;
      width:40px;height:40px;
      cursor:pointer;
    }
    .nav-toggle span{
      display:block;height:2px;width:26px;
      background:var(--white);border-radius:2px;
      transition:.25s ease;
    }
    .nav{
      position:absolute;
      top:105px;left:0;right:0;
      flex-direction:column;
      gap:0;
      background:var(--dark);
      max-height:0;
      overflow:hidden;
      transition:max-height .3s ease;
    }
    .nav a{
      width:100%;
      padding:16px 28px;
      border-top:1px solid rgba(255,255,255,.08);
      font-size:16px;
    }
    .nav a.active::after{display:none;}
    .nav-check:checked ~ .nav{max-height:400px;}
    .nav-check:checked ~ .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg);}
    .nav-check:checked ~ .nav-toggle span:nth-child(2){opacity:0;}
    .nav-check:checked ~ .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
    .hero__inner{min-height:560px;padding:150px 28px 70px;justify-content:flex-end;}
    .hero__title{text-align:center;}
    .hero{background-position:center center;}
  }
  @media (max-width:480px){
    .container{padding:0 20px;}
    .logo{width:130px;}
    .hero__inner{min-height:480px;padding:130px 20px 50px;}
    .btn-cta{width:100%;}
  }

  /* ===================== QUEM SOMOS ===================== */
  .quem-somos{
    position:relative;
    background:#ffffff;
    color:#232323;
    overflow:hidden;
    padding:84px 40px 92px;
  }
  .qs-inner{max-width:var(--maxw);margin:0 auto;position:relative;}
  .qs-astro{
    position:absolute;
    top:40px;right:20px;
    width:262px;
    pointer-events:none;
    user-select:none;
  }
  .qs-logo{width:210px;height:auto;margin:0 auto;display:block;position:relative;}
  .qs-title{
    font-family:'Bebas Neue',sans-serif;
    font-weight:400;
    font-size:52px;
    letter-spacing:1px;
    color:#121212;
    text-align:center;
    margin-top:26px;
  }
  .qs-text{
    max-width:620px;
    margin:24px auto 0;
    text-align:center;
    font-size:18px;
    line-height:1.5;
    color:#232323;
  }
  .qs-text strong{font-weight:700;}
  .qs-chevron{
    display:block;
    margin:38px auto 6px;
    width:26px;height:auto;
  }
  .qs-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:46px 24px;
    max-width:1210px;
    margin:64px auto 0;
  }
  .qs-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:16px;
  }
  .qs-item img{width:68px;height:68px;display:block;}
  .qs-item p{
    font-size:16px;
    line-height:1.3;
    color:#232323;
    max-width:210px;
  }
  .qs-item strong{font-weight:700;}

  @media (max-width:1024px){
    .qs-grid{grid-template-columns:repeat(3,1fr);gap:44px 20px;max-width:760px;}
    .qs-astro{width:190px;top:10px;}
  }
  @media (max-width:640px){
    .quem-somos{padding:60px 22px 70px;}
    .qs-astro{width:120px;top:0;right:6px;opacity:.9;}
    .qs-grid{grid-template-columns:repeat(2,1fr);gap:38px 16px;max-width:420px;}
    .qs-title{font-size:42px;}
    .qs-text{font-size:16px;}
  }


  /* ===================== COMO A 7G TRANSFORMA (bloco laranja) ===================== */
  .transforma{
    position:relative;
    background:linear-gradient(145deg,#ee450c 0%,#d33604 100%);
    color:#ffffff;
    overflow:hidden;
    padding:82px 40px 88px;
  }
  .tr-inner{max-width:1216px;margin:0 auto;}
  .tr-head{
    display:flex;
    align-items:center;
    gap:34px;
  }
  .tr-title{
    font-family:'Bebas Neue',sans-serif;
    font-weight:400;
    font-size:48px;
    line-height:1.05;
    letter-spacing:1px;
    flex:0 0 auto;
    max-width:460px;
  }
  .tr-line{flex:0 0 126px;height:2px;background:rgba(255,255,255,.55);}
  .tr-desc{
    flex:1;
    font-size:16px;
    line-height:1.55;
    color:#fff;
  }
  .tr-stats{display:flex;gap:32px;margin-top:40px;}
  .stat-card{
    flex:1;
    background:rgba(255,255,255,.12);
    border-radius:10px;
    min-height:184px;
    display:flex;flex-direction:column;
    align-items:center;justify-content:center;
    gap:10px;padding:30px;text-align:center;
  }
  .stat-num{font-family:'Bebas Neue',sans-serif;font-size:72px;line-height:.95;letter-spacing:1px;}
  .stat-label{font-size:14px;letter-spacing:1.5px;font-weight:500;}
  .tr-sep{display:block;margin:44px auto 0;width:26px;height:auto;opacity:.85;}

  .partners{margin-top:74px;text-align:center;}
  .partners-eyebrow{
    display:inline-block;color:rgba(255,255,255,.85);
    font-size:13px;font-weight:700;letter-spacing:3px;text-transform:uppercase;
    margin-bottom:14px;
  }
  .partners-title{
    font-family:'Bebas Neue',sans-serif;font-weight:400;
    font-size:46px;letter-spacing:1.5px;color:#fff;line-height:1.05;
  }
  .partners-title::after{
    content:"";display:block;width:66px;height:3px;border-radius:2px;
    background:rgba(255,255,255,.9);margin:18px auto 0;
  }
  .partners-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
    max-width:980px;margin:46px auto 0;
  }
  .partner{
    margin:0;display:flex;flex-direction:column;text-align:center;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.16);
    border-radius:20px;overflow:hidden;
    transition:transform .28s ease,border-color .28s ease;
  }
  .partner:hover{
    transform:translateY(-6px);
    border-color:rgba(255,255,255,.3);
  }
  .partner-photo{overflow:hidden;}
  .partner-photo img{
    width:100%;aspect-ratio:1/1;object-fit:cover;display:block;
    transition:transform .5s ease;
  }
  .partner:hover .partner-photo img{transform:scale(1.05);}
  .partner-body{
    flex:1;display:flex;flex-direction:column;align-items:center;
    padding:24px 22px 28px;
  }
  .partner-body figcaption{
    color:#fff;font-weight:700;font-size:19px;letter-spacing:.3px;
  }
  .partner-rule{
    display:block;width:36px;height:3px;border-radius:2px;
    background:#fff;opacity:.5;margin:13px 0 15px;
  }
  .partner-desc{
    margin:0;color:rgba(255,255,255,.9);
    font-size:14px;line-height:1.6;
  }

  .res-title{
    font-family:'Bebas Neue',sans-serif;font-weight:400;
    font-size:48px;letter-spacing:1px;text-align:center;margin-top:30px;
  }
  .res-sub{
    text-align:center;max-width:900px;margin:16px auto 0;
    font-size:16px;line-height:1.5;
  }
  .res-sub strong,.res-desc strong{font-weight:700;}
  .team-carousel{display:flex;align-items:center;gap:14px;margin-top:44px;}
  .team-arrow{
    flex:0 0 auto;width:34px;height:34px;
    display:flex;align-items:center;justify-content:center;
    color:#fff;opacity:.85;cursor:pointer;background:none;border:none;
  }
  .team-arrow svg{width:100%;height:100%;}
  .team-cards{
    flex:1;min-width:0;overflow:hidden;
  }
  .team-track{
    display:flex;gap:24px;will-change:transform;
  }
  .team-card{
    flex:0 0 calc((100% - 72px) / 4);
    background:rgba(255,255,255,.12);border-radius:10px;min-height:184px;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:22px;padding:24px 16px;text-align:center;
  }
  .team-card img{width:68px;height:68px;display:block;}
  .team-card p{font-size:16px;line-height:1.3;}
  .team-card strong{font-weight:700;}
  .res-desc{text-align:center;max-width:900px;margin:44px auto 0;font-size:16px;line-height:1.5;}
  .btn-dark{
    display:flex;align-items:center;justify-content:center;
    background:#121212;color:#fff;font-weight:700;font-size:18px;letter-spacing:.5px;
    height:64px;width:341px;max-width:100%;border-radius:10px;
    margin:40px auto 0;transition:transform .15s ease,filter .2s ease;
  }
  .btn-dark:hover{filter:brightness(1.25);transform:translateY(-2px);}

  @media (max-width:1024px){
    .tr-head{flex-direction:column;align-items:center;gap:18px;}
    .tr-line{display:none;}
    .tr-title{max-width:none;text-align:center;}
    .tr-desc{text-align:center;}
    .team-card{flex-basis:calc((100% - 24px) / 2);}
  }
  @media (max-width:640px){
    .transforma{padding:58px 22px 66px;}
    .tr-stats{flex-direction:column;gap:18px;}
    .tr-title,.res-title{font-size:38px;}
    .stat-num{font-size:60px;}
    .team-track{gap:16px;}
    .team-card{flex-basis:100%;}
    .partners-title{font-size:34px;}
    .partners-grid{grid-template-columns:1fr;gap:22px;max-width:340px;}
  }


  /* ===================== DIFERENCIAIS + MISSÃO/VISÃO ===================== */
  .diferenciais{background:#ffffff;color:#232323;padding:84px 40px 80px;}
  .dif-inner{
    max-width:1216px;margin:0 auto;
    display:grid;grid-template-columns:minmax(0,592px) 1fr;gap:64px;align-items:center;
  }
  .dif-photo{width:100%;height:auto;border-radius:14px;display:block;object-fit:cover;}
  .dif-title{font-family:'Bebas Neue',sans-serif;font-weight:400;font-size:48px;letter-spacing:1px;color:#121212;margin-bottom:28px;}
  .dif-item{display:flex;gap:22px;align-items:flex-start;margin-bottom:24px;}
  .dif-item:last-child{margin-bottom:0;}
  .dif-item img{width:84px;height:84px;flex:0 0 auto;display:block;}
  .dif-item h3{font-size:22px;font-weight:700;color:#121212;margin-bottom:6px;}
  .dif-item p{font-size:16px;line-height:1.5;color:#333;max-width:460px;}

  .mv-grid{max-width:1216px;margin:56px auto 0;display:grid;grid-template-columns:1fr 1fr;gap:32px;}
  .mv-card{
    background:#f1430d;border-radius:14px;padding:34px 36px;
    display:flex;gap:24px;align-items:flex-start;color:#fff;
  }
  .mv-card img{width:96px;height:96px;flex:0 0 auto;display:block;}
  .mv-card h3{font-size:22px;font-weight:700;margin-bottom:8px;}
  .mv-card p{font-size:15px;line-height:1.5;}

  /* ===================== NOSSO TRABALHO ===================== */
  .trabalho{background:#fff;color:#121212;padding:24px 40px 80px;text-align:center;}
  .trabalho h2,.depoimentos h2{
    font-family:'Bebas Neue',sans-serif;font-weight:400;font-size:48px;letter-spacing:1px;color:#121212;margin-bottom:44px;
  }
  .trabalho-media{
    max-width:800px;margin:0 auto;aspect-ratio:800/416;background:#6e6e8a;border-radius:14px;
    display:flex;align-items:center;justify-content:center;overflow:hidden;
  }
  .play-btn{width:84px;height:84px;opacity:.9;}

  /* ===================== DEPOIMENTOS ===================== */
  .depoimentos{background:#fff;padding:8px 40px 92px;text-align:center;}
  .dep-grid{max-width:1216px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:32px;}
  .dep-card{aspect-ratio:384/202;background:#6e6e8a;border-radius:12px;}

  /* ===================== FICOU INTERESSADO (WhatsApp) ===================== */
  .interessado{background:#f1430d;color:#fff;text-align:center;padding:82px 40px 90px;}
  .interessado h2{font-family:'Bebas Neue',sans-serif;font-weight:400;font-size:52px;letter-spacing:1px;}
  .interessado p{margin-top:8px;font-size:18px;}
  .btn-whatsapp{
    display:inline-flex;align-items:center;justify-content:center;gap:12px;
    background:#25d366;color:#fff;font-weight:700;font-size:18px;letter-spacing:.3px;
    height:66px;padding:0 42px;border-radius:12px;margin-top:34px;
    box-shadow:0 8px 24px rgba(0,0,0,.18);
    transition:transform .15s ease,filter .2s ease;
  }
  .btn-whatsapp:hover{filter:brightness(1.05);transform:translateY(-2px);}
  .btn-whatsapp svg{width:26px;height:26px;flex:0 0 auto;}

  /* ===================== FOOTER ===================== */
  .footer{background:#151719;color:#fff;text-align:center;padding:54px 40px;}
  .footer p{font-size:16px;color:#d4d4d4;margin-bottom:26px;}
  .footer img{height:40px;width:auto;margin:0 auto;display:block;}

  @media (max-width:1024px){
    .dif-inner{grid-template-columns:1fr;gap:36px;}
    .dif-title{text-align:center;}
    .mv-grid{grid-template-columns:1fr;gap:20px;}
    .dep-grid{grid-template-columns:1fr;max-width:460px;gap:20px;}
  }
  @media (max-width:640px){
    .diferenciais{padding:60px 22px 60px;}
    .dif-title,.trabalho h2,.depoimentos h2{font-size:38px;}
    .dif-item{gap:16px;}
    .dif-item img{width:64px;height:64px;}
    .mv-card img{width:76px;height:76px;}
    .interessado h2{font-size:40px;}
    .trabalho,.depoimentos{padding:20px 22px 60px;}
  }

  .btn-cta,.btn-dark{gap:12px;}
  .btn-cta .wa-ico,.btn-dark .wa-ico{width:24px;height:24px;flex:0 0 auto;}

  .wa-float{
    position:fixed;right:24px;bottom:24px;z-index:999;
    width:60px;height:60px;border-radius:50%;
    background:#25D366;color:#fff;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 8px 24px rgba(0,0,0,.28);
    transition:transform .2s ease,box-shadow .2s ease;
    animation:wa-pulse 2.4s ease-out infinite;
  }
  .wa-float:hover{transform:scale(1.08);box-shadow:0 12px 30px rgba(0,0,0,.35);}
  .wa-float svg{width:34px;height:34px;}
  @keyframes wa-pulse{
    0%{box-shadow:0 8px 24px rgba(0,0,0,.28),0 0 0 0 rgba(37,211,102,.55);}
    70%{box-shadow:0 8px 24px rgba(0,0,0,.28),0 0 0 16px rgba(37,211,102,0);}
    100%{box-shadow:0 8px 24px rgba(0,0,0,.28),0 0 0 0 rgba(37,211,102,0);}
  }
  @media (max-width:640px){
    .wa-float{right:16px;bottom:16px;width:56px;height:56px;}
    .wa-float svg{width:32px;height:32px;}
  }
  @media (prefers-reduced-motion:reduce){
    .wa-float{animation:none;}
  }
