:root{
  --accent-dark:#003b95;
  --accent:#2f68d1;
  --text:#0b1220;
  --muted:#64748b;
  --glass:rgba(255,255,255,.80);
  --shadow:0 18px 48px rgba(6,22,55,.12);
  --shadow-soft:0 10px 25px rgba(6,22,55,.08);
  --trans:380ms cubic-bezier(.18,.9,.2,1);
  --chip-1:#fff1f0;
  --chip-2:#e8f0ff;
  --chip-3:#eef8f2;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f7f9fd 0%, #eef3fb 100%);
  line-height:1.4;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none}
button{font-family:inherit}

#site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1200;
  height:92px;
  display:flex;
  align-items:center;
  background:transparent;
  transition:background var(--trans), box-shadow var(--trans), height var(--trans);
}
#site-header.scrolled{
  background:var(--glass);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 12px 30px rgba(6,22,55,.08);
  height:78px;
}
.header-grid{
  width:min(1280px, calc(100% - 28px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(180px,240px) 1fr auto;
  gap:18px;
  align-items:center;
}
.site-logo{
  display:inline-flex;
  align-items:center;
  transform-origin:left center;
  transition:transform var(--trans), filter var(--trans);
}
.site-logo:hover{
  transform:translateY(-2px) scale(1.03);
  filter:drop-shadow(0 14px 28px rgba(0,70,168,.18));
}
.logo-img{
  width:100%;
  max-width:360px;
  height:auto;
  transition:transform var(--trans), max-width var(--trans);
}
.site-logo:hover .logo-img{transform:scale(1.02)}
#site-header.scrolled .logo-img{max-width:310px}

.header-center{position:relative}
.main-nav{display:flex;justify-content:center}
.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-link,.services-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:none;
  background:transparent;
  border-radius:999px;
  color:var(--muted);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  position:relative;
  transition:color .25s ease, transform .25s ease, background .25s ease;
}
.nav-link::after,.services-btn::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:-8px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent-dark),var(--accent));
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease, opacity .25s ease;
  opacity:.95;
}
.nav-link:hover,.services-btn:hover,.nav-link.active,.services-btn.active{
  color:var(--accent-dark);
  transform:translateY(-2px);
  background:rgba(47,104,209,.05);
}
.nav-link:hover::after,.services-btn:hover::after,.nav-link.active::after,.services-btn.active::after{
  transform:scaleX(1);
}
.chev{font-size:12px}

.mega-menu{
  position:absolute;
  left:50%;
  top:calc(100% + 18px);
  width:min(980px, calc(100vw - 40px));
  transform:translateX(-50%) translateY(10px);
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.98);
  box-shadow:var(--shadow);
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  transition:opacity var(--trans), transform var(--trans);
  z-index:5;
}
.mega-menu.show{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.mega-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.mega-col{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .35s ease, transform .35s ease;
}
.mega-menu.show .mega-col{opacity:1;transform:none}
.mega-col h4{font-size:15px;font-weight:700;display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin-bottom:12px}
.chip{padding:6px 9px;border-radius:999px;font-size:12px;font-weight:700}
.chip-1{background:var(--chip-1);color:#c44a36}
.chip-2{background:var(--chip-2);color:#2b63b6}
.chip-3{background:var(--chip-3);color:#198754}
.mega-col ul{list-style:none}
.mega-col li+li{margin-top:8px}
.mega-col a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
  font-weight:500;
  transition:background .2s ease, transform .2s ease, color .2s ease;
}
.mega-col a:hover{background:rgba(47,104,209,.07);transform:translateX(6px);color:var(--accent-dark)}
.mega-footer{margin-top:14px;padding-top:14px;border-top:1px solid rgba(10,20,40,.06);font-size:13px;color:var(--muted)}
.mega-footer a{color:var(--accent-dark);font-weight:600}

.header-right{display:flex;align-items:center;gap:10px;justify-self:end}
.action-pill{
  display:flex;
  align-items:center;
  gap:6px;
  padding:7px 8px;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.74));
  border:1px solid rgba(0,70,168,.07);
  box-shadow:var(--shadow-soft);
}
.action-item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:34px;
  padding:0 9px;
  border:none;
  border-radius:999px;
  color:#1d2a43;
  background:transparent;
  position:relative;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}
.action-item:hover{transform:translateY(-2px);background:rgba(47,104,209,.08);color:var(--accent-dark)}
.action-item i{font-size:15px}
.action-item .label{
  position:absolute;
  left:50%;
  top:calc(100% + 8px);
  transform:translateX(-50%);
  background:#fff;
  border-radius:10px;
  padding:6px 8px;
  font-size:12px;
  white-space:nowrap;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, top .2s ease;
}
.action-item:hover .label{opacity:1;top:calc(100% + 12px)}
.btn-atendente{
  min-width:210px;
  justify-content:center;
  padding:0 18px;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg,#2f68d1,#0046a8);
  box-shadow:0 12px 28px rgba(47,104,209,.24);
  overflow:hidden;
}
.btn-atendente:hover{background:linear-gradient(135deg,#3f78e2,#0b4fb6);color:#fff}
.btn-atendente::before{
  content:"";
  position:absolute;
  top:0;
  left:-40%;
  width:34%;
  height:100%;
  transform:skewX(-20deg);
  background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.28),rgba(255,255,255,0));
  animation:shine 3s linear infinite;
}
@keyframes shine{
  0%{left:-40%}
  60%,100%{left:115%}
}

.burger{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-soft);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.burger span{
  display:block;
  width:20px;
  height:2px;
  background:var(--accent-dark);
  border-radius:999px;
  transition:transform .25s ease, opacity .25s ease;
}
.burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.active span:nth-child(2){opacity:0}
.burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.5);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:1250;
}
.overlay.show{opacity:1;pointer-events:auto}

.mobile-drawer{
  position:fixed;
  top:0;
  right:-100%;
  width:min(390px, 100%);
  height:100dvh;
  background:linear-gradient(180deg,#ffffff 0%, #f7faff 100%);
  box-shadow:-24px 0 60px rgba(2,6,23,.18);
  z-index:1260;
  transition:right .3s ease;
  overflow-y:auto;
  padding:0 16px 28px;
}
.mobile-drawer.open{right:0}
.mobile-drawer-top{
  position:sticky;
  top:0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0 14px;
  background:linear-gradient(180deg,#ffffff 0%, #f7faff 100%);
}
.mobile-drawer-title{
  font-size:18px;
  font-weight:700;
  color:var(--accent-dark);
  letter-spacing:.2px;
}
.close-drawer{
  flex:0 0 48px;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:#eef4ff;
  color:var(--accent-dark);
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.close-drawer i{
  pointer-events:none;
}
.close-drawer:hover{
  transform:scale(1.03);
}
.close-drawer:active{
  transform:scale(.97);
}

.mobile-nav{
  padding-top:8px;
}
.mobile-menu-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.mobile-menu-list>li>a,
.acc-toggle{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border:none;
  border-radius:16px;
  background:#fff;
  color:#132033;
  box-shadow:0 10px 24px rgba(6,22,55,.05);
  font-weight:600;
  font-size:15px;
}
.mobile-menu-list>li>a{
  justify-content:flex-start;
}
.mobile-menu-list>li>a span,
.acc-title{
  display:flex;
  align-items:center;
  gap:12px;
}
.mobile-menu-list>li>a i,
.acc-title i{
  width:18px;
  text-align:center;
  color:var(--accent-dark);
}
.acc-toggle{
  justify-content:space-between;
  cursor:pointer;
}
.acc-ind{color:var(--accent-dark);transition:transform .25s ease}
.mobile-accordion.open .acc-ind{transform:rotate(90deg)}
.acc-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  padding:0 4px;
}
.mobile-group{
  background:#f7faff;
  margin-top:10px;
  border-radius:16px;
  padding:14px;
  border:1px solid rgba(47,104,209,.08);
}
.mobile-group strong{display:block;margin-bottom:10px;color:var(--accent-dark);font-size:14px}
.mobile-group ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.mobile-group a{display:block;color:#203049;padding:8px 0;font-size:14px}
.mobile-cta-card,.mobile-social-card{
  margin-top:18px;
  background:#fff;
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 24px rgba(6,22,55,.05);
}
.mobile-cta-card p{font-size:14px;color:#445166;margin-bottom:14px}
.mobile-cta-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.mobile-login,.mobile-atendente{
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
}
.mobile-login{background:#eef4ff;color:var(--accent-dark)}
.mobile-atendente{border:none;background:linear-gradient(135deg,#2f68d1,#0046a8);color:#fff}
.mobile-social-card span{display:block;margin-bottom:12px;color:#445166;font-size:14px;font-weight:600}
.mobile-socials{display:flex;gap:10px}
.mobile-socials a{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  color:var(--accent-dark);
  font-size:18px;
}

.main-placeholder{padding-top:120px}
.hero-demo{min-height:110vh;display:flex;align-items:flex-start;justify-content:center;padding:40px 18px 60px}
.hero-demo-content{
  width:min(1200px,100%);
  min-height:70vh;
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff,#f5f8fe);
  box-shadow:0 24px 60px rgba(6,22,55,.09);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
}
.hero-demo-image{max-width:min(920px,100%);height:auto}

a:focus-visible,button:focus-visible{outline:3px solid rgba(47,104,209,.18);outline-offset:3px}

@media (max-width:1180px){
  .header-grid{grid-template-columns:minmax(170px,240px) 1fr auto}
  .logo-img{max-width:300px}
  .nav-links{gap:4px}
  .nav-link,.services-btn{padding:10px 11px;font-size:14px}
  .btn-atendente{min-width:190px}
}
@media (max-width:980px){
  #site-header{height:auto;padding:10px 0 12px}
  #site-header.scrolled{height:auto}
  .header-grid{
    grid-template-columns:1fr;
    gap:10px;
    width:min(100%, calc(100% - 18px));
  }
  .header-left{display:flex;justify-content:center}
  .header-center{display:none}
  .header-right{width:100%;justify-content:center;gap:8px}
  .logo-img{max-width:230px}
  .action-pill{
    flex:1;
    justify-content:space-between;
    max-width:560px;
    min-width:0;
    padding:6px 8px;
    gap:4px;
  }
  .action-item{min-width:32px;height:32px;padding:0 7px}
  .action-item .label{display:none}
  .btn-atendente{
    min-width:auto;
    height:44px;
    padding:0 18px;
    font-size:13px;
    flex:1;
  }
  .burger{display:flex;flex:0 0 46px}
  .main-placeholder{padding-top:150px}
  .nav-link::after,.services-btn::after{
    display:none !important;
  }
  body.menu-open .header-right{
    visibility:hidden;
    pointer-events:none;
  }
}
@media (max-width:640px){
  .logo-img{max-width:205px}
  .action-pill{max-width:none}
  .btn-atendente{padding:0 14px}
  .burger{width:44px;height:44px;flex:0 0 44px}
  .main-placeholder{padding-top:145px}
  .hero-demo{padding:24px 12px 50px}
  .hero-demo-content{padding:18px;border-radius:22px}
}
@media (max-width:420px){
  .action-pill{padding:6px}
  .action-item{min-width:30px;height:30px}
  .btn-atendente{font-size:12px;padding:0 12px}
}

/* SESSÃO AVISO ABERTURA DO SITE */
body.gspro-lock {
  overflow: hidden !important;
}

.gspro-alert {
  position: fixed !important;
  right: 26px;
  bottom: 26px;
  width: 445px;
  max-width: calc(100vw - 28px);
  z-index: 2147483646 !important;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 30px;
  font-family: Inter, Arial, sans-serif;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.26), transparent 26%),
    linear-gradient(135deg, #021849 0%, #053b9d 48%, #087cff 100%);
  box-shadow:
    0 30px 80px rgba(0, 55, 160, .42),
    inset 0 0 0 1px rgba(255,255,255,.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(120%) translateY(40px) scale(.92);
  transition: .7s cubic-bezier(.18, 1.15, .3, 1);
}

.gspro-alert.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) translateY(0) scale(1);
}

.gspro-alert::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.16) 45%, transparent 70%);
  transform: translateX(-130%);
  animation: gsproShine 4s infinite;
}

.gspro-alert::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  animation: gsproOrb 4s ease-in-out infinite;
}

.gspro-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  transition: .25s;
}

.gspro-close:hover {
  transform: rotate(90deg);
  background: rgba(255,255,255,.25);
}

.gspro-left,
.gspro-content {
  position: relative;
  z-index: 2;
}

.gspro-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.gspro-icon {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  box-shadow:
    inset 0 0 22px rgba(255,255,255,.14),
    0 12px 30px rgba(0,0,0,.18);
  animation: gsproBell 1.9s infinite;
}

.gspro-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 30px;
  border: 2px solid rgba(255,216,77,.35);
  animation: gsproRing 1.8s infinite;
}

.gspro-icon svg {
  width: 35px;
  height: 35px;
  fill: #ffd84d;
  filter: drop-shadow(0 0 12px rgba(255,216,77,.55));
}

.gspro-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #e8f2ff;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gspro-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd84d;
  box-shadow: 0 0 0 0 rgba(255,216,77,.6);
  animation: gsproDot 1.4s infinite;
}

.gspro-content h3 {
  margin: 0 30px 10px 0;
  font-size: 1.32rem;
  line-height: 1.13;
  font-weight: 950;
}

.gspro-content p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: .91rem;
  line-height: 1.55;
}

.gspro-line {
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}

.gspro-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.gspro-main-btn,
.gspro-whats-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: .84rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: .25s ease;
}

.gspro-main-btn {
  background: #fff;
  color: #0648bf;
  box-shadow: 0 12px 28px rgba(255,255,255,.18);
}

.gspro-whats-btn {
  background: rgba(37, 211, 102, .14);
  color: #d9ffe6;
  border: 1px solid rgba(37, 211, 102, .32);
}

.gspro-main-btn:hover,
.gspro-whats-btn:hover {
  transform: translateY(-3px);
}

/* DOCUMENTO */

.gspro-modal {
  position: fixed !important;
  inset: 0;
  z-index: 2147483647 !important;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 18px;
  background: rgba(4, 16, 42, .78);
  backdrop-filter: blur(10px);
}

.gspro-modal.show {
  display: flex;
}

.gspro-document {
  position: relative;
  width: min(94vw, 900px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 30px;
  background: #f7fbff;
  box-shadow: 0 40px 120px rgba(0,0,0,.48);
  animation: gsproDocIn .55s cubic-bezier(.18,1.15,.3,1);
}

.gspro-doc-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 18px -58px 0;
  z-index: 10;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 27px;
  cursor: pointer;
}

.gspro-doc-hero {
  padding: 56px 38px 46px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.22), transparent 36%),
    linear-gradient(135deg, #03205e, #075ed4, #0b83ff);
}

.gspro-doc-hero span {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  font-weight: 900;
  margin-bottom: 16px;
}

.gspro-doc-hero h2 {
  margin: 0 0 13px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
}

.gspro-doc-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #e5f1ff;
  line-height: 1.7;
}

.gspro-doc-content {
  padding: 38px;
}

.gspro-doc-content section {
  padding: 24px 0;
  border-bottom: 1px solid #dce8ff;
}

.gspro-doc-content h3 {
  margin: 0 0 12px;
  color: #075ed4;
  font-size: 1.42rem;
}

.gspro-doc-content p {
  margin: 0;
  color: #1d2d44;
  line-height: 1.85;
  font-size: 1.02rem;
}

.gspro-final {
  margin-top: 30px;
  padding: 30px;
  border-radius: 26px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #04398f, #0877ff);
}

.gspro-final h3 {
  margin: 0 0 10px;
}

.gspro-final p {
  color: #e5f1ff;
}

.gspro-final button {
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  padding: 14px 38px;
  background: #fff;
  color: #0648bf;
  font-weight: 950;
  cursor: pointer;
}

/* ANIMAÇÕES */

@keyframes gsproShine {
  0% { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}

@keyframes gsproOrb {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes gsproBell {
  0%, 100% { transform: rotate(0) scale(1); }
  12% { transform: rotate(-8deg) scale(1.03); }
  24% { transform: rotate(8deg) scale(1.03); }
  36% { transform: rotate(-4deg); }
  48% { transform: rotate(4deg); }
}

@keyframes gsproRing {
  0% { transform: scale(.9); opacity: .85; }
  100% { transform: scale(1.16); opacity: 0; }
}

@keyframes gsproDot {
  0% { box-shadow: 0 0 0 0 rgba(255,216,77,.55); }
  100% { box-shadow: 0 0 0 14px rgba(255,216,77,0); }
}

@keyframes gsproDocIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .gspro-alert {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 54px 1fr;
    padding: 16px;
    border-radius: 24px;
  }

  .gspro-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }

  .gspro-icon svg {
    width: 27px;
    height: 27px;
  }

  .gspro-status {
    font-size: .62rem;
  }

  .gspro-content h3 {
    font-size: 1.03rem;
  }

  .gspro-content p {
    font-size: .8rem;
  }

  .gspro-main-btn,
  .gspro-whats-btn {
    font-size: .78rem;
  }

  .gspro-document {
    width: 100%;
    max-height: 92vh;
    border-radius: 24px;
  }

  .gspro-doc-hero {
    padding: 48px 22px 34px;
  }

  .gspro-doc-content {
    padding: 24px 18px;
  }
}

@media (max-width: 430px) {
  .gspro-alert {
    grid-template-columns: 1fr;
  }

  .gspro-left {
    display: none;
  }
}



/* SESSÃO BANNER INICIAL */
/* ================================
   BANNER PREMIUM GRANSAFETY - GSP
================================ */

.gsp-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #020817;
  font-family: "Poppins", Arial, sans-serif;
}

.gsp-slider {
  position: relative;
  width: 100%;
  min-height: 850px;
  height: 100vh;
  overflow: hidden;
  background: #020817;
}

/* SLIDES */
.gsp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
}

.gsp-slide.active {
  opacity: 1;
  visibility: visible;
}

.gsp-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: gspSlowZoom 22s ease-in-out infinite alternate;
}

/* OVERLAY */
.gsp-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 38%, rgba(56, 189, 248, .30), transparent 32%),
    linear-gradient(90deg, rgba(2, 8, 23, .96) 0%, rgba(2, 8, 23, .78) 48%, rgba(2, 8, 23, .36) 100%),
    linear-gradient(to top, rgba(2, 8, 23, .95), transparent 58%);
}

/* FLASH LENTO */
.gsp-slow-flash {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(255,255,255,.10) 47%,
    rgba(56,189,248,.40) 50%,
    rgba(255,255,255,.10) 53%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-130%);
}

.gsp-slide.active .gsp-slow-flash {
  animation: gspFlash 9s ease-in-out infinite;
}

/* LINHAS PREMIUM */
.gsp-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(125, 211, 252, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .07) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, #000 0%, #000 62%, transparent 100%);
  opacity: .85;
}

/* CONTAINER */
.gsp-container {
  position: relative;
  z-index: 5;
  width: min(1280px, calc(100% - 40px));
  height: 100%;
  min-height: 850px;
  margin: 0 auto;
  padding: 145px 0 135px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

/* TEXTO */
.gsp-content {
  max-width: 880px;
  color: #fff;
}

.gsp-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 10px 22px;
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(37, 99, 235, .18);
  border: 1px solid rgba(125, 211, 252, .34);
  box-shadow: 0 0 34px rgba(56, 189, 248, .16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  animation: gspEyebrowPulse 3s ease-in-out infinite;
}

.gsp-content h1 {
  margin: 26px 0 22px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: .93;
  letter-spacing: -3px;
  font-weight: 950;
  text-shadow: 0 22px 70px rgba(0,0,0,.46);
}

.gsp-content h1 strong {
  display: block;
  color: #38bdf8;
}

.gsp-content p {
  max-width: 710px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}

/* ENTRADA DO TEXTO */
.gsp-slide.active .gsp-eyebrow,
.gsp-slide.active .gsp-content h1,
.gsp-slide.active .gsp-content p,
.gsp-slide.active .gsp-actions {
  animation: gspTextIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}

.gsp-slide.active .gsp-content h1 {
  animation-delay: .10s;
}

.gsp-slide.active .gsp-content p {
  animation-delay: .20s;
}

.gsp-slide.active .gsp-actions {
  animation-delay: .30s;
}

/* BOTÕES PREMIUM */
.gsp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.gsp-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 62px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.gsp-btn span,
.gsp-btn i {
  position: relative;
  z-index: 2;
}

.gsp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translateX(-125%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transition: .7s ease;
}

.gsp-btn:hover::before {
  transform: translateX(125%);
}

.gsp-btn.primary {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.32), transparent 36%),
    linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow:
    0 20px 50px rgba(37, 99, 235, .38),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.gsp-btn.glass {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 46px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.gsp-btn:hover {
  transform: translateY(-7px);
}

.gsp-btn i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
}

/* SETAS */
.gsp-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: .35s ease;
}

.gsp-arrow i {
  font-size: 20px;
}

.gsp-arrow:hover {
  background: #2563eb;
  box-shadow: 0 0 36px rgba(37,99,235,.60);
  transform: translateY(-50%) scale(1.08);
}

.gsp-arrow.prev {
  left: 28px;
}

.gsp-arrow.next {
  right: 28px;
}

/* BARRA INFERIOR */
.gsp-bottom {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.gsp-progress {
  position: relative;
  flex: 1;
  max-width: 420px;
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.gsp-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  box-shadow: 0 0 26px rgba(56,189,248,.70);
}

.gsp-progress span.running {
  animation: gspProgress 7s linear forwards;
}

.gsp-dots {
  display: flex;
  gap: 10px;
}

.gsp-dots button {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.36);
  cursor: pointer;
  transition: .35s ease;
}

.gsp-dots button.active {
  width: 48px;
  background: #38bdf8;
  box-shadow: 0 0 26px rgba(56,189,248,.85);
}

/* ANIMAÇÕES */
@keyframes gspSlowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes gspFlash {
  0%, 58% {
    transform: translateX(-130%);
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  88%, 100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@keyframes gspTextIn {
  from {
    opacity: 0;
    transform: translateY(38px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gspEyebrowPulse {
  50% {
    transform: translateY(-4px);
    box-shadow: 0 0 46px rgba(56,189,248,.30);
  }
}

@keyframes gspProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* RESPONSIVO */
@media (max-width: 760px) {
  .gsp-slider,
  .gsp-container {
    min-height: 760px;
  }

  .gsp-container {
    width: min(100% - 32px, 1280px);
    padding: 115px 0 125px;
  }

  .gsp-content h1 {
    font-size: clamp(36px, 11vw, 58px);
    line-height: .98;
    letter-spacing: -1.6px;
  }

  .gsp-content p {
    font-size: 16px;
  }

  .gsp-actions {
    flex-direction: column;
  }

  .gsp-btn {
    width: 100%;
    border-radius: 18px;
  }

  .gsp-arrow {
    display: none;
  }

  .gsp-bottom {
    bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .gsp-progress {
    width: 100%;
    max-width: 100%;
  }
}




/* DIVISOR ANIMADO ENTRE SEÇÕES */
/* DIVISOR ANIMADO ENTRE SEÇÕES */
/* ===== DIVISOR ENTRE SESSÕES ===== */
.scroll-divider {
  position: relative;
  width: 100%;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    90deg,
    rgba(0, 63, 243, 0.08),
    rgba(255, 255, 255, 0.95),
    rgba(0, 132, 255, 0.08)
  );

  border-top: 1px solid rgba(0, 63, 243, 0.06);
  border-bottom: 1px solid rgba(0, 63, 243, 0.06);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease,
    height 0.8s ease;
}

/* ===== ESTADO ESCONDIDO ===== */
.scroll-divider.is-hidden {
  opacity: 0;
  transform: translateY(-18px) scale(0.96);
  filter: blur(10px);
  height: 0;
  pointer-events: none;
  border: none;
}

/* ===== ESTADO VISÍVEL ===== */
.scroll-divider.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ===== EFEITOS DE FUNDO ===== */
.scroll-divider::before,
.scroll-divider::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.35;
  animation: dividerFloat 6s ease-in-out infinite alternate;
}

.scroll-divider::before {
  left: -120px;
  background: rgba(0, 63, 243, 0.25);
}

.scroll-divider::after {
  right: -120px;
  background: rgba(0, 132, 255, 0.25);
  animation-delay: 1.5s;
}

/* ===== LINHA CENTRAL ===== */
.scroll-divider-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 63, 243, 0.2),
    rgba(0, 132, 255, 0.6),
    rgba(0, 63, 243, 0.2),
    transparent
  );
  animation: linePulse 2.5s ease-in-out infinite;
}

/* ===== BOTÃO CENTRAL (MOUSE) ===== */
.scroll-mouse {
  position: relative;
  z-index: 3;
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(0, 63, 243, 0.3);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);

  box-shadow:
    0 0 0 6px rgba(0, 63, 243, 0.04),
    0 10px 25px rgba(0, 63, 243, 0.15);

  cursor: pointer;
  animation: mouseBounce 1.8s ease-in-out infinite;
}

/* BOLINHA INTERNA */
.scroll-mouse span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #003ff3;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: dotScroll 1.4s ease-in-out infinite;
}

/* GLOW CENTRAL */
.scroll-divider-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(0, 63, 243, 0.15), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

/* ===== ANIMAÇÕES ===== */
@keyframes dividerFloat {
  from {
    transform: translateY(-12px) scale(1);
  }
  to {
    transform: translateY(12px) scale(1.05);
  }
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes mouseBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes dotScroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .scroll-divider {
    height: 70px;
  }

  .scroll-mouse {
    width: 22px;
    height: 36px;
  }
}



/* BOTÃO WHATSAPP FIXO NA TELA */
/* ==========================
   WHATSAPP PREMIUM GRANSAFETY
   CSS COMPLETO
========================== */

.gran-wa {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 999999;
  font-family: "Segoe UI", Arial, sans-serif;
  touch-action: none;
  user-select: none;
}

/* CARD */

.gran-wa-card {
  position: absolute;
  bottom: 96px;
  width: 370px;
  max-width: calc(100vw - 32px);
  background: #0b141a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(22px) scale(0.94);
  transition: 0.35s cubic-bezier(.2,.8,.2,1);
}

/* quando estiver na direita, abre para esquerda */
.gran-wa.right .gran-wa-card {
  right: 0;
  left: auto;
}

/* quando estiver na esquerda, abre para direita */
.gran-wa.left .gran-wa-card {
  left: 0;
  right: auto;
}

.gran-wa.open .gran-wa-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* HEADER */

.gran-wa-header {
  height: 84px;
  background: linear-gradient(135deg, #1fa34f, #1fa34f, #1fa34f);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: #fff;
  position: relative;
}

.gran-wa-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 0%, rgba(255,255,255,.28), transparent 36%);
  pointer-events: none;
}

.gran-wa-avatar {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 2;
  flex: none;
}

.gran-wa-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.9);
}

.gran-wa-online {
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 14px;
  height: 14px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: granOnlineDot 1.5s infinite;
}

.gran-wa-user {
  position: relative;
  z-index: 2;
}

.gran-wa-user h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.gran-wa-user p {
  margin: 4px 0 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: .95;
}

.gran-wa-user p span {
  width: 8px;
  height: 8px;
  background: #baffcf;
  border-radius: 50%;
  animation: granOnlinePulse 1.4s infinite;
}

.gran-wa-close {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  z-index: 3;
  transition: .25s ease;
}

.gran-wa-close:hover {
  background: rgba(0,0,0,.28);
  transform: rotate(90deg);
}

/* CHAT */

.gran-wa-chat {
  min-height: 265px;
  padding: 18px;
  background:
    linear-gradient(rgba(11,20,26,.94), rgba(11,20,26,.96)),
    radial-gradient(circle at top right, rgba(37,211,102,.18), transparent 35%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.035) 0px,
      rgba(255,255,255,.035) 1px,
      transparent 1px,
      transparent 10px
    );
}

.gran-wa-day {
  width: max-content;
  margin: 0 auto 18px;
  padding: 5px 13px;
  border-radius: 999px;
  background: #202c33;
  color: #cfd8dc;
  font-size: 11px;
}

/* MENSAGENS */

.gran-wa-message {
  width: max-content;
  max-width: 86%;
  background: #ffffff;
  color: #111;
  border-radius: 0 16px 16px 16px;
  padding: 10px 12px 7px 14px;
  margin-bottom: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,.18);
  animation: granMsgShow .35s ease forwards;
  position: relative;
}

.gran-wa-message::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
}

.gran-wa-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.gran-wa-message-time {
  margin-top: 4px;
  text-align: right;
  font-size: 10.5px;
  color: #667781;
}

.gran-wa-message-time i {
  color: #53bdeb;
  margin-left: 3px;
  font-size: 10px;
}

/* DIGITANDO */

.gran-wa-typing {
  width: max-content;
  background: #fff;
  padding: 12px 14px;
  border-radius: 0 16px 16px 16px;
  display: none;
  gap: 4px;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.18);
  position: relative;
}

.gran-wa-typing::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
}

.gran-wa-typing.active {
  display: flex;
}

.gran-wa-typing span {
  width: 8px;
  height: 8px;
  background: #8f9aa3;
  border-radius: 50%;
  animation: granTyping 1s infinite;
}

.gran-wa-typing span:nth-child(2) {
  animation-delay: .18s;
}

.gran-wa-typing span:nth-child(3) {
  animation-delay: .36s;
}

/* FOOTER */

.gran-wa-footer {
  padding: 18px;
  background: #111b21;
}

.gran-wa-cta {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #25d366, #00b04f);
  box-shadow: 0 15px 35px #25d365b6;
  transition: .25s ease;
}

.gran-wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(37,211,102,.42);
}

/* BOTÃO FLUTUANTE */

.gran-wa-float {
  width: 74px;
  height: 74px;
  border: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 23%),
    linear-gradient(135deg, #25d366, #00b04f);
  color: #fff;
  font-size: 34px;
  cursor: grab;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 45px #25d366,
    0 0 0 10px rgba(37,211,102,.10);
  overflow: visible;
  animation: granFloat 3s ease-in-out infinite, granShake 6s infinite;
}

.gran-wa-float:active {
  cursor: grabbing;
}

.gran-wa-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: granPulseRing 2s infinite;
}

.gran-wa-notification {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  background: #ff3b30;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 2px solid #fff;
  animation: granNotification 1s infinite;
  transition: .25s ease;
}

.gran-wa-float.read .gran-wa-notification {
  opacity: 0;
  transform: scale(0);
}

/* ANIMAÇÕES */

@keyframes granPulseRing {
  0% {
    transform: scale(.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes granNotification {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@keyframes granTyping {
  0%, 100% {
    transform: translateY(0);
    opacity: .4;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@keyframes granMsgShow {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes granOnlinePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(186,255,207,.85);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(186,255,207,0);
  }
}

@keyframes granOnlineDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37,211,102,.8);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 7px rgba(37,211,102,0);
  }
}

@keyframes granFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes granShake {
  0%, 82%, 100% {
    rotate: 0deg;
  }
  85% {
    rotate: 7deg;
  }
  88% {
    rotate: -7deg;
  }
  91% {
    rotate: 5deg;
  }
  94% {
    rotate: 0deg;
  }
}

/* MOBILE */

@media (max-width: 480px) {
  .gran-wa {
    right: 24px;
    bottom: 28px;
  }

  .gran-wa-card {
    width: calc(100vw - 28px);
    bottom: 88px;
  }

  .gran-wa-float {
    width: 66px;
    height: 66px;
    font-size: 30px;
  }
}


/* SESSÃO QUEM SOMOS */
.sobre-safe {
  width: 100%;
  padding: 110px 0;
  background: linear-gradient(180deg, #f4f8ff 0%, #edf4ff 100%);
  overflow: hidden;
}

.sobre-safe * {
  box-sizing: border-box;
}

.sobre-safe-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.sobre-safe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
}

.sobre-safe-left,
.sobre-safe-right {
  width: 100%;
  min-width: 0;
}

.sobre-safe-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(30, 106, 255, 0.10);
  color: #155df0;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(21, 93, 240, 0.08);
}

.sobre-safe-title {
  margin: 0 0 22px;
  color: #232833;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sobre-safe-title span {
  color: #1570ff;
}

.sobre-safe-text {
  margin: 0 0 38px;
  max-width: 560px;
  color: #5d6675;
  font-size: 18px;
  line-height: 1.75;
}

.sobre-safe-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sobre-safe-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.70);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.sobre-safe-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(19, 45, 94, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.sobre-safe-icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1562ff, #24b4ff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(21, 98, 255, 0.18);
}

.sobre-safe-item-content h3 {
  margin: 0 0 8px;
  color: #27303a;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 700;
}

.sobre-safe-item-content p {
  margin: 0;
  color: #697281;
  font-size: 17px;
  line-height: 1.6;
}

.sobre-safe-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-top: 46px;
}

.sobre-safe-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sobre-safe-stat-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.sobre-safe-stat-number strong,
.sobre-safe-stat-number span {
  color: #0f5ae2;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1;
  font-weight: 800;
}

.sobre-safe-stat small {
  color: #6c7483;
  font-size: 15px;
  line-height: 1.4;
}

.sobre-safe-media {
  position: relative;
  width: 100%;
}

.sobre-safe-video-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(25, 43, 88, 0.16);
  margin-bottom: 16px;
  background: #dbe7ff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sobre-safe-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(25, 43, 88, 0.20);
}

.sobre-safe-video-card img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sobre-safe-video-card:hover img {
  transform: scale(1.06);
}

.sobre-safe-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 15, 36, 0.28) 0%,
    rgba(5, 15, 36, 0.12) 45%,
    rgba(5, 15, 36, 0.40) 100%
  );
  z-index: 1;
}

.sobre-safe-video-top {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 15px;
  border-radius: 16px;
  background: rgba(10, 24, 56, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sobre-safe-video-top strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.sobre-safe-video-top span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.sobre-safe-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff314f, #ff1010);
  color: #ffffff;
  text-decoration: none;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(255, 30, 30, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulsePlay 2.2s infinite;
}

.sobre-safe-video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 52px rgba(255, 30, 30, 0.32);
}

.sobre-safe-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sobre-safe-photo-card {
  border-radius: 20px;
  overflow: hidden;
  background: #dce8ff;
  box-shadow: 0 18px 40px rgba(16, 35, 74, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-safe-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(16, 35, 74, 0.16);
}

.sobre-safe-photo-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sobre-safe-photo-card:hover img {
  transform: scale(1.08);
}

.sobre-safe-seal {
  position: absolute;
  right: 20px;
  bottom: -10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #0e61eb;
  box-shadow: 0 18px 40px rgba(24, 41, 78, 0.14);
}

.sobre-safe-seal-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1562ff, #24b4ff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.sobre-safe-seal span {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.js-reveal {
  opacity: 1;
  transform: none;
}

html.js .js-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js .js-reveal.reveal-show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 38, 38, 0.38), 0 18px 45px rgba(255, 30, 30, 0.25);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(255, 38, 38, 0), 0 18px 45px rgba(255, 30, 30, 0.25);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 38, 38, 0), 0 18px 45px rgba(255, 30, 30, 0.25);
  }
}

/* TABLET */
@media (max-width: 1150px) {
  .sobre-safe {
    padding: 90px 0;
  }

  .sobre-safe-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-safe-left,
  .sobre-safe-right {
    max-width: 100%;
  }

  .sobre-safe-text {
    max-width: 100%;
  }

  .sobre-safe-media {
    max-width: 760px;
    margin: 0 auto;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .sobre-safe {
    padding: 75px 0;
  }

  .sobre-safe-container {
    padding: 0 18px;
  }

  .sobre-safe-grid {
    gap: 34px;
  }

  .sobre-safe-badge {
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 16px;
  }

  .sobre-safe-title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.10;
    margin-bottom: 16px;
  }

  .sobre-safe-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .sobre-safe-list {
    gap: 18px;
  }

  .sobre-safe-item {
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .sobre-safe-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
  }

  .sobre-safe-item-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .sobre-safe-item-content p {
    font-size: 14px;
    line-height: 1.55;
  }

  .sobre-safe-stats {
    gap: 20px;
    margin-top: 30px;
    justify-content: space-between;
  }

  .sobre-safe-stat {
    min-width: calc(50% - 10px);
  }

  .sobre-safe-stat-number strong,
  .sobre-safe-stat-number span {
    font-size: clamp(28px, 7vw, 40px);
  }

  .sobre-safe-stat small {
    font-size: 13px;
  }

  .sobre-safe-video-card {
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .sobre-safe-video-card img {
    height: 220px;
  }

  .sobre-safe-video-top {
    top: 12px;
    left: 12px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .sobre-safe-video-top strong {
    font-size: 13px;
  }

  .sobre-safe-video-top span {
    font-size: 12px;
  }

  .sobre-safe-video-play {
    width: 68px;
    height: 68px;
    font-size: 24px;
    border-radius: 18px;
  }

  .sobre-safe-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sobre-safe-photo-card {
    border-radius: 18px;
  }

  .sobre-safe-photo-card img {
    height: 200px;
  }

  .sobre-safe-seal {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
    padding: 14px 16px;
    justify-content: center;
    border-radius: 16px;
    text-align: center;
  }

  .sobre-safe-seal span {
    font-size: 14px;
    white-space: normal;
  }
}

/* CELULAR PEQUENO */
@media (max-width: 480px) {
  .sobre-safe {
    padding: 65px 0;
  }

  .sobre-safe-container {
    padding: 0 14px;
  }

  .sobre-safe-title {
    font-size: clamp(24px, 8.5vw, 32px);
  }

  .sobre-safe-text {
    font-size: 14px;
  }

  .sobre-safe-item {
    padding: 12px;
  }

  .sobre-safe-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .sobre-safe-item-content h3 {
    font-size: 16px;
  }

  .sobre-safe-item-content p {
    font-size: 13px;
  }

  .sobre-safe-stats {
    flex-direction: column;
    gap: 16px;
  }

  .sobre-safe-stat {
    min-width: 100%;
  }

  .sobre-safe-video-card img {
    height: 200px;
  }

  .sobre-safe-photo-card img {
    height: 180px;
  }

  .sobre-safe-video-play {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }
}

/* SESSÃO NOSSAS SOLUÇÕES */
.hsol-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  font-family: "Poppins", Arial, sans-serif;
  background:
    linear-gradient(rgba(37, 99, 235, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .10) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
  background-size: 70px 70px, 70px 70px, 100% 100%;
}

.hsol-head {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.hsol-head span {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 999px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
  font-weight: 900;
}

.hsol-head h2 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .95;
  color: #151820;
  letter-spacing: -2px;
}

.hsol-head h2 strong {
  color: #2563eb;
}

.hsol-head p {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.hsol-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.hsol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255,255,255,0.85);
backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, .14);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
  color: #151820;
  text-decoration: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .7s ease, transform .7s ease, box-shadow .35s ease, border-color .35s ease;
}

.hsol-card.show {
  opacity: 1;
  transform: translateY(0);
}

.hsol-card::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 42px;
  height: 42px;
  border-top: 2px solid rgba(37, 99, 235, .25);
  border-right: 2px solid rgba(37, 99, 235, .25);
  border-radius: 0 18px 0 0;
}

.hsol-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #dbeafe;
  transition: .35s ease;
}

.hsol-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  font-size: 30px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 18px 40px rgba(37, 99, 235, .26);
  animation: hsolIconFloat 4s ease-in-out infinite;
}

.hsol-card h3 {
  position: relative;
  z-index: 2;
  margin: 28px 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

.hsol-card p {
  position: relative;
  z-index: 2;
  color: #52627e;
  line-height: 1.7;
  font-size: 16px;
}

.hsol-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: .35s ease;
}

.hsol-card span i {
  font-size: 12px;
  transition: .35s ease;
}

.hsol-card:hover {
  transform: translateY(-12px);
  border-color: rgba(37, 99, 235, .42);
  box-shadow: 0 30px 90px rgba(37, 99, 235, .16);
}

.hsol-card:hover::after {
  transform: scale(1.7);
}

.hsol-card:hover span {
  transform: translateX(6px);
}

.hsol-card:hover span i {
  transform: translateX(5px);
}

.hsol-action {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.hsol-main-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 18px 45px rgba(37, 99, 235, .28);
  transition: .35s ease;
}

.hsol-main-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(37, 99, 235, .36);
}

@keyframes hsolIconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .hsol-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .hsol-section {
    padding: 80px 16px;
  }

  .hsol-grid {
    grid-template-columns: 1fr;
  }

  .hsol-card {
    min-height: 340px;
  }

  .hsol-main-btn {
    width: 100%;
  }
}






























































/* SESSÃO FALE CONOSCO */
.gran-hero,
.gran-hero * {
  box-sizing: border-box;
}

.gran-hero {
  width: 100%;
  min-height: 520px;
  padding: 55px 20px;
  background:
    radial-gradient(circle at 80% 25%, rgba(0, 63, 243, 0.18), transparent 35%),
    linear-gradient(120deg, #f8fbff 0%, #edf4ff 55%, #ffffff 100%);
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.gran-hero__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 35px;
}

.gran-hero__tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 63, 243, 0.08);
  border: 1px solid rgba(0, 63, 243, 0.25);
  color: #003ff3;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 20px;
}

.gran-hero h1 {
  margin: 0;
  color: #071022;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.gran-hero h1 span {
  color: #003ff3;
}

.gran-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.gran-hero__cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gran-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.gran-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: #003ff3;
  font-size: 16px;
  flex-shrink: 0;
}

.gran-card strong {
  display: block;
  color: #071022;
  font-size: 15px;
  font-weight: 900;
}

.gran-card small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.gran-whats {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border-radius: 18px;
  background: rgba(0, 168, 65, 0.08);
  border: 1px solid rgba(0, 168, 65, 0.32);
  color: #00a841;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  animation: granWhatsPulse 2.2s infinite;
}

.gran-whats::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 65, 0.18), transparent);
  animation: granWhatsShine 2.8s infinite;
}

.gran-whats i,
.gran-whats {
  z-index: 1;
}

.gran-hero__visual {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gran-orbit {
  position: absolute;
  width: 410px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 63, 243, 0.25);
  animation: granOrbit 12s linear infinite;
}

.gran-phone {
  position: relative;
  z-index: 3;
  width: min(370px, 100%);
  display: block;
  filter: drop-shadow(0 30px 42px rgba(7, 13, 29, 0.28));
  animation: granFloat 4s ease-in-out infinite;
}

.gran-icon {
  position: absolute;
  z-index: 4;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 63, 243, 0.16);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  animation: granIconFloat 3.5s ease-in-out infinite;
}

.gran-icon i {
  color: #003ff3;
  font-size: 24px;
}

.gran-icon span {
  color: #071022;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 900;
}

.gran-icon--one {
  top: 28px;
  left: 25px;
}

.gran-icon--two {
  top: 55px;
  right: 5px;
}

.gran-icon--three {
  right: 10px;
  bottom: 42px;
}

.gran-icon--four {
  left: 22px;
  bottom: 48px;
}

@keyframes granFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes granIconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes granOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes granWhatsPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 168, 65, 0.25);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 168, 65, 0);
  }
}

@keyframes granWhatsShine {
  0% {
    left: -120%;
  }

  60%, 100% {
    left: 120%;
  }
}

@media (max-width: 900px) {
  .gran-hero {
    padding: 35px 12px;
  }

  .gran-hero__wrap {
    grid-template-columns: 1fr 280px;
    gap: 12px;
  }

  .gran-hero h1 {
    font-size: 28px;
  }

  .gran-hero p {
    font-size: 14px;
  }

  .gran-hero__cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .gran-hero__visual {
    min-height: 320px;
  }

  .gran-phone {
    width: 190px;
  }

  .gran-orbit {
    width: 260px;
    height: 220px;
  }

  .gran-icon {
    width: 64px;
    height: 64px;
  }

  .gran-icon i {
    font-size: 17px;
  }

  .gran-icon span {
    font-size: 7.5px;
  }
}

@media (max-width: 560px) {
  .gran-hero {
    padding: 28px 10px;
  }

  .gran-hero__wrap {
    grid-template-columns: 1fr 145px;
    gap: 8px;
  }

  .gran-hero__tag {
    font-size: 9px;
    padding: 7px 10px;
    margin-bottom: 10px;
  }

  .gran-hero h1 {
    font-size: 20px;
    letter-spacing: -0.4px;
  }

  .gran-hero p {
    font-size: 11px;
    line-height: 1.45;
  }

  .gran-hero__cards {
    gap: 8px;
    margin-top: 14px;
  }

  .gran-card {
    min-height: auto;
    padding: 8px;
    border-radius: 12px;
    gap: 8px;
  }

  .gran-card i {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 9px;
  }

  .gran-card strong {
    font-size: 10.5px;
  }

  .gran-card small {
    font-size: 8px;
  }

  .gran-whats {
    width: 100%;
    max-width: 240px;
    padding: 11px 12px;
    font-size: 12px;
    border-radius: 14px;
    margin-top: 15px;
  }

  .gran-hero__visual {
    min-height: 250px;
  }

  .gran-phone {
    width: 95px;
  }

  .gran-orbit {
    width: 145px;
    height: 135px;
  }

  .gran-icon {
    width: 38px;
    height: 38px;
    gap: 2px;
  }

  .gran-icon i {
    font-size: 11px;
  }

  .gran-icon span {
    font-size: 5px;
  }

  .gran-icon--one {
    top: 45px;
    left: -5px;
  }

  .gran-icon--two {
    top: 55px;
    right: -6px;
  }

  .gran-icon--three {
    right: -6px;
    bottom: 48px;
  }

  .gran-icon--four {
    left: -6px;
    bottom: 55px;
  }
}




/* SESSÃO PERGUNTAS FREQUENTES */
.faq-blue {
  width: 100%;
  padding: 70px 20px;
  background: #f4f6fa;
}

.faq-blue * {
  box-sizing: border-box;
}

.faq-blue__container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-blue__header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-blue__header h2 {
  margin: 0;
  color: #12233f;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faq-blue__header h2 span {
  color: #1562ff;
}

.faq-blue__header p {
  margin: 12px auto 0;
  max-width: 760px;
  color: #5f6979;
  font-size: 16px;
  line-height: 1.7;
}

.faq-blue__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-blue__item {
  border-radius: 12px;
  overflow: hidden;
  background: #edf3ff;
  border: 1px solid rgba(21, 98, 255, 0.08);
  box-shadow: 0 10px 24px rgba(10, 42, 96, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-blue__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 42, 96, 0.08);
}

.faq-blue__item.active {
  background: #f7faff;
  box-shadow: 0 16px 30px rgba(10, 42, 96, 0.08);
}

.faq-blue__question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: inherit;
}

.faq-blue__question::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1562ff, #4da2ff);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.95;
}

.faq-blue__item:not(.active) .faq-blue__question::after {
  transform: scaleX(0.65);
  opacity: 0.75;
}

.faq-blue__question span:first-child {
  color: #162233;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.faq-blue__icon {
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.faq-blue__icon::before,
.faq-blue__icon::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 12px;
  height: 2px;
  background: #1562ff;
  border-radius: 999px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-blue__icon::before {
  left: 0;
  transform: rotate(45deg);
}

.faq-blue__icon::after {
  right: 0;
  transform: rotate(-45deg);
}

.faq-blue__item.active .faq-blue__icon::before {
  transform: rotate(-45deg);
}

.faq-blue__item.active .faq-blue__icon::after {
  transform: rotate(45deg);
}

.faq-blue__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s ease;
}

.faq-blue__item.active .faq-blue__answer {
  grid-template-rows: 1fr;
}

.faq-blue__answer-content {
  overflow: hidden;
  padding: 0 22px;
  color: #576274;
  font-size: 15px;
  line-height: 1.75;
}

.faq-blue__item.active .faq-blue__answer-content {
  padding: 14px 22px 22px;
}

.faq-blue__item {
  opacity: 0;
  transform: translateY(24px);
  animation: faqFadeUp 0.65s ease forwards;
}

.faq-blue__item:nth-child(1) { animation-delay: 0.08s; }
.faq-blue__item:nth-child(2) { animation-delay: 0.16s; }
.faq-blue__item:nth-child(3) { animation-delay: 0.24s; }
.faq-blue__item:nth-child(4) { animation-delay: 0.32s; }
.faq-blue__item:nth-child(5) { animation-delay: 0.40s; }

@keyframes faqFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .faq-blue {
    padding: 60px 18px;
  }

  .faq-blue__question {
    padding: 18px 18px;
  }

  .faq-blue__question::after {
    left: 18px;
    right: 18px;
  }

  .faq-blue__question span:first-child {
    font-size: 16px;
  }

  .faq-blue__item.active .faq-blue__answer-content {
    padding: 12px 18px 18px;
  }
}

@media (max-width: 600px) {
  .faq-blue {
    padding: 50px 14px;
  }

  .faq-blue__header {
    margin-bottom: 24px;
  }

  .faq-blue__header h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .faq-blue__header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-blue__list {
    gap: 12px;
  }

  .faq-blue__question {
    padding: 16px 14px;
    gap: 14px;
  }

  .faq-blue__question::after {
    left: 14px;
    right: 14px;
    height: 2px;
  }

  .faq-blue__question span:first-child {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-blue__icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
  }

  .faq-blue__icon::before,
  .faq-blue__icon::after {
    width: 10px;
    top: 7px;
  }

  .faq-blue__answer-content {
    font-size: 14px;
    line-height: 1.65;
    padding: 0 14px;
  }

  .faq-blue__item.active .faq-blue__answer-content {
    padding: 12px 14px 16px;
  }
}



/* SESSÃO HORARIOS DE FUNCIONAMENTO /*
/* =========================================
   SESSÃO PREMIUM - HORÁRIOS DE FUNCIONAMENTO
========================================= */
.horarios-premium {
  width: 100%;
  padding: 42px 20px;
  position: relative;
  overflow: hidden;
}

.horarios-premium::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13), transparent 70%);
  pointer-events: none;
}

.horarios-premium::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.10), transparent 72%);
  pointer-events: none;
}

.horarios-premium__container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 2;
}

.horarios-premium__visual {
  flex: 0 0 34%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: premiumFloat 4.5s ease-in-out infinite;
}

.horarios-premium__image {
  width: 150%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(10, 37, 84, 0.12));
}

.horarios-premium__content {
  flex: 1;
  max-width: 690px;
}

.horarios-premium__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.12), rgba(0, 183, 255, 0.10));
  color: #2563eb;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
  animation: badgePulse 2.6s infinite;
}

.horarios-premium__title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -1.7px;
  font-weight: 900;
  color: #15223b;
  max-width: 580px;
}

.horarios-premium__title span {
  display: block;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 35%, #00a6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.horarios-premium__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(37, 99, 235, 0.10);
  color: #17315c;
  font-size: 0.90rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(18, 54, 120, 0.07);
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
}

.horarios-premium__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: statusPulse 1.8s infinite;
}

.horarios-premium__status.fechado .horarios-premium__status-dot {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
}

.horarios-premium__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.horario-linha {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(21, 34, 59, 0.10);
  transition: 0.28s ease;
}

.horario-linha:hover {
  transform: translateX(6px);
}

.horario-linha__dia {
  font-size: 0.98rem;
  font-weight: 700;
  color: #17253d;
}

.horario-linha__hora {
  font-size: 0.94rem;
  font-weight: 600;
  color: #47628f;
  text-align: right;
}

.horario-linha.ativo {
  padding-left: 14px;
}

.horario-linha.ativo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 66%;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb 0%, #00a6ff 100%);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.25);
}

.horario-linha.ativo .horario-linha__dia {
  color: #123d9b;
}

.horario-linha.ativo .horario-linha__hora {
  color: #1d5fe4;
  font-weight: 800;
}

.horario-linha.ativo .horario-linha__hora::after {
  content: " • Hoje";
  font-weight: 800;
}

@keyframes premiumFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .horarios-premium {
    padding: 36px 18px;
  }

  .horarios-premium__container {
    gap: 24px;
  }

  .horarios-premium__visual {
    flex: 0 0 30%;
  }

  .horarios-premium__image {
    max-width: 280px;
  }

  .horarios-premium__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
  }
}

@media (max-width: 768px) {
  .horarios-premium {
    padding: 30px 14px;
  }

  .horarios-premium__container {
    display: block;
  }

  .horarios-premium__visual {
    display: none;
  }

  .horarios-premium__content {
    max-width: 100%;
    text-align: center;
  }

  .horarios-premium__title {
    font-size: 2rem;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .horarios-premium__status {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .horarios-premium__list {
    gap: 4px;
  }

  .horario-linha {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 12px 0;
  }

  .horario-linha__hora {
    text-align: left;
  }

  .horario-linha.ativo {
    padding-left: 12px;
  }
}

@media (max-width: 480px) {
  .horarios-premium__badge {
    font-size: 0.78rem;
    padding: 8px 13px;
  }

  .horarios-premium__title {
    font-size: 1.7rem;
    line-height: 1;
  }

  .horario-linha__dia {
    font-size: 0.92rem;
  }

  .horario-linha__hora {
    font-size: 0.88rem;
  }
}

/* SESSÃO CONHEÇA O GRANHUB */
.granhub-premium,
.granhub-premium * {
  box-sizing: border-box;
}

.granhub-premium {
  width: 100%;
  padding: 58px 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 63, 243, 0.18), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(0, 140, 255, 0.12), transparent 35%),
    linear-gradient(120deg, #f8fbff 0%, #eef5ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.granhub-premium::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1050px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #003ff3, #0066ff);
  opacity: 0.06;
  filter: blur(80px);
  border-radius: 60px;
  z-index: 0;
}

.granhub-premium__container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 2;
}

.granhub-premium__text {
  position: relative;
  z-index: 5;
}

.granhub-premium__tag {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(0, 63, 243, 0.10);
  border: 1px solid rgba(0, 63, 243, 0.24);
  color: #003ff3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.granhub-premium h2 {
  margin: 18px 0 0;
  color: #071022;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.granhub-premium h2 span {
  color: #003ff3;
}

.granhub-premium p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.granhub-premium__items {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.granhub-premium__item {
  max-width: 410px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #071022;
  font-size: 14px;
  font-weight: 800;
}

.granhub-premium__item i {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: rgba(0, 63, 243, 0.10);
  color: #003ff3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.granhub-premium__btn {
  margin-top: 28px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 17px 25px;
  border-radius: 16px;
  background: linear-gradient(135deg, #003ff3, #0066ff);
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 63, 243, 0.34);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.granhub-premium__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  animation: premiumBtnShine 3s infinite;
}

.granhub-premium__btn span,
.granhub-premium__btn i {
  position: relative;
  z-index: 2;
}

.granhub-premium__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 63, 243, 0.48);
}

/* VISUAL */

.granhub-premium__visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.granhub-premium__circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 63, 243, 0.32),
    rgba(0, 63, 243, 0.08) 60%,
    transparent 75%
  );
  filter: blur(2px);
  animation: premiumPulse 4s ease-in-out infinite;
}

.granhub-premium__line {
  position: absolute;
  width: 520px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 63, 243, 0.45);
  animation: premiumRotate 14s linear infinite;
}

.granhub-premium__line--two {
  width: 350px;
  height: 460px;
  border-color: rgba(0, 63, 243, 0.18);
  animation-duration: 22s;
  animation-direction: reverse;
}

.granhub-premium__shine {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: linear-gradient(120deg, transparent, rgba(0, 63, 243, 0.16), transparent);
  transform: rotate(25deg);
  animation: premiumLightSweep 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.granhub-premium__img {
  position: relative;
  z-index: 3;
  width: min(650px, 100%);
  display: block;
  filter: drop-shadow(0 35px 55px rgba(0, 63, 243, 0.25));
  animation: premiumFloat 4s ease-in-out infinite;
  transition: transform 0.18s ease, filter 0.25s ease;
  will-change: transform;
}

.granhub-premium__mini-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 63, 243, 0.15);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
  animation: premiumCardFloat 3.6s ease-in-out infinite;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease;
  will-change: transform;
}

.granhub-premium__mini-card i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eaf2ff;
  color: #003ff3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.granhub-premium__mini-card strong {
  display: block;
  color: #071022;
  font-size: 14px;
  font-weight: 900;
}

.granhub-premium__mini-card small {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-top: 2px;
  font-weight: 700;
}

.granhub-premium__mini-card--top {
  top: 35px;
  left: 0;
}

.granhub-premium__mini-card--bottom {
  right: 0;
  bottom: 35px;
  animation-delay: 0.5s;
}

/* ANIMAÇÕES */

@keyframes premiumFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes premiumCardFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes premiumRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes premiumPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes premiumBtnShine {
  0% {
    left: -120%;
  }

  60%, 100% {
    left: 130%;
  }
}

@keyframes premiumLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-40px) rotate(25deg);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(60px) rotate(25deg);
  }
}

/* RESPONSIVO */

@media (max-width: 850px) {
  .granhub-premium {
    padding: 42px 14px;
  }

  .granhub-premium__container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .granhub-premium p,
  .granhub-premium__item {
    margin-left: auto;
    margin-right: auto;
  }

  .granhub-premium__btn {
    margin-left: auto;
    margin-right: auto;
  }

  .granhub-premium__visual {
    min-height: 360px;
  }

  .granhub-premium__img {
    width: min(430px, 95%);
  }

  .granhub-premium__circle {
    width: 350px;
    height: 350px;
  }

  .granhub-premium__line {
    width: 430px;
    height: 270px;
  }

  .granhub-premium__line--two {
    width: 280px;
    height: 370px;
  }
}

@media (max-width: 520px) {
  .granhub-premium {
    padding: 36px 12px;
  }

  .granhub-premium h2 {
    font-size: 31px;
  }

  .granhub-premium p {
    font-size: 14px;
  }

  .granhub-premium__visual {
    min-height: 315px;
  }

  .granhub-premium__circle {
    width: 265px;
    height: 265px;
  }

  .granhub-premium__line {
    width: 310px;
    height: 210px;
  }

  .granhub-premium__line--two {
    width: 210px;
    height: 300px;
  }

  .granhub-premium__img {
    width: 290px;
  }

  .granhub-premium__mini-card {
    min-width: auto;
    padding: 10px 12px;
    gap: 8px;
  }

  .granhub-premium__mini-card i {
    width: 32px;
    height: 32px;
  }

  .granhub-premium__mini-card strong {
    font-size: 11px;
  }

  .granhub-premium__mini-card small {
    display: none;
  }

  .granhub-premium__mini-card--top {
    top: 8px;
    left: 0;
  }

  .granhub-premium__mini-card--bottom {
    right: 0;
    bottom: 8px;
  }

  .granhub-premium__btn {
    width: 100%;
    justify-content: center;
  }
}


/* CORREÇÃO GRADE DE FUNDO */ 
/* ===================================
   GRADE CLARA PREMIUM NO SITE TODO
=================================== */

body{
  background:
    linear-gradient(rgba(37, 99, 235, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .10) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);

  background-size: 70px 70px, 70px 70px, 100% 100%;
}

/* LIBERA A GRADE NAS SEÇÕES */
section{
  background: transparent !important;
}

/* RODAPE */
/* ==========================================
   FOOTER GRANSAFETY PREMIUM
========================================== */


.gs-footer{

position:relative;
overflow:hidden;

background:

linear-gradient(
135deg,
#f8fbff 0%,
#ffffff 45%,
#edf4ff 100%
);


padding:85px 6% 30px;

color:#042444;

font-family:inherit;


}



/* FUNDO */


.gs-footer-glow{

position:absolute;


width:520px;

height:520px;


right:-200px;

top:-200px;



background:

radial-gradient(
circle,
rgba(12,90,219,.18),
transparent 70%
);



animation:

footerGlow 8s infinite alternate;


pointer-events:none;

}




.gs-footer-grid{


position:absolute;

inset:0;


background-image:

linear-gradient(
rgba(12,90,219,.03) 1px,
transparent 1px
),

linear-gradient(
90deg,
rgba(12,90,219,.03) 1px,
transparent 1px
);


background-size:

60px 60px;


opacity:.4;

}






@keyframes footerGlow{


from{

transform:translateY(0);

}


to{

transform:translateY(40px);

}


}









/* CTA */


.gs-footer-cta{


position:relative;

z-index:2;


max-width:1200px;


margin:0 auto 65px;


padding:38px 45px;


border-radius:28px;



background:


linear-gradient(
135deg,
#042444,
#063b78
);



display:flex;


justify-content:space-between;


align-items:center;


gap:30px;


box-shadow:


0 25px 60px rgba(4,36,68,.18);



overflow:hidden;


}



.gs-footer-cta::after{


content:"";


position:absolute;


width:280px;

height:280px;


right:-120px;

bottom:-140px;


background:

rgba(255,255,255,.08);



border-radius:50%;


}






.gs-footer-cta-text span{


color:#8bb8ff;


font-size:13px;


font-weight:800;


letter-spacing:1.5px;



}




.gs-footer-cta-text h2{


margin:12px 0;


font-size:32px;


color:white;


font-weight:850;


}



.gs-footer-cta-text p{


color:#d5e5ff;


max-width:560px;


line-height:1.7;


}





.gs-footer-main-btn{


position:relative;

z-index:2;


background:white;


color:#042444;


padding:16px 28px;


border-radius:50px;


text-decoration:none;


font-weight:800;


display:flex;


align-items:center;


gap:12px;


transition:.35s;


}




.gs-footer-main-btn:hover{


background:#0c5adb;


color:white;


transform:translateY(-5px);


}









/* CONTAINER */


.gs-footer-container{


position:relative;

z-index:2;


max-width:1200px;


margin:auto;


display:grid;


grid-template-columns:

1.5fr 1fr 1fr 1fr;


gap:45px;



}








/* LOGO */


.gs-footer-brand img{


width:220px;


margin-bottom:22px;


transition:.4s;


}




.gs-footer-brand img:hover{


transform:

scale(1.07);


filter:

drop-shadow(
0 10px 25px
rgba(12,90,219,.35)
);



}




.gs-footer-brand p{


color:#60738b;


line-height:1.8;


font-size:15px;


}





/* SOCIAL */


.gs-social{


display:flex;


gap:12px;


margin-top:25px;


}



.gs-social a{


width:42px;


height:42px;


background:white;


border-radius:50%;


display:flex;


align-items:center;


justify-content:center;


color:#042444;


text-decoration:none;


box-shadow:

0 10px 25px rgba(4,36,68,.12);


transition:.3s;


}



.gs-social a:hover{


background:#0c5adb;


color:white;


transform:

translateY(-6px);


}








/* COLUNAS */


.gs-footer-column h3{


font-size:18px;


font-weight:800;


margin-bottom:25px;


position:relative;


}



.gs-footer-column h3::after{


content:"";


display:block;


width:40px;


height:3px;


background:#0c5adb;


border-radius:20px;


margin-top:10px;


transition:.3s;


}



.gs-footer-column:hover h3::after{


width:75px;


}




.gs-footer-column a{


display:block;


text-decoration:none;


color:#62748a;


margin-bottom:14px;


font-size:15px;


transition:.3s;


}



.gs-footer-column a:hover{


color:#0c5adb;


transform:translateX(6px);


}





/* GRANHUB */


.gs-highlight{


background:


linear-gradient(
135deg,
#0c5adb,
#087cff
);



color:white!important;


padding:13px 18px;


border-radius:14px;


font-weight:800;


box-shadow:

0 15px 30px rgba(12,90,219,.25);



}

.granhub-btn-acesso{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:14px 20px;
    border-radius:14px;
    background:linear-gradient(135deg,#0c5adb,#0c5adb);
    color:#fff !important;
    font-weight:700;
    text-decoration:none !important;
    font-size:15px;
    box-shadow:0 8px 25px rgba(4,36,68,.25);
    transition:.3s;
}

.granhub-btn-acesso,
.granhub-btn-acesso:visited,
.granhub-btn-acesso:hover,
.granhub-btn-acesso:active{
    color:#fff !important;
}

.granhub-btn-acesso i{
    color:#fff !important;
    font-size:18px;
}

.granhub-btn-acesso:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#0a3d7a,#0f4fa1);
    box-shadow:0 12px 35px rgba(4,36,68,.35);
}










/* LEGAL */


.gs-footer-legal{


position:relative;


z-index:2;


max-width:1200px;


margin:55px auto 0;


padding:25px;


border-radius:18px;


background:white;


box-shadow:


0 15px 40px rgba(4,36,68,.08);


display:flex;


justify-content:space-between;


align-items:center;


gap:20px;


}



.legal-title{


font-weight:800;


color:#042444;


}



.legal-links{


display:flex;


gap:15px;


flex-wrap:wrap;


}



.legal-links a{


padding:10px 18px;


background:#f1f6ff;


border-radius:20px;


text-decoration:none;


color:#53657b;


font-size:14px;


transition:.3s;


}



.legal-links a:hover{


background:#0c5adb;


color:white;


}








/* FINAL */


.gs-footer-bottom{


position:relative;


z-index:2;


max-width:1200px;


margin:30px auto 0;


padding-top:25px;


border-top:

1px solid rgba(4,36,68,.12);



display:flex;


justify-content:space-between;


color:#68798d;


font-size:14px;


}



.gs-footer-bottom strong{


color:#042444;


}









/* REVEAL */


.reveal{


opacity:0;


transform:

translateY(35px);


transition:

.8s ease;


}



.reveal.active{


opacity:1;


transform:

translateY(0);


}








/* RESPONSIVO */


@media(max-width:950px){


.gs-footer-container{


grid-template-columns:repeat(2,1fr);


}



.gs-footer-cta{


flex-direction:column;


text-align:center;


}



.gs-footer-legal{


flex-direction:column;


}


}



@media(max-width:600px){


.gs-footer{


padding:60px 5% 25px;


}



.gs-footer-container{


grid-template-columns:1fr;


}



.gs-footer-bottom{


flex-direction:column;


text-align:center;


}



.gs-footer-cta{


padding:30px;


}



.gs-footer-cta-text h2{


font-size:24px;


}


}

/* AREA DO DESENVOLVIDO POR */
.gs-footer-bottom{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}

.dev-info-btn{
  background:none;
  border:0;
  padding:0;
  margin:0;
  cursor:pointer;
  color:#9ca3af;
  font-size:14px;
  font-family:inherit;
  transition:.3s ease;
}

.dev-info-btn strong{
  color:#0046a8;
}

.dev-info-btn:hover{
  color:#fff;
  transform:translateY(-2px);
}

/* FUNDO DESFOCADO NEUTRO */
.dev-panel-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:999998;
  transition:.35s ease;
}

.dev-panel-overlay.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* PAINEL LATERAL */
.dev-panel{
  position:fixed;
  top:0;
  right:0;
  width:440px;
  max-width:100%;
  height:100dvh;
  background:#fff;
  z-index:999999;
  transform:translateX(105%);
  transition:.55s cubic-bezier(.2,.9,.2,1);
  box-shadow:-30px 0 80px rgba(0,0,0,.28);
  overflow-y:auto;
  overflow-x:hidden;
}

.dev-panel.active{
  transform:translateX(0);
}

.dev-panel-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#042444;
  cursor:pointer;
  z-index:20;
  font-size:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.16);
  transition:.3s ease;
}

.dev-panel-close:hover{
  transform:rotate(90deg) scale(1.05);
}

/* TOPO VISUAL */
.dev-panel-hero{
  position:relative;
  min-height:260px;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
}

.dev-panel-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(4,36,68,.52),rgba(4,36,68,.92)),
    url("Img/dev-background.jpg");
  background-size:cover;
  background-position:center;
  transform:scale(1.08);
  animation:devPanelBg 12s ease-in-out infinite alternate;
}

@keyframes devPanelBg{
  from{
    transform:scale(1.08) translateX(0);
  }
  to{
    transform:scale(1.16) translateX(-14px);
  }
}

.dev-panel-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.16),transparent);
  transform:translateX(-120%);
  animation:devPanelShine 5s infinite;
}

@keyframes devPanelShine{
  to{
    transform:translateX(130%);
  }
}

.dev-panel-logo{
  position:relative;
  z-index:2;
  width:220px;
  max-width:85%;
  filter:drop-shadow(0 14px 28px rgba(0,0,0,.45));
  animation:devLogoIn .8s ease both;
}

@keyframes devLogoIn{
  from{
    opacity:0;
    transform:translateY(-12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.dev-panel-icon{
  position:relative;
  z-index:2;
  width:92px;
  height:92px;
  border-radius:26px;
  background:rgba(255,255,255,.14);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.18);
  animation:devFloatIcon 3s ease-in-out infinite;
}

.dev-panel-icon::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:32px;
  border:1px dashed rgba(255,255,255,.36);
  animation:devRotate 9s linear infinite;
}

@keyframes devFloatIcon{
  50%{
    transform:translateY(-8px);
  }
}

@keyframes devRotate{
  to{
    transform:rotate(360deg);
  }
}

/* CONTEÚDO */
.dev-panel-content{
  padding:28px;
}

.dev-panel-tag{
  display:inline-block;
  background:#eef6ff;
  color:#0b4d91;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.dev-panel-content h2{
  margin:16px 0 10px;
  color:#042444;
  font-size:30px;
  line-height:1.08;
}

.dev-panel-content p{
  margin:0 0 15px;
  color:#5f6f86;
  font-size:14px;
  line-height:1.6;
}

.dev-panel-status{
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:15px;
  background:#ecfdf3;
  color:#178348;
  font-size:13px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:9px;
}

.dev-panel-status span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 7px rgba(34,197,94,.14);
  animation:devStatusPulse 1.4s infinite;
}

@keyframes devStatusPulse{
  50%{
    opacity:.45;
  }
}

.dev-panel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.dev-panel-grid div{
  background:#f8fafc;
  border:1px solid #e7edf5;
  border-radius:16px;
  padding:13px;
  transition:.3s ease;
}

.dev-panel-grid div:hover{
  transform:translateY(-4px);
  background:#eef6ff;
}

.dev-panel-grid small{
  display:block;
  color:#718096;
  font-size:11px;
  margin-bottom:4px;
}

.dev-panel-grid strong{
  color:#042444;
  font-size:14px;
}

.dev-panel-note{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  background:linear-gradient(135deg,#eef6ff,#fff);
  border:1px solid #dceafe;
}

.dev-panel-note strong{
  display:block;
  color:#042444;
  font-size:13px;
  margin-bottom:4px;
}

.dev-panel-note span{
  color:#64748b;
  font-size:12px;
}

.dev-panel-site{
  position:relative;
  margin-top:16px;
  height:46px;
  border-radius:999px;
  background:#042444;
  color:#fff !important;
  text-decoration:none !important;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:13px;
  font-weight:800;
  overflow:hidden;
  transition:.3s ease;
}

.dev-panel-site::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
  transform:translateX(-100%);
  animation:devSiteMove 2.8s infinite;
}

@keyframes devSiteMove{
  to{
    transform:translateX(100%);
  }
}

.dev-panel-site span,
.dev-panel-site i{
  position:relative;
  z-index:2;
}

.dev-panel-site:hover{
  transform:translateY(-4px);
  background:#0b4d91;
}

.dev-panel-actions{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.dev-panel-actions a{
  flex:1;
  height:42px;
  border-radius:14px;
  background:#f1f5f9;
  color:#042444 !important;
  text-decoration:none !important;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
  transition:.3s ease;
}

.dev-panel-actions a:hover{
  transform:translateY(-4px);
  background:#e5efff;
}

/* MOBILE */
@media(max-width:600px){
  .dev-panel{
    width:100%;
    height:100dvh;
    border-radius:0;
  }

  .dev-panel-hero{
    min-height:220px;
    padding:24px;
  }

  .dev-panel-logo{
    width:185px;
  }

  .dev-panel-icon{
    width:78px;
    height:78px;
    font-size:32px;
    border-radius:22px;
  }

  .dev-panel-content{
    padding:22px;
  }

  .dev-panel-content h2{
    font-size:25px;
  }

  .dev-panel-grid{
    grid-template-columns:1fr;
  }

  .dev-panel-actions{
    flex-direction:column;
  }
}

@media(max-width:380px){
  .dev-panel-hero{
    min-height:190px;
    padding:20px;
  }

  .dev-panel-logo{
    width:155px;
  }

  .dev-panel-content{
    padding:18px;
  }

  .dev-panel-content h2{
    font-size:22px;
  }
}

/* FIM RODAPE */