/* =========================================================
   IMPORTS — Bebas Neue (títulos) + Nunito Sans (corpo)
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;1,6..12,300&display=swap');

/* =========================================================
   RESET
========================================================= */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}

/* =========================================================
   BODY — cores originais preservadas
========================================================= */
body{
  font-family:'Nunito Sans','Segoe UI',Arial,sans-serif;
  color:#fff;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(255,255,255,.07), transparent 16%),
    linear-gradient(135deg,#003baf 0%,#0049c4 45%,#2e0b7d 100%);
  background-repeat:no-repeat;
  background-size:cover;
  background-attachment:fixed;
}

.container{
  width:min(1320px,92%);
  margin:0 auto;
  position:relative;
  z-index:2;
}

section.anchor{height:1px;}

/* =========================================================
   HEADER
========================================================= */
.site-header{
  padding:28px 0 16px;
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  transition:
    padding .35s ease,
    background .35s ease,
    backdrop-filter .35s ease,
    box-shadow .35s ease;
}

/* Estado scrollado — glassmorphism */
.site-header.scrolled{
  padding:12px 0 10px;
  background:rgba(0,29,100,.55);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:
    0 1px 0 rgba(105,232,255,.15),
    0 8px 32px rgba(0,0,0,.28);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  font-family:'Bebas Neue',sans-serif;
  font-size:34px;
  font-weight:400;
  letter-spacing:3px;
  color:#fff;
  text-shadow:
    0 0 8px rgba(255,255,255,.55),
    0 0 22px rgba(255,255,255,.18);
  white-space:nowrap;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:44px;
}

.nav-menu a{
  color:rgba(255,255,255,.80);
  font-size:13px;
  font-weight:500;
  letter-spacing:1.2px;
  text-transform:uppercase;
  transition:.25s ease;
  position:relative;
}

.nav-menu a::after{
  content:'';
  position:absolute;
  bottom:-3px;left:0;
  width:0;height:1.5px;
  background:rgba(105,232,255,.90);
  box-shadow:0 0 6px rgba(105,232,255,.70);
  border-radius:999px;
  transition:width .25s ease;
}

.nav-menu a:hover{color:#fff;}
.nav-menu a:hover::after{width:100%;}

.nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 26px;
  border-radius:999px;
  border:1.5px solid rgba(255,255,255,.72);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 18px rgba(164,213,255,.16);
  transition:.28s ease;
  white-space:nowrap;
}

.nav-btn:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.10);
  border-color:#fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 0 26px rgba(105,232,255,.25),
    0 8px 22px rgba(0,0,0,.18);
}

.menu-toggle{
  display:none;
  width:46px;height:46px;
  border:none;background:transparent;cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:22px;height:1.5px;
  margin:6px auto;
  background:#fff;
  border-radius:999px;
  transition:.25s ease;
}

/* =========================================================
   HERO
========================================================= */
.hero,
.servicos-premium,
.servicos-detalhados-premium,
.sobre-contriat,
.depoimentos-section,
.contato-section{
  position:relative;
  overflow:hidden;
  background:transparent !important;
}

.hero{min-height:90vh;}

.hero::before{
  content:'';
  position:absolute;inset:0;
  background:
    linear-gradient(to right,rgba(0,44,125,.15),rgba(0,0,0,0) 30%),
    linear-gradient(to top,rgba(0,0,0,.10),rgba(0,0,0,0) 40%);
  pointer-events:none;z-index:0;
}

.hero-content{
  min-height:clamp(480px,60vh,640px);
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:20px;
  padding:110px 0 0;
  position:relative;
}

.hero-left{
  position:relative;
  z-index:5;
  padding-top:20px;
}

.hero-left h1{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(58px,6vw,98px);
  line-height:0.95;
  font-weight:400;
  letter-spacing:3px;
  text-transform:uppercase;
  text-shadow:
    0 0 8px rgba(255,255,255,.22),
    0 0 24px rgba(255,255,255,.08);
  max-width:660px;
}

.hero-left p{
  margin-top:28px;
  font-size:clamp(18px,1.6vw,24px);
  line-height:1.70;
  font-weight:300;
  color:rgba(255,255,255,.82);
  max-width:520px;
}

/* CTA — DESKTOP: tamanho reduzido */
.cta-button{
  margin-top:36px;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-width:280px;
  min-height:58px;
  padding:0 10px 0 24px;
  border-radius:999px;
  border:1.5px solid rgba(255,255,255,.70);
  background:rgba(255,255,255,.04);
  color:#fff;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 0 22px rgba(164,213,255,.18),
    0 20px 44px rgba(0,0,0,.20);
  transition:.30s ease;
  position:relative;
  overflow:hidden;
}

/* shimmer sweep */
.cta-button::before{
  content:'';
  position:absolute;
  top:-50%;left:-80%;
  width:50%;height:200%;
  background:linear-gradient(105deg,transparent,rgba(255,255,255,.07),transparent);
  transition:left .55s ease;
}
.cta-button:hover::before{left:160%;}

.cta-button:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.90);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 0 30px rgba(105,232,255,.28),
    0 24px 52px rgba(0,0,0,.24);
}

.cta-button .text{
  font-family:'Bebas Neue',sans-serif;
  font-size:19px;
  font-weight:400;
  letter-spacing:2px;
  text-transform:uppercase;
}

.cta-button .icon{
  width:44px;height:44px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1.5px solid rgba(255,255,255,.38);
  background:rgba(255,255,255,.10);
  font-size:22px;
  box-shadow:inset 0 0 12px rgba(255,255,255,.08),0 0 12px rgba(255,255,255,.14);
  transition:.30s ease;
  flex-shrink:0;
}

.cta-button:hover .icon{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.60);
  transform:rotate(45deg);
}

/* HERO RIGHT */
.hero-right{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.globo-bg{
  position:absolute;
  right:-250px;top:-120px;
  width:1400px;max-width:none;
  opacity:.82;z-index:1;
  pointer-events:none;
  filter:
    drop-shadow(0 0 22px rgba(180,220,255,.28))
    drop-shadow(0 0 45px rgba(180,220,255,.15));
}

.contadora-front{
  position:absolute;
  right:20px;bottom:0;
  width:clamp(400px,36vw,610px);
  height:auto;object-fit:contain;
  z-index:3;
  transform:translateY(210px);
  filter:
    drop-shadow(0 16px 30px rgba(0,0,0,.18))
    drop-shadow(0 0 18px rgba(0,0,0,.08));
}

.bottom-info{
  position:absolute;
  left:0;right:0;bottom:18px;
  z-index:6;
}

.bottom-info .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  color:rgba(255,255,255,.60);
  font-size:13px;
  font-weight:300;
  letter-spacing:.4px;
}

.privacy-link:hover{color:#fff;}

.star-shape{
  position:absolute;
  right:34px;bottom:22px;
  width:30px;height:30px;
  z-index:6;
  background:rgba(255,255,255,.88);
  clip-path:polygon(50% 0%,62% 38%,100% 50%,62% 62%,50% 100%,38% 62%,0% 50%,38% 38%);
  box-shadow:0 0 18px rgba(255,255,255,.38);
  animation:starSpin 10s linear infinite;
}

@keyframes starSpin{
  from{transform:rotate(0deg);opacity:.80;}
  50%{transform:rotate(180deg);opacity:1;}
  to{transform:rotate(360deg);opacity:.80;}
}

/* =========================================================
   HERO ENTRANCE ANIMATIONS
========================================================= */
@keyframes riseIn{
  from{opacity:0;transform:translateY(24px);}
  to{opacity:1;transform:translateY(0);}
}

.hero-left h1{animation:riseIn .9s cubic-bezier(.22,.68,0,1.2) both;}
.hero-left p {animation:riseIn .9s cubic-bezier(.22,.68,0,1.2) .16s both;}
.cta-button  {animation:riseIn .9s cubic-bezier(.22,.68,0,1.2) .30s both;}

/* =========================================================
   SECTION DIVIDER
========================================================= */
.section-divider{
  position:relative;
  height:2px;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(105,232,255,.95),
    rgba(255,255,255,0)
  );
  box-shadow:
    0 0 10px rgba(105,232,255,.85),
    0 0 24px rgba(105,232,255,.28);
  margin:0;
  z-index:3;
}

/* =========================================================
   SERVIÇOS PREMIUM
========================================================= */
.servicos-premium{
  margin-top:0 !important;
  padding:80px 0 120px;
}

.servicos-premium::after{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:80px;
  background:linear-gradient(to bottom,rgba(0,0,0,.15),rgba(0,0,0,0));
  pointer-events:none;z-index:1;
}

.servicos-head{
  position:relative;
  text-align:center;
  max-width:1100px;
  margin:0 auto 60px;
  z-index:2;
}

.servicos-badge,
.servicos-badge-premium,
.depoimentos-tag,
.sobre-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:32px;
  padding:0 15px;
  margin-bottom:18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  color:rgba(255,255,255,.88);
  font-size:10px;
  font-weight:600;
  letter-spacing:1.8px;
  text-transform:uppercase;
}

.servicos-badge::before,
.servicos-badge-premium::before,
.depoimentos-tag::before,
.sobre-badge::before{
  content:'';
  display:inline-block;
  width:5px;height:5px;
  border-radius:50%;
  background:#69e8ff;
  box-shadow:0 0 5px rgba(105,232,255,.80);
  flex-shrink:0;
}

.servicos-head h2,
.servicos-head-premium h2,
.depoimentos-header h2,
.sobre-header h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(30px,3.2vw,56px);
  line-height:1.02;
  font-weight:400;
  color:#fff;
  letter-spacing:2px;
  text-transform:uppercase;
}

.servicos-line,
.linha-glow-premium,
.depoimentos-line{
  width:48px;height:2px;
  margin:20px auto 0;
  border-radius:999px;
  background:rgba(105,232,255,.95);
  box-shadow:0 0 14px rgba(105,232,255,.80),0 0 28px rgba(105,232,255,.25);
}

.servicos-premium-grid{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.servico-premium-card{
  position:relative;
  min-height:260px;
  padding:36px 36px 32px;
  border-radius:28px;
  background:linear-gradient(160deg,rgba(255,255,255,.97),rgba(245,250,255,.94));
  border:1px solid rgba(255,255,255,.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.80),
    0 22px 48px rgba(4,16,48,.28);
  overflow:hidden;
  transition:transform .28s cubic-bezier(.25,.8,.25,1),
             box-shadow .28s ease;
}

.servico-premium-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,#3db9f5,#69e8ff,#3db9f5);
  border-radius:28px 28px 0 0;
  opacity:0;
  transform:scaleX(0);
  transform-origin:left;
  transition:opacity .28s ease,transform .36s cubic-bezier(.25,.8,.25,1);
}
.servico-premium-card:hover::before{opacity:1;transform:scaleX(1);}

.servico-premium-card::after{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(circle at top right,rgba(103,219,255,.14),transparent 28%),
    radial-gradient(circle at bottom left,rgba(46,11,125,.08),transparent 32%);
  pointer-events:none;
}

.servico-premium-card:hover{
  transform:translateY(-7px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.90),
    0 30px 58px rgba(4,16,48,.34),
    0 0 20px rgba(105,232,255,.10);
}

.servico-icon{
  width:68px;height:68px;
  border-radius:20px;
  display:inline-flex;
  align-items:center;justify-content:center;
  margin-bottom:24px;
  background:linear-gradient(135deg,rgba(6,72,179,.08),rgba(111,226,255,.16));
  border:1px solid rgba(7,63,156,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.60),
    0 8px 20px rgba(7,38,110,.10);
  position:relative;z-index:1;
}

.servico-icon svg{
  width:34px;height:34px;
  stroke:#0a1a3e;
  stroke-width:1.9;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.servico-premium-card h3{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(26px,2.4vw,38px);
  line-height:1.0;
  font-weight:400;
  color:#05091c;
  margin-bottom:14px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  position:relative;z-index:1;
}

.servico-premium-card p{
  font-size:16px;
  line-height:1.70;
  color:#3a4860;
  max-width:96%;
  position:relative;z-index:1;
}

/* =========================================================
   SERVIÇOS DETALHADOS
========================================================= */
.servicos-detalhados-premium{padding:80px 0 120px;}

.servicos-detalhados-premium::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 78% 36%,rgba(118,224,255,.12),transparent 18%),
    radial-gradient(circle at 22% 80%,rgba(182,84,255,.10),transparent 20%);
  pointer-events:none;
}

.servicos-head-premium{
  position:relative;z-index:2;
  max-width:1100px;
  margin:0 auto 58px;
  text-align:center;
}

.servicos-detalhados-grid-premium{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  max-width:1280px;
  margin:0 auto;
}

.servico-detalhado-card{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:22px;
  min-height:240px;
  padding:28px 28px 28px 26px;
  border-radius:24px;
  background:rgba(255,255,255,.97);
  border:1.5px solid rgba(8,8,20,.70);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.80),
    0 14px 32px rgba(0,0,0,.20);
  overflow:hidden;
  transition:transform .28s cubic-bezier(.25,.8,.25,1),
             box-shadow .28s ease;
}

.servico-detalhado-card::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(circle at top right,rgba(99,220,255,.12),transparent 24%),
    radial-gradient(circle at bottom left,rgba(52,26,138,.06),transparent 26%);
  pointer-events:none;
}

.servico-detalhado-card::after{
  content:'';
  position:absolute;
  top:15%;left:0;
  width:3px;height:0%;
  background:linear-gradient(to bottom,#3db9f5,#69e8ff);
  border-radius:0 999px 999px 0;
  transition:height .36s cubic-bezier(.25,.8,.25,1);
}
.servico-detalhado-card:hover::after{height:70%;}

.servico-detalhado-card:hover{
  transform:translateY(-7px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.88),
    0 26px 54px rgba(8,17,43,.32),
    0 0 22px rgba(105,232,255,.08);
}

.servico-detalhado-card-full{
  grid-column:1 / -1;
  min-height:200px;
  max-width:860px;
  margin:0 auto 6px;
}

.servico-detalhado-icon{
  position:relative;z-index:2;
  flex:0 0 80px;
  width:80px;height:80px;
  border-radius:22px;
  display:flex;
  align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(9,76,182,.08),rgba(117,230,255,.16));
  border:1px solid rgba(11,58,152,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 8px 22px rgba(10,38,110,.10);
}

.servico-detalhado-icon svg{
  width:42px;height:42px;
  stroke:#0a1530;
  stroke-width:2;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.servico-detalhado-content{position:relative;z-index:2;flex:1;}

.servico-detalhado-content h3{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(24px,2.2vw,36px);
  line-height:1.0;
  font-weight:400;
  color:#05091c;
  letter-spacing:1.5px;
  margin-bottom:12px;
}

.servico-detalhado-content p{
  font-size:16px;
  line-height:1.65;
  color:#2a3548;
  max-width:98%;
}

/* =========================================================
   SOBRE
========================================================= */
.sobre-contriat{
  padding:120px 0;
  text-align:center;
}

.sobre-header{max-width:900px;margin:0 auto 40px;}

.sobre-header h2{
  font-family:'Bebas Neue',sans-serif;
}

.sobre-texto{max-width:860px;margin:0 auto 40px;}

.sobre-texto p{
  font-size:18px;
  line-height:1.80;
  color:rgba(255,255,255,.85);
  margin-bottom:20px;
}

.sobre-servicos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:1000px;
  margin:52px auto;
}

.sobre-card{
  padding:20px 22px;
  border-radius:14px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.18);
  font-size:15px;
  font-weight:500;
  letter-spacing:.2px;
  box-shadow:
    0 10px 24px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
  transition:.25s ease;
  cursor:default;
}

.sobre-card:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,.10);
  border-color:rgba(105,232,255,.35);
  box-shadow:
    0 18px 36px rgba(0,0,0,.22),
    0 0 18px rgba(105,232,255,.12),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.sobre-missao{
  max-width:760px;
  margin:40px auto 0;
  font-size:18px;
  line-height:1.80;
  color:rgba(255,255,255,.80);
}

.sobre-missao strong{
  color:#fff;
  font-style:normal;
  font-weight:600;
}

/* =========================================================
   DEPOIMENTOS
========================================================= */
.depoimentos-section{
  padding:110px 0 120px;
  background:transparent !important;
}

.depoimentos-section::after{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 70%, rgba(105,232,255,.06),transparent),
    radial-gradient(ellipse 50% 45% at 94% 25%,rgba(164,84,255,.06),transparent);
  pointer-events:none;
}

.depoimentos-header{
  position:relative;z-index:2;
  max-width:820px;
  margin:0 auto 60px;
  text-align:center;
}

.depoimentos-header p{
  max-width:580px;
  margin:14px auto 0;
  font-size:17px;
  line-height:1.75;
  color:rgba(255,255,255,.60);
}

.depoimentos-grid{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}

.depoimento-card{
  position:relative;
  padding:32px 26px 28px;
  border-radius:26px;
  background:rgba(255,255,255,.97);
  border:1px solid rgba(255,255,255,.60);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 20px 44px rgba(4,16,55,.26);
  text-align:left;
  transition:transform .28s cubic-bezier(.25,.8,.25,1),
             box-shadow .28s ease;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.depoimento-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,#3db9f5,#69e8ff,#3db9f5);
  border-radius:26px 26px 0 0;
  opacity:0;
  transform:scaleX(0);
  transform-origin:left;
  transition:opacity .28s ease,transform .36s cubic-bezier(.25,.8,.25,1);
}
.depoimento-card:hover::before{opacity:1;transform:scaleX(1);}

.depoimento-card::after{
  content:'\201C';
  position:absolute;
  top:2px;right:16px;
  font-family:'Bebas Neue',sans-serif;
  font-size:88px;
  line-height:1;
  color:rgba(30,80,220,.07);
  pointer-events:none;
}

.depoimento-card:hover{
  transform:translateY(-7px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.88),
    0 28px 56px rgba(4,16,55,.32),
    0 0 22px rgba(105,232,255,.09);
}

.depoimento-card.destaque{
  transform:scale(1.03);
  border:2px solid rgba(40,75,220,.75);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.88),
    0 24px 52px rgba(4,16,55,.28),
    0 0 28px rgba(83,165,255,.15);
}
.depoimento-card.destaque:hover{transform:scale(1.03) translateY(-7px);}

.depoimento-avatar{
  width:52px;height:52px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Bebas Neue',sans-serif;
  font-size:26px;
  font-weight:400;
  color:#4455cc;
  border:2.5px solid #8896f0;
  background:rgba(255,255,255,.98);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 4px 12px rgba(0,0,0,.08);
  flex-shrink:0;
  margin-bottom:0;
}

.depoimento-card.destaque .depoimento-avatar{
  color:#1a40d8;
  border-color:#1a40d8;
}

.depoimento-card h3{
  font-family:'Bebas Neue',sans-serif;
  font-size:20px;
  line-height:1.20;
  color:#1e42d0;
  font-weight:400;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:1px;
}

.depoimento-categoria{
  display:block;
  font-size:11px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#9aa5c0;
  margin-bottom:0;
}

.depoimento-info{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.depoimento-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.depoimento-stars{
  display:flex;gap:2px;
  margin-bottom:14px;
}
.depoimento-stars span{
  font-size:13px;
  color:#f5b100;
  text-shadow:0 0 5px rgba(245,177,0,.40);
}

.depoimento-card p{
  font-size:15px;
  line-height:1.82;
  color:#5a6b85;
  flex:1;
}

/* =========================================================
   CONTATO
========================================================= */
.contato-section{
  padding:90px 0 90px;
  text-align:center;
  z-index:1;
}

.contato-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:44px;
  margin-bottom:0;
}

.contato-card{
  position:relative;
  padding:36px 28px 32px;
  border-radius:26px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:
    0 20px 44px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.12);
  transition:transform .28s cubic-bezier(.25,.8,.25,1),
             border-color .28s ease,
             box-shadow .28s ease;
  overflow:hidden;
  text-align:left;
}

.contato-card::before{
  content:'';
  position:absolute;
  top:-60px;right:-60px;
  width:160px;height:160px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(105,232,255,.14),transparent 70%);
  pointer-events:none;
  opacity:0;
  transition:opacity .32s ease;
}
.contato-card:hover::before{opacity:1;}

.contato-card:hover{
  transform:translateY(-8px);
  border-color:rgba(105,232,255,.35);
  box-shadow:
    0 30px 60px rgba(0,0,0,.24),
    0 0 22px rgba(105,232,255,.12),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.contato-card.destaque{
  border:1.5px solid rgba(105,232,255,.65);
  background:rgba(105,232,255,.045);
  box-shadow:
    0 0 24px rgba(105,232,255,.20),
    0 22px 50px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(105,232,255,.10);
}
.contato-card.destaque:hover{
  border-color:rgba(105,232,255,.85);
  box-shadow:
    0 0 32px rgba(105,232,255,.30),
    0 30px 60px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(105,232,255,.16);
}

.contato-icon{
  display:inline-flex;
  align-items:center;justify-content:center;
  width:54px;height:54px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  font-size:24px;
  margin-bottom:20px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12),0 5px 14px rgba(0,0,0,.12);
  transition:background .28s ease,border-color .28s ease;
}

.contato-icon svg{
  width:26px;height:26px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  display:block;
}

.contato-card:hover .contato-icon{
  background:rgba(105,232,255,.12);
  border-color:rgba(105,232,255,.35);
}

.contato-card h3{
  font-family:'Bebas Neue',sans-serif;
  font-size:22px;
  font-weight:400;
  color:#fff;
  margin-bottom:7px;
  letter-spacing:1px;
}

.contato-card p{
  font-size:15px;
  line-height:1.65;
  color:rgba(255,255,255,.60);
  margin-bottom:22px;
}

.contato-card *:last-child{margin-bottom:0;}

.contato-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 22px;
  border-radius:999px;
  border:1.5px solid rgba(255,255,255,.50);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:500;
  letter-spacing:.5px;
  transition:.28s ease;
}

.contato-btn::after{
  content:'→';
  font-size:14px;
  transition:transform .24s ease;
}

.contato-btn:hover{
  background:rgba(255,255,255,.13);
  border-color:#fff;
  color:#fff;
  transform:translateY(-2px);
}
.contato-btn:hover::after{transform:translateX(4px);}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{
  padding:44px 0 32px;
  margin-top:0;
  position:relative;
  z-index:10;
  background:rgba(0,0,0,.22);
  overflow:hidden;
}

.site-footer::before{
  content:'';
  position:absolute;top:0;
  left:50%;transform:translateX(-50%);
  width:min(1180px,88%);
  height:1.5px;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(105,232,255,.80),
    rgba(255,255,255,0)
  );
  box-shadow:0 0 10px rgba(105,232,255,.65),0 0 22px rgba(105,232,255,.20);
}

.site-footer::after{
  content:'';
  position:absolute;
  bottom:-80px;left:50%;transform:translateX(-50%);
  width:560px;height:180px;
  border-radius:50%;
  background:radial-gradient(ellipse,rgba(0,73,196,.16),transparent 70%);
  pointer-events:none;
}

.footer-container{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:28px;
  position:relative;z-index:2;
}

.footer-logo{
  font-family:'Bebas Neue',sans-serif;
  font-size:28px;
  font-weight:400;
  letter-spacing:4px;
  color:#fff;
  text-shadow:
    0 0 8px rgba(255,255,255,.40),
    0 0 20px rgba(255,255,255,.12);
  justify-self:start;
}

.footer-social{
  display:flex;
  gap:12px;
  justify-self:center;
}

.footer-social a{
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(6px);
  transition:transform .25s ease,background .25s ease,
             border-color .25s ease,box-shadow .25s ease;
}

.footer-social a:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(105,232,255,.55);
  transform:translateY(-4px);
  box-shadow:0 0 14px rgba(105,232,255,.25),0 6px 18px rgba(0,0,0,.18);
}

.footer-social svg{width:19px;height:19px;}

.footer-copy{
  font-size:12px;
  color:rgba(255,255,255,.42);
  letter-spacing:.4px;
  justify-self:end;
  text-align:right;
}

/* =========================================================
   FLOATING BUTTONS
========================================================= */
.floating-buttons{
  position:fixed;
  right:24px;bottom:24px;
  display:flex;flex-direction:column;gap:12px;
  z-index:9999;
}

.btn-whatsapp{
  width:54px;height:54px;
  background:#fff;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:
    0 0 12px rgba(0,255,200,.48),
    0 0 28px rgba(0,255,200,.22);
  transition:.25s cubic-bezier(.22,.68,0,1.2);
}
.btn-whatsapp svg{width:26px;height:26px;color:#25D366;}
.btn-whatsapp:hover{
  transform:scale(1.10);
  box-shadow:
    0 0 18px rgba(0,255,200,.68),
    0 0 40px rgba(0,255,200,.32);
}

.btn-top{
  width:54px;height:54px;
  border-radius:50%;
  border:1.5px solid rgba(105,232,255,.55);
  background:#fff;
  cursor:pointer;
  box-shadow:0 0 10px #7cf4ff,0 0 24px rgba(124,244,255,.35);
  color:rgba(5,44,126,.96);
  transition:.25s cubic-bezier(.22,.68,0,1.2);
  display:flex;align-items:center;justify-content:center;
}
.btn-top svg{
  width:22px;height:22px;
  stroke:rgba(5,44,126,.96);
  stroke-width:2.5;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.btn-top:hover{
  transform:translateY(-4px);
  box-shadow:0 0 14px #7cf4ff,0 0 38px rgba(124,244,255,.50);
}

.servico-icon svg,
.contato-icon svg,
.cta-button .icon svg,
.btn-top svg{
  width:28px;height:28px;display:block;
}

.servico-icon,
.contato-icon,
.cta-button .icon,
.btn-top{
  display:flex;align-items:center;justify-content:center;
}

.servico-icon svg{stroke:#050505;fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.contato-icon svg,
.cta-button .icon svg{
  stroke:currentColor;fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
}

/* =========================================================
   ANIMAÇÕES DE SCROLL
========================================================= */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(28px);}
  to{opacity:1;transform:translateY(0);}
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;}
}

.servico-premium-card:hover .servico-icon{
  background:linear-gradient(135deg,rgba(6,72,179,.14),rgba(111,226,255,.26));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    0 8px 24px rgba(7,38,110,.16),
    0 0 16px rgba(105,232,255,.18);
  transform:scale(1.08);
  transition:transform .28s cubic-bezier(.25,.8,.25,1),background .28s ease,box-shadow .28s ease;
}

.servico-detalhado-card:hover .servico-detalhado-icon{
  background:linear-gradient(135deg,rgba(9,76,182,.14),rgba(117,230,255,.26));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 8px 24px rgba(10,38,110,.18),
    0 0 16px rgba(105,232,255,.16);
  transform:scale(1.06);
  transition:transform .28s cubic-bezier(.25,.8,.25,1),background .28s ease,box-shadow .28s ease;
}

.servico-icon,
.servico-detalhado-icon{
  transition:transform .28s cubic-bezier(.25,.8,.25,1),background .28s ease,box-shadow .28s ease;
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width:1150px){
  .hero-right{min-height:600px;}
  .globo-bg{width:640px;}
  .contadora-front{width:500px;}
  .cta-button{min-width:260px;}
}

@media (max-width:1100px){
  .servicos-detalhados-grid-premium{gap:20px;}
  .servico-detalhado-card{min-height:220px;}
}

@media (max-width:991px){
  .menu-toggle{display:block;}

  .nav-right{
    position:absolute;
    top:100%;right:0;left:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
    padding:22px;
    margin-top:14px;
    border-radius:22px;
    background:rgba(5,44,126,.96);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 18px 36px rgba(0,0,0,.22);
  }

  .nav-right.active{display:flex;}
  .nav-menu{flex-direction:column;align-items:flex-start;gap:18px;}
  .nav-btn{width:100%;justify-content:center;}
  .navbar{position:relative;}

  .hero-content{grid-template-columns:1fr;gap:0;padding-bottom:0;}
  .hero-left{padding-top:25px;}
  .hero-right{min-height:440px;overflow:visible;}

  .globo-bg{left:50%;right:auto;top:20px;transform:translateX(-50%);width:520px;}
  .contadora-front{left:50%;right:auto;bottom:0;transform:translateX(-50%);width:400px;}

  .servicos-premium{padding:60px 0 90px;}

  .servicos-premium-grid,
  .servicos-detalhados-grid-premium,
  .depoimentos-grid,
  .contato-grid,
  .sobre-servicos{grid-template-columns:1fr;}

  .servico-premium-card,
  .servico-detalhado-card{min-height:auto;}

  .servicos-detalhados-premium{padding:65px 0 90px;}
  .servico-detalhado-card-full{grid-column:auto;max-width:none;margin:0;}

  .depoimentos-section{padding:80px 0 90px;}
  .depoimentos-grid{gap:18px;}
  .depoimento-card.destaque{transform:none;}
  .depoimento-card.destaque:hover{transform:translateY(-7px);}

  .contato-grid{margin-bottom:0;}
  .contato-section{padding:70px 0 70px;}

  .footer-container{
    grid-template-columns:1fr;
    justify-items:center;
    gap:20px;
    text-align:center;
  }
  .footer-logo{justify-self:center;}
  .footer-copy{justify-self:center;text-align:center;}
}

@media (max-width:900px){
  .contato-section{padding-bottom:60px;}
  .site-footer{margin-top:0;}
}

@media (max-width:767px){
  .logo{font-size:26px;}
  .hero{min-height:auto;}
  .hero-content{min-height:auto;padding:80px 0 0;}
  .hero-left h1{font-size:50px;max-width:100%;}
  .hero-left p{font-size:18px;max-width:100%;}

  /* CTA mobile — só tamanho, sem mexer em fonte */
  .cta-button{width:auto;min-width:unset;min-height:48px;padding:0 8px 0 18px;gap:10px;}
  .cta-button .icon{width:36px;height:36px;}

  .hero-right{min-height:380px;overflow:visible;}
  .globo-bg{width:360px;top:20px !important;left:50%;right:auto;transform:translateX(-50%);opacity:.55;}
  .contadora-front{width:280px;left:50%;right:auto;bottom:0 !important;transform:translateX(-50%) !important;}

  .bottom-info .container{flex-direction:column;align-items:flex-start;gap:8px;font-size:13px;}
  .star-shape{width:22px;height:22px;right:16px;bottom:16px;}

  .servicos-head,
  .servicos-head-premium,
  .depoimentos-header{margin-bottom:38px;}

  .servico-premium-card,
  .depoimento-card{padding:26px 22px 24px;border-radius:22px;}

  .servico-icon{width:60px;height:60px;border-radius:18px;margin-bottom:18px;}
  .servico-icon svg{width:30px;height:30px;}

  .servico-premium-card p,
  .servico-detalhado-content p{font-size:15px;max-width:100%;}

  .servico-detalhado-card{padding:22px 20px;border-radius:22px;gap:14px;flex-direction:column;}
  .servico-detalhado-icon{width:68px;height:68px;border-radius:18px;flex-basis:auto;}
  .servico-detalhado-icon svg{width:36px;height:36px;}
  .servico-detalhado-content h3{font-size:22px;}

  .depoimento-card{padding:24px 20px;border-radius:22px;}
  .depoimento-card p{font-size:15px;line-height:1.78;}

  .contato-card{padding:28px 22px;border-radius:22px;}
  .contato-icon{width:48px;height:48px;font-size:22px;border-radius:13px;}

  .footer-logo{font-size:22px;}
  .site-footer{padding:36px 0 26px;}
}

@media (max-width:480px){
  .hero-left h1{font-size:40px;}
  .hero-left p{font-size:16px;}
  .hero-right{min-height:320px;overflow:visible;}
  .globo-bg{width:499px;top:10px !important;transform:translateX(-60%);opacity:.45;}
  .contadora-front{width:240px;bottom:0 !important;transform:translateX(-50%) !important;}
}

/* =========================================================
   CANVAS DE PARTÍCULAS — Hero
========================================================= */
#hero-particles{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  pointer-events:none;
}

/* =========================================================
   REVEAL AO ROLAR
========================================================= */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .65s cubic-bezier(.22,.68,0,1.2),
             transform .65s cubic-bezier(.22,.68,0,1.2);
}
.reveal.revealed{
  opacity:1;
  transform:translateY(0);
}

.reveal-card{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .60s cubic-bezier(.22,.68,0,1.2),
             transform .60s cubic-bezier(.22,.68,0,1.2);
  transition-delay:var(--reveal-delay, 0ms);
}
.reveal-card.revealed{
  opacity:1;
  transform:translateY(0);
}

/* Garantir que animações de entrada do hero não conflitem com reveal */
.hero-left h1,
.hero-left p,
.cta-button{
  opacity:1 !important; /* controlado pelo riseIn keyframe */
}

/* =========================================================
   STATS — Seção Sobre
========================================================= */
.sobre-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  max-width:900px;
  margin:0 auto 52px;
}

.sobre-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding:28px 16px 24px;
  border-radius:20px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:
    0 12px 28px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.12);
  transition:.28s ease;
}

.sobre-stat:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,.10);
  border-color:rgba(105,232,255,.35);
  box-shadow:
    0 20px 40px rgba(0,0,0,.22),
    0 0 20px rgba(105,232,255,.12),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.stat-number{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(42px,4vw,64px);
  line-height:1;
  letter-spacing:2px;
  color:#fff;
  text-shadow:
    0 0 20px rgba(105,232,255,.45),
    0 0 40px rgba(105,232,255,.18);
}

.stat-label{
  font-size:13px;
  font-weight:500;
  color:rgba(255,255,255,.65);
  letter-spacing:.5px;
  text-align:center;
  line-height:1.4;
}

@media (max-width:767px){
  .sobre-stats{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:36px;
  }
  .sobre-stat{padding:22px 12px 18px;}
  .stat-number{font-size:40px;}
  .stat-label{font-size:12px;}
}

@media (max-width:400px){
  .sobre-stats{grid-template-columns:repeat(2,1fr);}
}