:root{
  --lla-dark:#16385f;
  --lla-dark-2:#102a46;
  --lla-blue:#3f8fe8;
  --lla-cyan:#58c3df;
  --lla-green:#9ed43a;
  --lla-light:#f4f8fb;
  --lla-text:#243447;
  --lla-muted:#5f7185;
  --lla-white:#ffffff;
  --lla-border:#dbe6ee;
  --lla-radius:18px;
  --lla-shadow:0 12px 30px rgba(16,42,70,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:auto !important;}

body{
  margin:0;
  font-family:'Manrope',Arial,sans-serif;
  background:var(--lla-light);
  color:var(--lla-text);
}

a{text-decoration:none}
img{max-width:100%;height:auto}

.container{
  width:min(1200px,92%);
  margin:0 auto;
}

h1,h2,h3,h4,h5,h6,
.main-menu a,
.btn,
.section-head h2{
  font-family:'Montserrat',Arial,sans-serif;
}

/* ACESSIBILIDADE */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:12px 16px;
  background:#fff;
  color:var(--lla-dark);
  border-radius:10px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  z-index:10001;
}

[id]{
  scroll-margin-top:110px;
}

/* TRANSIÇÃO GLOBAL ENTRE PÁGINAS */
html.is-transitioning,
html.is-transitioning body{
  overflow:hidden;
}

#page-transition-wrapper{
  opacity:0;
  transform:translateY(18px);
  transition:
    opacity .45s ease,
    transform .45s ease;
  will-change:opacity, transform;
}

html.is-loaded #page-transition-wrapper{
  opacity:1;
  transform:translateY(0);
}

html.is-transitioning #page-transition-wrapper{
  opacity:0;
  transform:translateY(16px);
}

#page-transition-overlay{
  position:fixed;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,0) 0%,rgba(244,248,251,.55) 100%);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:9998;
  transition:
    opacity .35s ease,
    visibility .35s ease;
}

html.is-transitioning #page-transition-overlay{
  opacity:1;
  visibility:visible;
}

@media (prefers-reduced-motion: reduce){
  #page-transition-wrapper,
  #page-transition-overlay{
    transition:none !important;
  }
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  box-shadow:0 4px 18px rgba(16,42,70,.06);
}

.header-wrap{
  min-height:84px;
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  align-items:center;
  gap:24px;
  position:relative;
}

.site-branding{
  display:flex;
  align-items:center;
  min-width:220px;
  max-width:220px;
  overflow:hidden;
}

.custom-logo{
  max-width:170px;
  height:auto;
  display:block;
}

.main-nav{
  min-width:0;
}

.main-menu{
  list-style:none;
  margin:0;
  padding:0;
}

.main-menu li{
  margin:0;
  padding:0;
  position:relative;
}

.main-menu a{
  color:var(--lla-dark);
  font-weight:700;
}

.main-menu a:hover{
  color:var(--lla-blue);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-actions .btn{
  min-height:48px;
  white-space:nowrap;
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  margin-left:auto;
}

.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:var(--lla-dark);
  margin:5px 0;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:14px;
  font-weight:700;
  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--lla-blue),var(--lla-cyan));
  color:#fff;
}

.btn-secondary{
  background:linear-gradient(135deg,var(--lla-green),#7fc92b);
  color:#fff;
}

/* DESKTOP HEADER */
@media (min-width:1281px){
  .menu-toggle{
    display:none !important;
  }

  .main-nav{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) 350px;
    align-items:center;
    column-gap:20px;
    width:100%;
    min-width:0;
    overflow:visible;
  }

  .main-menu{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:18px !important;
    flex-wrap:nowrap !important;
    width:100%;
    min-width:0;
    padding-left:0 !important;
    overflow:visible !important;
  }

  .main-menu > li{
    flex:0 0 auto;
  }

  .main-menu > li > a{
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
    font-size:16px;
    line-height:1.2;
    padding:10px 2px;
  }

  .main-menu .menu-item-has-children > a::after{
    content:"▾";
    font-size:12px;
    line-height:1;
    color:var(--lla-muted);
  }

  .main-menu .sub-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    margin:0;
    padding:10px 0;
    list-style:none;
    background:#fff;
    border:1px solid var(--lla-border);
    border-radius:14px;
    box-shadow:0 14px 30px rgba(16,42,70,.12);
    z-index:1100;
  }

  .main-menu .sub-menu li{
    width:100%;
  }

  .main-menu .sub-menu a{
    display:block;
    padding:11px 16px;
    font-size:15px;
    line-height:1.35;
    white-space:nowrap;
  }

  .main-menu .menu-item-has-children:hover > .sub-menu,
  .main-menu .menu-item-has-children:focus-within > .sub-menu{
    display:block;
  }

  .nav-actions{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:12px !important;
    width:350px !important;
    min-width:350px !important;
    margin:0 !important;
    padding:0 !important;
    border:none !important;
  }

  .nav-actions .btn{
    width:auto !important;
    padding:14px 18px !important;
  }
}

/* MOBILE / TABLET HEADER */
@media (max-width:1280px){
  .header-wrap{
    grid-template-columns:minmax(0,1fr) auto;
    gap:14px;
  }

  .site-branding{
    min-width:0;
    max-width:none;
    overflow:visible;
  }

  .custom-logo{
    max-width:160px;
  }

  .menu-toggle{
    display:block !important;
    z-index:1003;
  }

  .main-nav{
    display:none !important;
    position:absolute !important;
    top:calc(100% + 10px) !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    background:rgba(255,255,255,.99) !important;
    border:1px solid rgba(219,230,238,.95) !important;
    border-radius:18px !important;
    box-shadow:0 18px 40px rgba(16,42,70,.12) !important;
    padding:18px !important;
    z-index:1002 !important;
    overflow:hidden !important;
  }

  .main-nav.is-open{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:18px !important;
  }

  .main-menu{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    width:100% !important;
    gap:0 !important;
    margin:0 !important;
    padding:0 !important;
  }

  .main-menu > li{
    width:100% !important;
    border-bottom:1px solid var(--lla-border) !important;
    padding:0 !important;
  }

  .main-menu > li:last-child{
    border-bottom:none !important;
  }

  .main-menu > li > a{
    display:block !important;
    width:100% !important;
    padding:14px 4px !important;
    font-size:16px !important;
    line-height:1.4 !important;
    white-space:normal !important;
  }

  .main-menu .sub-menu{
    display:block !important;
    position:static !important;
    margin:0 0 10px 0 !important;
    padding:0 0 0 14px !important;
    list-style:none !important;
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
  }

  .main-menu .sub-menu li{
    border:none !important;
    margin:0 !important;
    padding:0 !important;
  }

  .main-menu .sub-menu a{
    display:block !important;
    padding:10px 4px !important;
    font-size:15px !important;
    line-height:1.35 !important;
    color:var(--lla-muted) !important;
  }

  .main-menu .menu-item-has-children > a::after{
    content:none !important;
  }

  .nav-actions{
    display:flex !important;
    flex-direction:column !important;
    width:100% !important;
    gap:12px !important;
    margin:0 !important;
    padding-top:12px !important;
    border-top:1px solid var(--lla-border) !important;
  }

  .nav-actions .btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    padding:14px 18px !important;
    text-align:center !important;
  }

  .site-header .main-nav,
  .site-header .main-nav.is-open,
  .site-header .main-menu,
  .site-header .nav-actions{
    float:none !important;
    clear:both !important;
  }
}

/* HERO */
.hero-section{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-slider,
.hero-slide{
  position:absolute;
  inset:0;
}

.hero-slide{
  opacity:0;
  visibility:hidden;
  background-size:cover;
  background-position:center;
  transition:opacity .8s ease,visibility .8s ease;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
}

.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(10,27,46,.72),rgba(10,27,46,.76));
}

.hero-content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  padding:90px 0;
}

.hero-tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero-text h1{
  font-size:56px;
  line-height:1.1;
  color:#fff;
  margin:0 0 18px;
}

.hero-text p{
  font-size:19px;
  line-height:1.7;
  color:rgba(255,255,255,.92);
  margin:0 0 28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-highlight{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  padding:28px;
  backdrop-filter:blur(10px);
}

.hero-highlight h2,
.hero-highlight h3,
.hero-highlight p,
.hero-highlight li{
  color:#fff;
}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}

.hero-dot{
  width:12px;
  height:12px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  cursor:pointer;
}

.hero-dot.active{
  background:#fff;
}

/* SECTIONS */
.section{
  padding:84px 0;
}

.section-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 46px;
}

.section-head h2{
  font-size:38px;
  color:var(--lla-dark);
  margin:0 0 14px;
}

.section-head p{
  font-size:18px;
  color:var(--lla-muted);
  margin:0;
}

.section-head-light h2,
.section-head-light p{
  color:#fff;
}

.section-light{
  background:var(--lla-light);
}

.section-white{
  background:#fff;
}

.section-dark{
  background:linear-gradient(135deg,#143357 0%,#1b4d83 100%);
}

.section-cta{
  background:linear-gradient(135deg,#eaf7fb 0%,#f7fbff 100%);
}

/* GRIDS */
.cards-grid,
.mini-grid,
.steps-grid,
.footer-grid{
  display:grid;
  gap:24px;
}

.cards-grid{
  grid-template-columns:repeat(3,1fr);
}

.mini-grid{
  grid-template-columns:repeat(4,1fr);
}

.steps-grid{
  grid-template-columns:repeat(3,1fr);
}

.footer-grid{
  grid-template-columns:1.2fr .8fr .9fr;
  align-items:start;
}

/* BASE CARDS */
.card,
.mini-card{
  background:#fff;
  border:1px solid var(--lla-border);
  border-radius:18px;
  box-shadow:var(--lla-shadow);
  padding:30px;
}

.card h3,
.mini-card h3{
  font-size:22px;
  color:var(--lla-dark);
  margin:0 0 12px;
}

.card p,
.mini-card p{
  color:var(--lla-muted);
  margin:0;
  line-height:1.7;
}

/* CTA */
.cta-box{
  background:linear-gradient(135deg,var(--lla-dark) 0%,#1b4d83 100%);
  border-radius:28px;
  padding:52px;
  text-align:center;
  box-shadow:0 20px 50px rgba(16,42,70,.18);
}

.cta-box h2{
  font-size:40px;
  color:#fff;
  margin:0 0 14px;
}

.cta-box p{
  font-size:18px;
  color:rgba(255,255,255,.9);
  margin:0 0 26px;
}

.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

/* FOOTER */
.site-footer{
  background:linear-gradient(135deg,#143357 0%, #1b4d83 100%);
  padding:56px 0 0;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4{
  font-size:18px;
  color:var(--lla-dark);
  margin:0 0 18px;
}

.footer-brand p,
.footer-contact p{
  margin:0 0 14px;
  color:var(--lla-text);
  line-height:1.7;
}

.footer-brand-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  margin-top:18px;
}

.footer-brand-meta a,
.footer-brand-meta span{
  color:var(--lla-muted);
  font-size:14px;
  transition:color .2s ease;
}

.footer-brand-meta a:hover{
  color:var(--lla-dark);
}

/* Links rápidos do rodapé */
.footer-links .footer-menu,
.footer-links .footer-menu ul{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}

.footer-links .footer-menu > li{
  margin:0 0 10px 0 !important;
  padding:0 !important;
}

.footer-links .footer-menu > li > a{
  color:var(--lla-dark);
  font-weight:700;
  display:block;
  padding:0;
}

.footer-links .footer-menu .sub-menu{
  margin-top:8px !important;
  padding-left:14px !important;
}

.footer-links .footer-menu .sub-menu li{
  margin:0 0 8px 0 !important;
}

.footer-links .footer-menu .sub-menu a{
  color:var(--lla-muted);
  font-weight:500;
  display:block;
}

/* FOOTER SOCIAL */
.footer-social{
  display:flex;
  align-items:center;
  gap:10px;
  margin:12px 0 18px;
  flex-wrap:wrap;
}

.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px !important;
  height:36px !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
  line-height:0;
  overflow:hidden;
  transition:transform .25s ease, opacity .25s ease;
}

.footer-social a:hover{
  transform:translateY(-3px) scale(1.04);
  opacity:.96;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
}

.footer-social img{
  display:block;
  width:34px !important;
  height:34px !important;
  max-width:34px !important;
  max-height:34px !important;
  object-fit:contain !important;
}

.footer-bottom{
  border-top:1px solid rgba(22,56,95,.10);
  padding:18px 0;
  margin-top:26px;
}

.footer-bottom-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-copy{
  margin:0;
  color:var(--lla-muted);
  font-size:14px;
}

.footer-legal{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-legal a,
.footer-legal span{
  color:var(--lla-muted);
  font-size:14px;
  transition:color .2s ease;
}

.footer-legal a:hover{
  color:var(--lla-dark);
}

/* HERO CHECK LIST */
.lla-check-list{
  list-style:none !important;
  margin:18px 0 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.lla-check-list li{
  list-style:none !important;
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#fff;
  font-size:18px;
  line-height:1.5;
  margin:0;
  padding:0;
}

.lla-check-list li::marker{
  content:"";
}

.lla-check-list li::before{
  content:none !important;
}

.hero-highlight .lla-check-icon{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:999px;
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--lla-green),#7fc92b);
  box-shadow:0 8px 20px rgba(158,212,58,.30);
  flex-shrink:0;
}

.lla-hero-box ul,
.lla-hero-box ul li,
.lla-check-list,
.lla-check-list li{
  list-style-type:none !important;
}

/* SERVICES */
.services-section .cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.services-section .service-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  background:#ffffff;
  border:1px solid var(--lla-border);
  border-radius:20px;
  box-shadow:0 12px 28px rgba(16,42,70,.08);
  padding:32px 24px 28px;
  min-height:270px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.services-section .service-card:hover{
  box-shadow:0 18px 36px rgba(16,42,70,.12);
  border-color:rgba(63,143,232,.30);
}

.services-section .service-card:not(.diff-card):hover{
  transform:translateY(-4px);
}

.services-section .service-card-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:auto !important;
  height:auto !important;
  min-width:0 !important;
  margin:0 auto 18px auto;
  padding:0 !important;
  background:transparent !important;
  background-image:none !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}

.services-section .service-card-icon::before,
.services-section .service-card-icon::after{
  content:none !important;
  display:none !important;
}

.services-section .service-card-icon img{
  display:block !important;
  width:95px !important;
  height:95px !important;
  max-width:95px !important;
  max-height:95px !important;
  object-fit:contain !important;
  margin:0 auto !important;
  padding:0 !important;
  background:transparent !important;
  background-image:none !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:none !important;
}

.services-section .service-card h3{
  margin:0 0 12px 0;
  font-size:20px;
  line-height:1.25;
  color:var(--lla-dark);
  text-align:center;
}

.services-section .service-card p{
  margin:0;
  color:var(--lla-muted);
  line-height:1.7;
  font-size:16px;
  max-width:320px;
}

/* DIFERENCIAIS */
#diferenciais .cards-grid{
  grid-template-columns:repeat(4,1fr);
}

#diferenciais .service-card{
  height:100%;
}

#diferenciais .diff-card{
  --diff-offset: 28px;
  opacity:0;
  transform:translateY(var(--diff-offset));
  will-change:opacity, transform;
  transition:
    opacity .65s ease,
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

#diferenciais .diff-card.is-visible{
  opacity:1;
  --diff-offset: 0px;
}

#diferenciais .diff-card.is-visible:hover{
  --diff-offset: -4px;
  box-shadow:0 18px 36px rgba(16,42,70,.12);
  border-color:rgba(63,143,232,.30);
}

#diferenciais .service-card-icon img{
  width:160px !important;
  height:160px !important;
  max-width:160px !important;
  max-height:160px !important;
  object-fit:contain !important;
}

/* TECHNOLOGIES */
.technologies-section{
  overflow:hidden;
}

.tech-carousel-wrap{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:24px;
}

.tech-carousel{
  position:relative;
  overflow:hidden;
  width:100%;
  margin-top:12px;
  padding:10px 0;
}

.tech-track{
  display:flex;
  gap:20px;
  transition:transform .45s ease;
  will-change:transform;
}

.tech-card{
  flex:0 0 calc(25% - 15px);
  min-width:calc(25% - 15px);
  background:#ffffff;
  border:1px solid var(--lla-border);
  border-radius:20px;
  box-shadow:0 12px 28px rgba(16,42,70,.08);
  padding:22px 18px;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tech-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(16,42,70,.12);
  border-color:rgba(63,143,232,.30);
}

.tech-card img{
  width:88px;
  height:88px;
  max-width:88px;
  max-height:88px;
  object-fit:contain;
  display:block;
  margin:0 auto 14px auto;
}

.tech-card h3{
  margin:0;
  font-size:20px;
  color:var(--lla-dark);
}

.tech-nav{
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,var(--lla-blue),var(--lla-cyan));
  color:#fff;
  font-size:22px;
  font-weight:700;
  cursor:pointer;
  flex-shrink:0;
  box-shadow:0 10px 24px rgba(63,143,232,.20);
  transition:transform .2s ease, opacity .2s ease;
}

.tech-nav:hover{
  transform:translateY(-2px);
}

.tech-nav:disabled{
  opacity:.45;
  cursor:not-allowed;
  transform:none;
}

/* PROCESSO */
#processo .process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

#processo .process-card{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  text-align:left;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:20px;
  box-shadow:0 12px 28px rgba(7,25,48,.16);
  padding:24px 22px 24px;
  min-height:390px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

#processo .process-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(7,25,48,.22);
  border-color:rgba(255,255,255,.28);
}

#processo .process-card .step-number{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#fff;
  color:var(--lla-dark);
  font-weight:700;
  font-size:18px;
  margin:0 0 14px 0;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

#processo .process-card-icon{
  width:100%;
  min-height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:8px 0 18px 0;
  overflow:visible;
}

#processo .process-card-icon img{
  display:block;
  width:280px;
  max-width:100%;
  height:auto;
  max-height:280px;
  object-fit:contain;
  object-position:center;
  margin:0 auto;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
}

#processo .process-card h3{
  margin:0 0 14px 0;
  font-size:20px;
  line-height:1.3;
  color:#fff;
}

#processo .process-card p{
  margin:0;
  font-size:16px;
  line-height:1.75;
  color:rgba(255,255,255,.92);
}

/* CERTIFICAÇÕES */
.certifications-section{
  overflow:hidden;
}

.cert-carousel-wrap{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:24px;
}

.cert-carousel{
  position:relative;
  overflow:hidden;
  width:100%;
  margin-top:12px;
  padding:10px 0;
}

.cert-track{
  display:flex;
  gap:20px;
  transition:transform .45s ease;
  will-change:transform;
}

.cert-card{
  flex:0 0 calc(25% - 15px);
  min-width:calc(25% - 15px);
  background:#ffffff;
  border:1px solid var(--lla-border);
  border-radius:20px;
  box-shadow:0 12px 28px rgba(16,42,70,.08);
  padding:22px 18px;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cert-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(16,42,70,.12);
  border-color:rgba(63,143,232,.30);
}

.cert-card img{
  width:88px;
  height:88px;
  max-width:88px;
  max-height:88px;
  object-fit:contain;
  display:block;
  margin:0 auto 14px auto;
}

.cert-card h3{
  margin:0;
  font-size:20px;
  color:var(--lla-dark);
}

.cert-card p{
  display:none;
}

.cert-nav{
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,var(--lla-blue),var(--lla-cyan));
  color:#fff;
  font-size:22px;
  font-weight:700;
  cursor:pointer;
  flex-shrink:0;
  box-shadow:0 10px 24px rgba(63,143,232,.20);
  transition:transform .2s ease, opacity .2s ease;
}

.cert-nav:hover{
  transform:translateY(-2px);
}

.cert-nav:disabled{
  opacity:.45;
  cursor:not-allowed;
  transform:none;
}

/* WHATSAPP */
.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#fff !important;
}

.btn-whatsapp span{
  color:#fff !important;
}

.btn-icon-whatsapp{
  width:60px;
  height:60px;
  flex-shrink:0;
  object-fit:contain;
  display:block;
}

.lla-whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:62px;
  height:62px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#25d366,#1fb955);
  color:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,.20);
  z-index:9999;
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.lla-whatsapp-float:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 18px 40px rgba(0,0,0,.26);
}

.lla-whatsapp-float-icon{
  width:90px;
  height:90px;
  object-fit:contain;
  display:block;
}

/* ANIMAÇÃO DE SEÇÕES */
.section-reveal{
  opacity:0;
  transform:translateY(26px);
  transition:
    opacity .7s ease,
    transform .7s ease;
  will-change:opacity, transform;
}

.section-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* 404 PAGE */
.error-page-shell{
  min-height:calc(100vh - 84px);
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at top left, rgba(88,195,223,.10), transparent 35%),
    linear-gradient(135deg, #0f2742 0%, #143357 42%, #0b2340 100%);
}

.error-card{
  display:grid;
  grid-template-columns:minmax(320px, 1.05fr) minmax(320px, .95fr);
  align-items:center;
  gap:40px;
  padding:48px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 20px 60px rgba(0,0,0,.24);
  backdrop-filter:blur(10px);
  overflow:hidden;
}

.error-card-content{
  text-align:left;
}

.error-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  margin-bottom:18px;
  background:rgba(88,195,223,.10);
  border:1px solid rgba(88,195,223,.28);
  color:#8fe8ff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.error-card-content h1{
  margin:0 0 16px;
  font-size:52px;
  line-height:1.08;
  color:#fff;
}

.error-page-message{
  margin:0 0 12px;
  max-width:560px;
  font-size:19px;
  line-height:1.8;
  color:rgba(255,255,255,.92);
}

.error-page-hint{
  margin:0 0 28px;
  max-width:560px;
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,.72);
}

.error-page-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.error-card-media{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
}

.error-card-image{
  display:block;
  width:100%;
  max-width:520px;
  height:auto;
  object-fit:contain;
}

/* ERROR PAGE - LIGHT LAYOUT */
.error-page-clean{
  min-height:calc(100vh - 84px);
  display:flex;
  align-items:center;
  padding:48px 0;
}

.error-page-clean-wrap{
  display:grid;
  grid-template-columns:minmax(360px, 460px) minmax(520px, 1fr);
  align-items:center;
  gap:56px;
}

.error-page-clean-content{
  text-align:left;
  max-width:460px;
}

.error-page-clean-code{
  display:inline-block;
  margin:0 0 18px;
  font-size:18px;
  font-weight:600;
  color:var(--lla-muted);
}

.error-page-clean-content h1{
  margin:0 0 22px;
  font-size:56px;
  line-height:1.08;
  color:var(--lla-dark);
}

.error-page-clean-message{
  margin:0 0 14px;
  font-size:20px;
  line-height:1.65;
  color:var(--lla-text);
}

.error-page-clean-hint{
  margin:0 0 30px;
  font-size:18px;
  line-height:1.65;
  color:var(--lla-muted);
}

.error-page-clean-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.error-page-clean-media{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-width:0;
}

.error-page-clean-image{
  display:block;
  width:100%;
  max-width:900px;
  height:auto;
  object-fit:contain;
}

/* RESPONSIVO GERAL */
@media (max-width:1200px){
  .error-page-clean-wrap{
    grid-template-columns:minmax(320px, 420px) minmax(420px, 1fr);
    gap:40px;
  }

  .error-page-clean-content h1{
    font-size:46px;
  }

  .error-page-clean-message{
    font-size:18px;
  }

  .error-page-clean-hint{
    font-size:16px;
  }

  .error-page-clean-image{
    max-width:700px;
  }
}

@media (max-width:1100px){
  .tech-card{
    flex:0 0 calc(33.333% - 14px);
    min-width:calc(33.333% - 14px);
  }

  .cert-card{
    flex:0 0 calc(33.333% - 14px);
    min-width:calc(33.333% - 14px);
  }

  .error-card{
    grid-template-columns:1fr 1fr;
    gap:28px;
    padding:38px;
  }

  .error-card-content h1{
    font-size:42px;
  }

  .error-card-image{
    max-width:420px;
  }
}

@media (max-width:1024px){
  .hero-content,
  .cards-grid,
  .mini-grid,
  .steps-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-text h1{
    font-size:44px;
  }

  .services-section .cards-grid{
    grid-template-columns:repeat(2,1fr);
  }

  #diferenciais .cards-grid{
    grid-template-columns:repeat(2,1fr);
  }

  #processo .process-grid{
    grid-template-columns:1fr 1fr;
  }

  #processo .process-card{
    min-height:380px;
  }
}

@media (max-width:900px){
  .error-page-clean-wrap{
    grid-template-columns:1fr;
    gap:28px;
  }

  .error-page-clean-content{
    max-width:none;
    text-align:center;
  }

  .error-page-clean-media{
    justify-content:center;
  }

  .error-page-clean-actions{
    justify-content:center;
  }

  .error-page-clean-content h1{
    font-size:38px;
  }

  .error-page-clean-message,
  .error-page-clean-hint{
    max-width:680px;
    margin-left:auto;
    margin-right:auto;
  }

  .error-page-clean-image{
    max-width:420px;
  }
}

@media (max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-legal{
    gap:12px;
  }

  .footer-social{
    gap:8px;
  }

  .footer-social a{
    width:32px !important;
    height:32px !important;
  }

  .footer-social img{
    width:30px !important;
    height:30px !important;
    max-width:30px !important;
    max-height:30px !important;
  }

  .hero-content,
  .cards-grid,
  .mini-grid,
  .steps-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:34px;
  }

  .section{
    padding:58px 0;
  }

  .section-head h2{
    font-size:30px;
  }

  .cta-box{
    padding:34px 24px;
  }

  .cta-box h2{
    font-size:30px;
  }

  .tech-carousel-wrap,
  .cert-carousel-wrap{
    gap:10px;
  }

  .tech-card{
    flex:0 0 calc(50% - 10px);
    min-width:calc(50% - 10px);
    padding:18px 14px;
  }

  .tech-card img{
    width:72px;
    height:72px;
    max-width:72px;
    max-height:72px;
  }

  .tech-card h3{
    font-size:17px;
  }

  .tech-nav,
  .cert-nav{
    width:40px;
    height:40px;
    font-size:18px;
  }

  .services-section .cards-grid{
    grid-template-columns:1fr;
  }

  .services-section .service-card{
    min-height:auto;
    padding:28px 20px 24px;
  }

  .services-section .service-card-icon img{
    width:88px !important;
    height:88px !important;
    max-width:88px !important;
    max-height:88px !important;
  }

  .services-section .service-card h3{
    font-size:19px;
  }

  .services-section .service-card p{
    font-size:15px;
  }

  #diferenciais .cards-grid{
    grid-template-columns:1fr;
  }

  #diferenciais .service-card-icon img{
    width:240px !important;
    height:240px !important;
    max-width:240px !important;
    max-height:240px !important;
  }

  #processo .process-grid{
    grid-template-columns:1fr;
  }

  #processo .process-card{
    min-height:auto;
    padding:24px 20px 22px;
  }

  #processo .process-card .step-number{
    width:40px;
    height:40px;
    font-size:17px;
    margin-bottom:16px;
  }

  #processo .process-card-icon{
    min-height:120px;
    margin-bottom:16px;
  }

  #processo .process-card-icon img{
    width:280px;
    max-width:100%;
    max-height:280px;
  }

  #processo .process-card h3{
    font-size:19px;
  }

  #processo .process-card p{
    font-size:15px;
  }

  .cert-card{
    flex:0 0 calc(50% - 10px);
    min-width:calc(50% - 10px);
    padding:18px 14px;
  }

  .cert-card img{
    width:72px;
    height:72px;
    max-width:72px;
    max-height:72px;
  }

  .cert-card h3{
    font-size:17px;
  }

  .lla-whatsapp-float{
    right:16px;
    bottom:16px;
    width:56px;
    height:56px;
  }

  .lla-whatsapp-float-icon{
    width:60px;
    height:60px;
  }

  .error-page-shell{
    min-height:auto;
    padding:36px 0;
  }

  .error-card{
    grid-template-columns:1fr;
    gap:24px;
    padding:28px 22px;
    text-align:center;
  }

  .error-card-content{
    order:2;
    text-align:center;
  }

  .error-card-media{
    order:1;
  }

  .error-card-content h1{
    font-size:34px;
  }

  .error-page-message,
  .error-page-hint{
    margin-left:auto;
    margin-right:auto;
  }

  .error-page-actions{
    justify-content:center;
  }

  .error-card-image{
    max-width:300px;
  }

  .error-page-clean{
    min-height:auto;
    padding:32px 0;
  }

  .error-page-clean-content h1{
    font-size:32px;
  }

  .error-page-clean-message{
    font-size:17px;
  }

  .error-page-clean-hint{
    font-size:15px;
  }

  .error-page-clean-image{
    max-width:320px;
  }
}

@media (max-width:520px){
  .tech-card,
  .cert-card{
    flex:0 0 100%;
    min-width:100%;
  }
}
/* =========================================================
   AJUSTE FINAL DO RODAPÉ ESCURO
   ========================================================= */

.site-footer,
.site-footer .footer-brand h3,
.site-footer .footer-links h4,
.site-footer .footer-contact h4{
  color:#fff !important;
}

.site-footer .footer-brand p,
.site-footer .footer-contact p{
  color:rgba(255,255,255,.88) !important;
}

.site-footer .footer-brand-meta,
.site-footer .footer-brand-meta span,
.site-footer .footer-brand-meta a{
  color:rgba(255,255,255,.78) !important;
}

.site-footer .footer-brand-meta a:hover{
  color:#fff !important;
}

.site-footer .footer-links .footer-menu > li > a{
  color:#fff !important;
}

.site-footer .footer-links .footer-menu .sub-menu a{
  color:rgba(255,255,255,.78) !important;
}

.site-footer .footer-links .footer-menu a:hover{
  color:#fff !important;
}

.site-footer .footer-contact a{
  color:#fff !important;
}

.site-footer .footer-contact a:hover{
  color:rgba(255,255,255,.82) !important;
}

.site-footer .footer-copy{
  color:rgba(255,255,255,.78) !important;
}

.site-footer .footer-legal a,
.site-footer .footer-legal span{
  color:rgba(255,255,255,.78) !important;
}

.site-footer .footer-legal a:hover{
  color:#fff !important;
}


.footer-brand-meta{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:18px;
}

.footer-meta-line{
  display:block;
}
