: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 ABERTURA PAGINA */
html {
  scroll-behavior: smooth;
}

/* =========================
   HERO CONTATO
========================= */

.gsc-contact-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 105px 24px 45px;
  overflow: hidden;
  font-family: "Poppins", Arial, sans-serif;
  background:
    linear-gradient(rgba(0, 82, 204, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 204, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

.gsc-contact-hero *,
.gsc-contact-hero *::before,
.gsc-contact-hero *::after {
  box-sizing: border-box;
}

/* FUNDO */

.gsc-contact-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gsc-contact-overlay::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -170px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 255, .18), transparent 70%);
}

.gsc-contact-overlay::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -150px;
  bottom: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 204, .13), transparent 70%);
}

/* CONTAINER */

.gsc-contact-container {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 28px;
}

/* TEXTO */

.gsc-contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #0057d9;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 87, 217, .10);
}

.gsc-contact-left h1 {
  margin: 22px 0 0;
  max-width: 700px;
  color: #0f2748;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 900;
}

.gsc-contact-left h1 span {
  display: block;
  color: #006eff;
}

.gsc-line {
  width: 75px;
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #006eff, #3b93ff);
}

.gsc-contact-left p {
  max-width: 650px;
  margin-top: 22px;
  color: #607798;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

/* BOTÕES */

.gsc-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gsc-btn-primary,
.gsc-btn-whatsapp {
  position: relative;
  overflow: hidden;
  min-height: 60px;
  padding: 12px 20px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: .3s ease;
}

.gsc-btn-primary:hover,
.gsc-btn-whatsapp:hover {
  transform: translateY(-4px);
}

.gsc-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #007bff, #0052c9);
  box-shadow: 0 18px 36px rgba(0, 82, 201, .28);
}

/* FLASH NO BOTÃO */

.gsc-btn-primary::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -80%;
  width: 40%;
  height: 210%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, .75),
    transparent
  );
  transform: rotate(18deg);
  animation: gscFlash 2.7s infinite;
}

.gsc-btn-whatsapp {
  color: #173d68;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(0, 87, 217, .12);
  box-shadow: 0 14px 30px rgba(0, 87, 217, .10);
}

.gsc-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, .16);
}

.gsc-btn-icon i {
  font-size: 19px;
  color: #ffffff;
}

.whatsapp-icon {
  background: rgba(37, 211, 102, .14);
}

.whatsapp-icon i {
  color: #25d366;
}

.gsc-btn-text {
  display: flex;
  flex-direction: column;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
}

.gsc-btn-text small {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  opacity: .85;
}

/* MINI CARDS */

.gsc-mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}

.gsc-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gsc-mini-card > i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #006dff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 87, 217, .12);
  flex: 0 0 auto;
}

.gsc-mini-card strong {
  display: block;
  color: #163255;
  font-size: 14px;
  line-height: 1.2;
}

.gsc-mini-card span {
  display: block;
  margin-top: 3px;
  color: #7b90ac;
  font-size: 12px;
}

/* MOCKUP */

.gsc-contact-right {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gsc-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,119,255,.14), transparent 70%);
  border: 1px solid rgba(0, 87, 217, .08);
}

.gsc-contact-right img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  max-height: 660px;
  object-fit: contain;
  filter: drop-shadow(0 45px 70px rgba(0, 63, 150, .18));
}

/* SEM ANIMAÇÃO NA IMAGEM */

.gsc-contact-right img,
.gsc-circle {
  animation: none !important;
}

/* ANIMAÇÃO FLASH */

@keyframes gscFlash {
  0% {
    left: -80%;
  }

  55%, 100% {
    left: 130%;
  }
}

/* MOBILE */

@media (max-width: 980px) {
  .gsc-contact-hero {
    min-height: auto;
    padding: 105px 18px 55px;
  }

  .gsc-contact-container {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .gsc-contact-left h1 {
    font-size: clamp(36px, 10vw, 48px);
    letter-spacing: -1.5px;
  }

  .gsc-line {
    margin-left: auto;
    margin-right: auto;
  }

  .gsc-contact-left p {
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .gsc-contact-buttons {
    justify-content: center;
  }

  .gsc-btn-primary,
  .gsc-btn-whatsapp {
    width: 100%;
    justify-content: flex-start;
  }

  .gsc-mini-cards {
    justify-content: center;
  }

  .gsc-mini-card {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    background: rgba(255,255,255,.78);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(0, 87, 217, .08);
  }

  /* OCULTA IMAGEM DO CELULAR NO MOBILE */
  .gsc-contact-right {
    display: none !important;
  }
}

/* DIMINUIR ESPAÇO DE CIMA */

.gsc-contact-hero {
  padding-top: 40px !important;
}

/* SE QUISER MAIS COLADO AINDA */

.gsc-contact-hero {
  padding-top: 20px !important;
}

/* DIMINUIR ESPAÇO DE BAIXO */

.gsc-contact-hero {
  padding-bottom: 0px !important;
  min-height: auto !important;
}

/* CONTAINER MAIS COMPACTO */

.gsc-contact-container {
  min-height: auto !important;
  padding-bottom: 0 !important;
}

/* MINI CARDS MAIS PERTO */

.gsc-mini-cards {
  margin-bottom: 0 !important;
}

/* SE TIVER MUITO ESPAÇO NO MOBILE */

@media (max-width: 980px) {

  .gsc-contact-hero {
    padding-bottom: 15px !important;
  }

}

/* =========================
   FLASH NO MOCKUP
========================= */

.gsc-contact-right {
  position: relative;
  overflow: visible;
}

.gsc-contact-right::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -120%;
  width: 35%;
  height: 140%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.75),
    transparent
  );
  transform: rotate(18deg);
  filter: blur(2px);
  pointer-events: none;
  z-index: 5;
  animation: gscMockupFlash 4s linear infinite;
}

/* ANIMAÇÃO */

@keyframes gscMockupFlash {

  0% {
    left: -120%;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  45% {
    opacity: 1;
  }

  100% {
    left: 150%;
    opacity: 0;
  }

}

/* =========================
   ANIMAÇÕES MAIS LENTAS
========================= */

/* TEXTO */

.gsc-contact-left {
  animation: gscTextoEntrada 1.8s cubic-bezier(.22,1,.36,1);
}

/* MOCKUP */

.gsc-contact-right {
  animation: gscMockupEntrada 2.2s cubic-bezier(.22,1,.36,1);
}

/* TAG */

.gsc-contact-tag {
  animation: gscFadeTop 1.5s ease;
}

/* BOTÕES */

.gsc-contact-buttons {
  animation: gscFadeButtons 2s ease;
}

/* MINI CARDS */

.gsc-mini-cards {
  animation: gscMiniCards 2.3s ease;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes gscTextoEntrada {

  0% {
    opacity: 0;
    transform: translateX(-120px);
    filter: blur(14px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }

}

@keyframes gscMockupEntrada {

  0% {
    opacity: 0;
    transform:
      translateX(180px)
      scale(.65)
      rotate(20deg);
    filter: blur(18px);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform:
      translateX(0)
      scale(1)
      rotate(0deg);
    filter: blur(0);
  }

}

@keyframes gscFadeTop {

  0% {
    opacity: 0;
    transform: translateY(-45px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes gscFadeButtons {

  0% {
    opacity: 0;
    transform: translateY(70px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes gscMiniCards {

  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}


/* SESSÃO FORMULARIO */
:root {
  --gs-bg: #dfe8f5;
  --gs-wave: #f5f8fd;
  --gs-title: #0d4ea6;
  --gs-title-soft: #4d6f98;
  --gs-input-bg: #ffffff;
  --gs-input-border: #d7e2f0;
  --gs-input-focus: #3f8cff;
  --gs-icon-bg: #eef5ff;
  --gs-icon-color: #0d5bd3;
  --gs-text: #51657f;
  --gs-dark: #243547;
  --gs-blue: #0d5bd3;
  --gs-blue-dark: #0847a6;
  --gs-blue-light: #54a8ff;
  --gs-success: #18c77c;
  --gs-error: #ff4f6d;
}

* {
  box-sizing: border-box;
}

.gs-contact-section {
  position: relative;
  background: linear-gradient(180deg, #dfe8f5 0%, #d9e4f2 100%);
  padding: 0 20px 80px;
  overflow: hidden;
}

.gs-wave-top {
  width: 100%;
  height: 110px;
  overflow: hidden;
  line-height: 0;
}

.gs-wave-top svg {
  display: block;
  width: 100%;
  height: 110px;
}

.gs-wave-top path {
  fill: var(--gs-wave);
}

.gs-contact-container {
  max-width: 1120px;
  margin: 0 auto;
}

.gs-contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.gs-contact-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gs-title);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: gsTitleFloat 3s ease-in-out infinite;
}

.gs-contact-header p {
  margin: 10px 0 0;
  color: var(--gs-title-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.gs-contact-form {
  max-width: 1120px;
  margin: 0 auto;
  animation: gsFadeUp 0.8s ease;
}

.gs-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 28px;
}

.gs-field {
  position: relative;
}

.gs-field-full {
  grid-column: 1 / -1;
}

.gs-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gs-icon-bg);
  color: var(--gs-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.28s ease;
  box-shadow: 0 4px 10px rgba(13, 91, 211, 0.08);
}

.gs-field-icon-textarea {
  top: 19px;
  transform: none;
}

.gs-field input,
.gs-field select,
.gs-field textarea {
  width: 100%;
  background: var(--gs-input-bg);
  border: 1px solid var(--gs-input-border);
  border-radius: 14px;
  padding: 15px 14px 15px 64px;
  font-size: 0.98rem;
  color: var(--gs-dark);
  outline: none;
  transition: 0.28s ease;
  box-shadow: 0 4px 14px rgba(12, 59, 126, 0.04);
}

.gs-field input::placeholder,
.gs-field textarea::placeholder,
.gs-field select {
  color: var(--gs-text);
}

.gs-field textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: 16px;
}

.gs-field select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #6c88aa 50%),
    linear-gradient(135deg, #6c88aa 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.gs-field input:hover,
.gs-field select:hover,
.gs-field textarea:hover {
  border-color: #bfd2ea;
}

.gs-field input:focus,
.gs-field select:focus,
.gs-field textarea:focus {
  border-color: var(--gs-input-focus);
  box-shadow: 0 0 0 5px rgba(63, 140, 255, 0.12);
  transform: translateY(-1px);
}

.gs-field input:focus + .dummy,
.gs-field select:focus + .dummy,
.gs-field textarea:focus + .dummy {
  opacity: 1;
}

.gs-field:focus-within .gs-field-icon {
  background: linear-gradient(135deg, #0d5bd3, #55a9ff);
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 91, 211, 0.18);
}

.gs-field input.gs-error,
.gs-field select.gs-error,
.gs-field textarea.gs-error {
  border-color: var(--gs-error);
  box-shadow: 0 0 0 4px rgba(255, 79, 109, 0.10);
}

.gs-form-footer {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.gs-check-area {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.gs-check-area input {
  display: none;
}

.gs-check-custom {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #97adc9;
  background: transparent;
  border-radius: 4px;
  position: relative;
  transition: 0.25s ease;
}

.gs-check-custom::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.25s ease;
}

.gs-check-area input:checked + .gs-check-custom {
  background: var(--gs-blue);
  border-color: var(--gs-blue);
  box-shadow: 0 6px 14px rgba(13, 91, 211, 0.18);
}

.gs-check-area input:checked + .gs-check-custom::after {
  opacity: 1;
  transform: scale(1);
}

.gs-check-text {
  color: #2f4358;
  font-size: 0.95rem;
  font-weight: 600;
}

.gs-check-text a {
  color: var(--gs-blue);
  text-decoration: none;
  font-weight: 800;
}

.gs-check-text a:hover {
  text-decoration: underline;
}

.gs-submit-btn {
  position: relative;
  background: linear-gradient(135deg, #0591ee 0%, #2885f3 55%, #58b0ff 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  min-width: 210px;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 22px rgba(13, 91, 211, 0.20);
  animation: gsButtonPulse 2.2s infinite;
}

.gs-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(13, 91, 211, 0.25);
}

.gs-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.gs-btn-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
  transform: skewX(-24deg);
  animation: gsShine 2.8s linear infinite;
}

.gs-btn-text,
.gs-submit-btn i {
  position: relative;
  z-index: 2;
}

.gs-toast-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  width: min(420px, calc(100% - 24px));
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gs-toast {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 17px 16px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transform: translateX(120%);
  opacity: 0;
  animation: gsToastIn 0.4s ease forwards;
}

.gs-toast.hide {
  animation: gsToastOut 0.35s ease forwards;
}

.gs-toast::before {
  content: "";
  position: absolute;
  inset: 0;
}

.gs-toast.error::before {
  background: linear-gradient(135deg, #cb3657, #ff5c7a);
}

.gs-toast.success::before {
  background: linear-gradient(135deg, #0b9a61, #1ac980);
}

.gs-toast-icon,
.gs-toast-content,
.gs-toast-close {
  position: relative;
  z-index: 2;
}

.gs-toast-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
}

.gs-toast-icon i {
  font-size: 1.1rem;
  animation: gsIconPop 1.2s ease-in-out infinite;
}

.gs-toast-title {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.gs-toast-message {
  font-size: 0.93rem;
  line-height: 1.55;
}

.gs-toast-message strong {
  background: rgba(255,255,255,0.12);
  padding: 2px 7px;
  border-radius: 7px;
}

.gs-toast-message a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

.gs-toast-close {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  font-size: 1rem;
}

.gs-shake-screen {
  animation: gsShakeScreen 0.42s ease;
}

.gs-contact-form.gs-shake-card {
  animation: gsShakeCard 0.42s ease;
}

@keyframes gsFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gsTitleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes gsButtonPulse {
  0%, 100% {
    box-shadow: 0 10px 22px rgba(13, 91, 211, 0.20), 0 0 0 0 rgba(13, 91, 211, 0.15);
  }
  50% {
    box-shadow: 0 12px 24px rgba(13, 91, 211, 0.24), 0 0 0 10px rgba(13, 91, 211, 0);
  }
}

@keyframes gsShine {
  0% { left: -80%; }
  100% { left: 140%; }
}

@keyframes gsToastIn {
  from {
    opacity: 0;
    transform: translateX(120%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gsToastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes gsIconPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes gsShakeScreen {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

@keyframes gsShakeCard {
  0% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

@media (max-width: 991px) {
  .gs-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gs-contact-section {
    padding: 0 14px 65px;
  }

  .gs-wave-top,
  .gs-wave-top svg {
    height: 82px;
  }

  .gs-contact-header {
    margin-bottom: 24px;
  }

  .gs-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gs-submit-btn {
    min-width: 100%;
  }

  .gs-check-text {
    font-size: 0.9rem;
  }

  .gs-toast-wrapper {
    top: 14px;
    right: 12px;
    width: calc(100% - 24px);
  }
}

/* SESSÃO LOCLAIZAÇÃO, CONTATO  */
:root {
  --gs-loc-blue-1: #eef5ff;
  --gs-loc-blue-2: #dbe9fb;
  --gs-loc-blue-3: #0067f8;
  --gs-loc-blue-4: #0d5bd3;
  --gs-loc-blue-5: #4da3ff;
  --gs-loc-blue-6: #0d72ff;
  --gs-loc-cyan: #7fc8ff;
  --gs-loc-white: #ffffff;
  --gs-loc-dark: #1b47d8;
  --gs-loc-text: #1b6dd8;
  --gs-loc-soft-text: #6e85a3;
  --gs-loc-card: rgba(255, 255, 255, 0.48);
  --gs-loc-card-2: rgba(255, 255, 255, 0.7);
  --gs-loc-border: rgba(255, 255, 255, 0.60);
  --gs-loc-shadow: 0 24px 55px rgba(29, 61, 110, 0.12);
  --gs-loc-shadow-soft: 0 12px 28px rgba(20, 53, 95, 0.08);
  --gs-loc-green: #12c365;
  --gs-loc-green-soft: rgba(18, 195, 101, 0.14);
  --gs-loc-red: #ef476f;
  --gs-loc-red-soft: rgba(239, 71, 111, 0.12);
}

* {
  box-sizing: border-box;
}

.gs-location-section {
  position: relative;
  overflow: hidden;
  padding: 95px 20px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0) 1px, transparent 1px),
    linear-gradient(180deg, #DEE8F5 0%, #DEE8F5 35%, #DEE8F5 70%, #DEE8F5 100%);
  background-size: 22px 22px, 100% 100%;
}

.gs-location-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.gs-location-glow-1 {
  width: 300px;
  height: 300px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.12), transparent 70%);
  animation: gsLocFloatGlowOne 8s ease-in-out infinite;
}

.gs-location-glow-2 {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(127, 200, 255, 0.12), transparent 70%);
  animation: gsLocFloatGlowTwo 9s ease-in-out infinite;
}

.gs-location-container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gs-location-header {
  text-align: center;
  margin-bottom: 38px;
}

.gs-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--gs-loc-blue-6);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(13, 91, 211, 0.08);
  animation: gsLocBadgePulse 2.8s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.gs-location-badge i {
  color: var(--gs-loc-blue-4);
}

.gs-location-header h2 {
  margin: 0;
  color: var(--gs-loc-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.gs-location-header p {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--gs-loc-text);
  font-size: 1rem;
  line-height: 1.8;
}

.gs-location-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255,255,255,0.26);
  border: 1px solid rgba(255,255,255,0.56);
  box-shadow: var(--gs-loc-shadow);
  backdrop-filter: blur(14px);
  animation: gsLocFadeUp 0.8s ease;
}

.flash-loop {
  animation: gsLocCardFlash 4s ease-in-out infinite;
}

.gs-location-info {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--gs-loc-shadow-soft);
  position: relative;
  overflow: hidden;
}

.gs-location-info::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -75px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,163,255,0.10), transparent 70%);
  pointer-events: none;
}

.gs-location-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.gs-location-tab {
  border: none;
  cursor: pointer;
  padding: 13px 16px;
  border-radius: 14px;
  background: #edf4ff;
  color: #537095;
  font-weight: 800;
  font-size: 0.92rem;
  transition: 0.28s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.gs-location-tab:hover {
  transform: translateY(-2px);
  background: #e6f0ff;
}

.gs-location-tab.active {
  background: linear-gradient(135deg, #0d5bd3, #4da3ff);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(46, 211, 13, 0.18);
}

.gs-location-content {
  display: none;
  animation: gsLocContentIn 0.35s ease;
}

.gs-location-content.active {
  display: block;
}

.gs-location-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.gs-location-content h3 {
  margin: 0;
  font-size: 1.28rem;
  color: var(--gs-loc-dark);
}

.gs-office-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: 0.25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

.gs-office-status.is-open {
  background: var(--gs-loc-green-soft);
  color: #119556;
  border: 1px solid rgba(18, 195, 101, 0.18);
}

.gs-office-status.is-closed {
  background: var(--gs-loc-red-soft);
  color: #d03c61;
  border: 1px solid rgba(239, 71, 111, 0.15);
}

.gs-office-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 10px;
}

.gs-office-status.is-open .gs-office-status-dot {
  background: #12c365;
  box-shadow: 0 0 0 0 rgba(18,195,101,0.35);
  animation: gsStatusPulseGreen 1.8s infinite;
}

.gs-office-status.is-closed .gs-office-status-dot {
  background: #ef476f;
  box-shadow: 0 0 0 0 rgba(239,71,111,0.35);
  animation: gsStatusPulseRed 1.8s infinite;
}

.gs-location-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.gs-location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 48, 77, 0.925);
}

.gs-location-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gs-location-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf3ff;
  color: var(--gs-loc-blue-4);
  box-shadow: 0 8px 18px rgba(13, 91, 211, 0.08);
  transition: 0.28s ease;
}

.gs-location-item:hover .gs-location-icon {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, #0d5bd3, #4da3ff);
  color: #fff;
}

.gs-location-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gs-location-text strong {
  color: var(--gs-loc-dark);
  font-size: 0.96rem;
}

.gs-location-text span {
  color: var(--gs-loc-text);
  font-size: 0.93rem;
  line-height: 1.55;
}

.gs-location-actions {
  margin-top: 8px;
}

.gs-location-whatsapp {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gs-loc-green), #27d875);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(18, 195, 101, 0.20);
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}

.gs-location-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  transform: skewX(-24deg);
  animation: gsLocShine 2.8s linear infinite;
}

.gs-location-whatsapp i,
.gs-location-whatsapp span,
.gs-location-whatsapp {
  z-index: 2;
}

.gs-location-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0ea754, #1cca68);
}

.gs-location-map-area {
  position: relative;
  min-height: 410px;
}

.gs-map-frame {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 410px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--gs-loc-shadow-soft);
  animation: gsLocContentIn 0.35s ease;
}

.gs-map-frame.active {
  display: block;
}

.gs-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
  display: block;
}

@keyframes gsLocFloatGlowOne {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, 18px); }
}

@keyframes gsLocFloatGlowTwo {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-16px, -16px); }
}

@keyframes gsLocBadgePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes gsLocFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gsLocContentIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gsLocCardFlash {
  0%, 100% {
    box-shadow:
      0 24px 55px rgba(29, 61, 110, 0.12),
      0 0 0 0 rgba(77, 163, 255, 0);
  }
  50% {
    box-shadow:
      0 26px 60px rgba(29, 61, 110, 0.14),
      0 0 0 10px rgba(77, 163, 255, 0.035);
  }
}

@keyframes gsLocShine {
  0% { left: -80%; }
  100% { left: 140%; }
}

@keyframes gsStatusPulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(18,195,101,0.35);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(18,195,101,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(18,195,101,0);
  }
}

@keyframes gsStatusPulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(239,71,111,0.35);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239,71,111,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239,71,111,0);
  }
}

@media (max-width: 991px) {
  .gs-location-card {
    grid-template-columns: 1fr;
  }

  .gs-location-map-area,
  .gs-map-frame,
  .gs-map-frame iframe {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .gs-location-section {
    padding: 75px 14px;
  }

  .gs-location-header {
    margin-bottom: 28px;
  }

  .gs-location-header p {
    font-size: 0.95rem;
  }

  .gs-location-card {
    padding: 12px;
    border-radius: 22px;
    gap: 14px;
  }

  .gs-location-info {
    padding: 16px;
    border-radius: 18px;
  }

  .gs-location-tabs {
    gap: 8px;
  }

  .gs-location-tab {
    flex: 1 1 auto;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .gs-location-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .gs-location-map-area,
  .gs-map-frame,
  .gs-map-frame iframe {
    min-height: 280px;
    border-radius: 18px;
  }
}

/* SESSÃO REDES SOCIAIS */
/* =========================
   REDES SOCIAIS
========================= */

.gs-redes {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  background:
    linear-gradient(rgba(0,82,204,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,82,204,.05) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

.gs-redes-bg::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0,119,255,.16),
      transparent 70%);
}

.gs-redes-bg::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0,82,204,.10),
      transparent 70%);
}

/* CONTAINER */

.gs-redes-container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 45px;
  align-items: center;
}

/* ESQUERDA */

.gs-redes-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #0057d9;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,87,217,.10);
}

.gs-redes-left h2 {
  margin: 26px 0 0;
  color: #10233f;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -2px;
}

.gs-redes-left h2 span {
  color: #006eff;
}

.gs-redes-left p {
  max-width: 650px;
  margin-top: 24px;
  color: #607798;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
}

/* REDES */

.gs-redes-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
}

.gs-rede-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  text-decoration: none;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,87,217,.08);
  box-shadow: 0 16px 35px rgba(0,87,217,.08);
  transition: .35s ease;
}

.gs-rede-card:hover {
  transform: translateY(-6px);
}

.gs-rede-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.gs-rede-icon i {
  font-size: 28px;
  color: #ffffff;
}

.instagram .gs-rede-icon {
  background: linear-gradient(135deg, #ff2d77, #ff7b00);
}

.facebook .gs-rede-icon {
  background: linear-gradient(135deg, #1877f2, #0056c9);
}

.linkedin .gs-rede-icon {
  background: linear-gradient(135deg, #0077b5, #005582);
}

.gs-rede-texto strong {
  display: block;
  color: #163255;
  font-size: 18px;
  font-weight: 800;
}

.gs-rede-texto span {
  display: block;
  margin-top: 4px;
  color: #7890ae;
  font-size: 14px;
}

/* GRANHUB */

.gs-granhub-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, #007bff, #0052c9);
  color: #ffffff;
  box-shadow: 0 35px 65px rgba(0,82,201,.28);
}

.gs-granhub-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -140px;
  top: -140px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.gs-granhub-topo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gs-granhub-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-granhub-icon i {
  font-size: 24px;
}

.gs-granhub-topo span {
  font-size: 14px;
  font-weight: 700;
  opacity: .9;
}

.gs-granhub-card h3 {
  margin: 30px 0 0;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
}

.gs-granhub-card h3 span {
  display: block;
}

.gs-granhub-card p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
}

.gs-granhub-lista {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gs-granhub-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.gs-granhub-lista i {
  color: #ffffff;
}

.gs-granhub-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 17px 24px;
  border-radius: 18px;
  background: #ffffff;
  color: #0057d9;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: .35s ease;
}

.gs-granhub-btn:hover {
  transform: translateY(-5px);
}

/* FLASH */

.gs-granhub-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.75),
    transparent
  );
  transform: rotate(18deg);
  animation: gsFlashBtn 2.8s infinite;
}

@keyframes gsFlashBtn {

  0% {
    left: -80%;
  }

  55%,100% {
    left: 130%;
  }

}

/* RESPONSIVO */

@media (max-width: 980px) {

  .gs-redes {
    padding: 80px 18px;
  }

  .gs-redes-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .gs-redes-left {
    text-align: center;
  }

  .gs-redes-left p {
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .gs-redes-left h2 {
    font-size: 42px;
  }

  .gs-granhub-card {
    padding: 30px 24px;
  }

  .gs-granhub-card h3 {
    font-size: 38px;
  }

}


/* 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;
  }
}

/* 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;
  }
}


/* ================================
   ATIVAR GRADE NO FUNDO DO SITE
================================ */

/* 1. CRIA A GRADE NO BODY */
body{
  background:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(180deg,#f7f9fd 0%, #eef3fb 100%);

  background-size: 70px 70px, 70px 70px, 100% 100%;
}

/* 2. LIBERA AS SEÇÕES PRA MOSTRAR A GRADE */
section{
  background: transparent !important;
}


/* 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 RODAPE GRANSAFETY */
/* 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 */
