:root{ 
  --navy:#031b44;
  --navy-2:#06204e;
  --navy-3:#0d2d63;
  --orange:#f98b00;
  --text:#08152f;
  --muted:#7a7f87;
  --light:#f1f1f1;
  --white:#ffffff;
  --border:#d9d9d9;
  --shadow:0 18px 32px rgba(0,0,0,.14);
  --shadow-soft:0 18px 40px rgba(3, 27, 68, .18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
}

/* TOPO */
.topbar{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(0,0,0,.05);
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
}
.topbar__inner{
  min-height:78px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:28px;
  align-items:center;
}
.back-link{
  font-size:20px;
  font-weight:800;
  color:var(--navy);
  letter-spacing:.2px;
}
.main-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
}
.main-nav a{
  font-size:16px;
  font-weight:700;
  color:var(--text);
  opacity:.9;
  transition:opacity .2s ease, color .2s ease;
}
.main-nav a:hover{
  opacity:1;
  color:#2b59c3;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(3,27,68,.12);
  background:#fff;
  border-radius:10px;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:var(--navy);
  border-radius:2px;
}

#atuacao,
#quem-somos,
#especialidades,
#parcerias,
#pulsar,
#ativos-tributarios,
#contato{
  scroll-margin-top:108px;
}

/* HERO FIXA */
.site-shell{
  position:relative;
  z-index:1;
}
.hero-fixed-layer{
  position:fixed;
  top:78px;
  left:0;
  width:100%;
  height:calc(100vh - 78px);
  z-index:1;
  overflow:hidden;
  pointer-events:none;
}
.section-bg-primary{
  background-image:
    linear-gradient(90deg, rgba(2,12,36,.92) 0%, rgba(3,16,48,.84) 32%, rgba(6,20,58,.62) 58%, rgba(8,20,55,.38) 100%),
    radial-gradient(circle at 18% 22%, rgba(0,195,255,.16) 0%, rgba(0,195,255,0) 28%),
    radial-gradient(circle at 82% 18%, rgba(147,83,255,.18) 0%, rgba(147,83,255,0) 26%),
    url('estudante_home.png');
  background-size:cover;
  background-position:center right;
}
.section-bg-dark{
  background-image:linear-gradient(rgba(2,17,44,.94), rgba(2,17,44,.94)), url('estudante_home.png');
  background-size:cover;
  background-position:center right;
}
.section-bg-faded{
  background-image:linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)), url('estudante_home.png');
  background-size:cover;
  background-position:center right;
}
.hero{
  position:relative;
  min-height:100%;
  height:100%;
  display:flex;
  align-items:flex-start;
}
.hero-spacer{
  height:calc(100vh - 78px + 140px);
  position:relative;
  z-index:2;
}
.hero__content{
  position:relative;
  z-index:2;
  padding:54px 0 80px;
  pointer-events:auto;
}
.brand-row{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin:0 0 24px -76px;
}
.brand-logo{
  width:min(100%, 300px);
  height:auto;
  display:block;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.hero-copy{
  max-width:980px;
}
.hero-title{
  max-width:980px;
  margin:0 0 16px;
  color:#fff;
  font-size:22px;
  line-height:1.18;
  font-weight:800;
  letter-spacing:-.2px;
}
.hero-title--signature{
  margin-top:8px;
}
.hero-pillars{
  display:grid;
  grid-template-columns:repeat(3, 190px);
  justify-content:flex-start;
  gap:14px;
  margin:0 0 18px;
  max-width:598px;
}
.pillar-card{
  min-height:145px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:rgba(7, 24, 54, .34);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  padding:18px 18px 16px;
  box-shadow:
    0 18px 34px rgba(4, 24, 58, .16),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.pillar-card:hover{
  transform:translateY(-4px);
  background:rgba(10, 31, 68, .42);
  box-shadow:
    0 24px 42px rgba(4, 24, 58, .24),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.pillar-card p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.35;
  font-weight:700;
}
.pillar-card img{
  max-width:130px;
  height:auto;
  display:block;
  margin-bottom:10px;
}

/* SISTEMA DE PAINÉIS */
.floating-panel{
  position:relative;
  z-index:10;
  background:transparent;
}
.panel-shell{
  background:#f1f1f1;
  border-radius:32px 32px 0 0;
  box-shadow:
    0 -12px 30px rgba(0,0,0,.05),
    0 24px 44px rgba(3,27,68,.09);
}
.panel-base{
  margin-top:-36px;
}
.panel-base .panel-shell{
  max-width:1120px;
  min-height:640px;
  padding:64px 44px 58px;
}
.panel-wide{
  margin-top:42px;
}
.panel-wide .panel-shell{
  max-width:1220px;
  min-height:560px;
  padding:70px 54px 64px;
}
.panel-expanded{
  margin-top:42px;
}
.panel-expanded .panel-shell{
  max-width:1280px;
  min-height:620px;
  padding:74px 58px 70px;
}
.features .panel-shell{
  min-height:470px;
}

.section{padding:0}
.section--white{background:transparent}

/* PADRÃO DE TÍTULO + TEXTO ABAIXO */
.section-header{
  width:100%;
  max-width:980px;
  margin:0 auto 28px;
  text-align:center;
}
.section-header--left{
  max-width:none;
  margin:0 0 38px;
  text-align:left;
}
.section-header--light .section-title,
.section-header--light .section-intro{
  color:#fff;
}
.section-title{
  font-size:19px;
  line-height:1.1;
  margin:0 0 12px;
  text-align:center;
  font-weight:800;
  letter-spacing:.6px;
  color:var(--navy);
}
.section-header--left .section-title{
  text-align:left;
}
.section-title--light{
  color:#fff;
}
.section-intro{
  margin:0 auto;
  max-width:900px;
  font-size:13px;
  line-height:1.65;
  color:#2b3650;
}
.section-header--left .section-intro{
  max-width:880px;
  margin:0;
}
.section-intro strong{
  color:var(--navy);
  font-weight:800;
}
.section-intro--light strong{
  color:#fff;
}

/* ORACLE */
.oracle-section .panel-shell{
  padding-top:60px;
}
.oracle-company{
  display:flex;
  flex-direction:column;
  gap:36px;
}
.oracle-company__top{
  display:grid;
  grid-template-columns:1.02fr 1fr;
  gap:38px;
  align-items:start;
}
.oracle-company__visual-column{
  position:relative;
  min-height:284px;
}
.oracle-company__backdrop{
  position:absolute;
  top:0;
  bottom:0;
  left:-44px;
  width:74%;
  background:url('fundo_sala.png') center/cover no-repeat;
  z-index:1;
}
.oracle-company__images{
  position:relative;
  z-index:2;
  width:calc(100% - 40px);
  margin:26px 0 0 42px;
  box-shadow:0 18px 34px rgba(3,27,68,.12);
}
.oracle-company__image{
  min-height:238px;
}
.oracle-company__image--single{
  background:
    linear-gradient(rgba(3,27,68,.08), rgba(3,27,68,.08)),
    url('oracle-foto.png') center/cover no-repeat;
}
.oracle-company__content{
  padding:6px 4px 0;
}
.oracle-company__title{
  margin:0 0 18px;
  font-size:44px;
  line-height:1.03;
  font-weight:800;
  color:#000;
  letter-spacing:-.7px;
}
.oracle-company__title span{
  color:var(--orange);
}
.oracle-company__lead{
  margin-top:0;
  font-size:18px;
  line-height:1.6;
  font-weight:800;
  color:#374766;
}
.oracle-company__content p{
  margin:0 0 16px;
  font-size:12px;
  line-height:1.82;
  color:#3e4d68;
}
.oracle-company__divider{
  width:100%;
  max-width:520px;
  height:1px;
  background:rgba(3,27,68,.14);
  margin:14px 0 12px;
}
.oracle-company__closing{
  font-size:12px;
  line-height:1.5;
  font-weight:800;
  color:var(--navy);
  max-width:520px;
}
.oracle-highlights{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.oracle-highlight-card{
  min-height:162px;
  background:transparent;
  border:1px solid rgba(3,27,68,.15);
  padding:26px 18px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.oracle-highlight-card__icon{
  position:relative;
  width:58px;
  height:58px;
  margin-bottom:18px;
  color:var(--orange);
}
.oracle-highlight-card h4{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.2;
  font-weight:800;
  color:#000;
}
.oracle-highlight-card p{
  margin:0;
  font-size:14px;
  line-height:1.58;
  color:#40506c;
}
.oracle-highlight-card__icon--jde span,
.oracle-highlight-card__icon--jde i,
.oracle-highlight-card__icon--database span,
.oracle-highlight-card__icon--database i,
.oracle-highlight-card__icon--apex span,
.oracle-highlight-card__icon--ai span,
.oracle-highlight-card__icon--ai i{
  position:absolute;
  display:block;
}
.oracle-highlight-card__icon--jde span:nth-child(1){
  width:32px;
  height:20px;
  border:3px solid currentColor;
  border-radius:4px;
  left:13px;
  top:10px;
}
.oracle-highlight-card__icon--jde span:nth-child(2){
  width:20px;
  height:3px;
  background:currentColor;
  left:19px;
  top:36px;
}
.oracle-highlight-card__icon--jde i{
  width:10px;
  height:10px;
  border:3px solid currentColor;
  border-radius:50%;
  left:24px;
  top:40px;
  background:#f1f1f1;
}
.oracle-highlight-card__icon--database span:nth-child(1),
.oracle-highlight-card__icon--database span:nth-child(2),
.oracle-highlight-card__icon--database span:nth-child(3){
  left:11px;
  width:36px;
  height:10px;
  border:3px solid currentColor;
  border-radius:50%;
  background:#f1f1f1;
}
.oracle-highlight-card__icon--database span:nth-child(1){top:8px;}
.oracle-highlight-card__icon--database span:nth-child(2){top:22px;}
.oracle-highlight-card__icon--database span:nth-child(3){top:36px;}
.oracle-highlight-card__icon--database i{
  left:11px;
  top:13px;
  width:36px;
  height:28px;
  border-left:3px solid currentColor;
  border-right:3px solid currentColor;
}
.oracle-highlight-card__icon--apex span{
  width:16px;
  height:16px;
  border:3px solid currentColor;
  border-radius:4px;
}
.oracle-highlight-card__icon--apex span:nth-child(1){left:9px;top:9px;}
.oracle-highlight-card__icon--apex span:nth-child(2){right:9px;top:9px;}
.oracle-highlight-card__icon--apex span:nth-child(3){left:9px;bottom:9px;}
.oracle-highlight-card__icon--apex span:nth-child(4){right:9px;bottom:9px;}
.oracle-highlight-card__icon--ai span:nth-child(1){
  width:20px;
  height:20px;
  border:3px solid currentColor;
  border-radius:50%;
  left:6px;
  top:19px;
}
.oracle-highlight-card__icon--ai span:nth-child(2){
  width:18px;
  height:18px;
  border-top:3px solid currentColor;
  border-right:3px solid currentColor;
  transform:rotate(45deg);
  right:8px;
  top:11px;
}
.oracle-highlight-card__icon--ai i{
  left:23px;
  top:16px;
  width:12px;
  height:26px;
  border-left:3px solid currentColor;
  border-right:3px solid currentColor;
}
.oracle-highlight-card__icon--ai i::before,
.oracle-highlight-card__icon--ai i::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:18px;
  height:3px;
  background:currentColor;
}
.oracle-highlight-card__icon--ai i::before{top:4px;}
.oracle-highlight-card__icon--ai i::after{bottom:4px;}

/* QUEM SOMOS */
.about-company{
  display:flex;
  flex-direction:column;
  gap:36px;
}
.about-company__top{
  display:grid;
  grid-template-columns:1.02fr 1fr;
  gap:38px;
  align-items:start;
}
.about-company__visual-column{
  position:relative;
  min-height:284px;
}
.about-company__backdrop{
  position:absolute;
  top:0;
  bottom:0;
  left:-54px;
  width:74%;
  background:linear-gradient(rgba(3,27,68,.78), rgba(3,27,68,.78)), url('desktop.png') center/cover no-repeat;
  z-index:1;
}
.about-company__images{
  position:relative;
  z-index:2;
  width:calc(100% - 40px);
  margin:26px 0 0 42px;
  box-shadow:0 18px 34px rgba(3,27,68,.12);
}
.about-company__image{
  min-height:238px;
}
.about-company__image--single{
  background:
    linear-gradient(rgba(3,27,68,.10), rgba(3,27,68,.10)),
    url('quem_somos.png') center/cover no-repeat;
}
.about-company__image--singlep{
  background:
    linear-gradient(rgba(3,27,68,.10), rgba(3,27,68,.10)),
    url('img_parceria.png') center/cover no-repeat;
}
.about-company__image--left{
  border-right:1px solid rgba(255,255,255,.14);
}
.about-company__image--right{
  border-left:1px solid rgba(0,0,0,.04);
}
.about-company__content{
  padding:6px 4px 0;
}
.about-company__title{
  margin:0 0 18px;
  font-size:44px;
  line-height:1.03;
  font-weight:800;
  color:#000;
  letter-spacing:-.7px;
}
.about-company__title span{
  color:var(--orange);
}
.about-company__lead{
  margin-top:0;
  font-size:18px;
  line-height:1.6;
  font-weight:800;
  color:#374766;
}
.about-company__content p{
  margin:0 0 16px;
  font-size:12px;
  line-height:1.82;
  color:#3e4d68;
}
.about-company__divider{
  width:100%;
  max-width:520px;
  height:1px;
  background:rgba(3,27,68,.14);
  margin:14px 0 12px;
}
.about-company__closing{
  font-size:12px;
  line-height:1.5;
  font-weight:800;
  color:var(--navy);
  max-width:520px;
}
.about-highlights{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.about-highlight-card{
  min-height:148px;
  background:transparent;
  border:1px solid rgba(3,27,68,.15);
  padding:28px 20px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.about-highlight-card__icon{
  position:relative;
  width:58px;
  height:58px;
  margin-bottom:18px;
  color:var(--orange);
}
.about-highlight-card h4{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.2;
  font-weight:800;
  color:#000;
}
.about-highlight-card p{
  margin:0;
  font-size:14px;
  line-height:1.58;
  color:#40506c;
}
.about-highlight-card__icon--chart span,
.about-highlight-card__icon--chart i,
.about-highlight-card__icon--people span,
.about-highlight-card__icon--people i,
.about-highlight-card__icon--globe span,
.about-highlight-card__icon--globe i,
.about-highlight-card__icon--handshake span,
.about-highlight-card__icon--handshake i{
  position:absolute;
  display:block;
}
.about-highlight-card__icon--chart span:nth-child(1),
.about-highlight-card__icon--chart span:nth-child(2),
.about-highlight-card__icon--chart span:nth-child(3){
  bottom:6px;
  width:8px;
  border:3px solid currentColor;
  border-radius:2px;
}
.about-highlight-card__icon--chart span:nth-child(1){left:7px;height:22px;}
.about-highlight-card__icon--chart span:nth-child(2){left:23px;height:32px;}
.about-highlight-card__icon--chart span:nth-child(3){left:39px;height:15px;}
.about-highlight-card__icon--chart i{
  inset:0;
}
.about-highlight-card__icon--chart i::before,
.about-highlight-card__icon--chart i::after{
  content:"";
  position:absolute;
  border:3px solid currentColor;
  border-radius:50%;
  width:6px;
  height:6px;
  background:#f1f1f1;
}
.about-highlight-card__icon--chart i::before{
  left:4px;
  top:18px;
  box-shadow:16px 10px 0 0 #f1f1f1, 32px -2px 0 0 #f1f1f1;
}
.about-highlight-card__icon--chart i::after{
  left:10px;
  top:23px;
  width:34px;
  height:16px;
  border:none;
  border-top:3px solid currentColor;
  transform:rotate(-24deg);
  background:transparent;
  border-radius:0;
  box-shadow:none;
}
.about-highlight-card__icon--people span:nth-child(1){
  width:12px;height:12px;border:3px solid currentColor;border-radius:50%;top:6px;left:23px;
}
.about-highlight-card__icon--people span:nth-child(2),
.about-highlight-card__icon--people span:nth-child(3){
  width:10px;height:10px;border:3px solid currentColor;border-radius:50%;top:15px;
}
.about-highlight-card__icon--people span:nth-child(2){left:7px;}
.about-highlight-card__icon--people span:nth-child(3){right:7px;}
.about-highlight-card__icon--people i{
  left:7px;right:7px;bottom:8px;height:22px;
}
.about-highlight-card__icon--people i::before,
.about-highlight-card__icon--people i::after{
  content:"";
  position:absolute;
  border:3px solid currentColor;
  border-bottom:none;
  border-radius:16px 16px 0 0;
  height:12px;
  bottom:0;
}
.about-highlight-card__icon--people i::before{left:0;width:16px;}
.about-highlight-card__icon--people i::after{right:0;width:16px;}
.about-highlight-card__icon--people i{
  border-top:3px solid currentColor;
  border-left:3px solid currentColor;
  border-right:3px solid currentColor;
  border-bottom:none;
  border-radius:18px 18px 0 0;
  width:18px;
  margin:auto;
}
.about-highlight-card__icon--globe span{
  inset:7px;
  border:3px solid currentColor;
  border-radius:50%;
}
.about-highlight-card__icon--globe i{
  inset:7px;
}
.about-highlight-card__icon--globe i::before,
.about-highlight-card__icon--globe i::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  height:100%;
  border-left:3px solid currentColor;
}
.about-highlight-card__icon--globe i::after{
  width:100%;
  height:0;
  top:50%;
  left:0;
  transform:none;
  border-left:none;
  border-top:3px solid currentColor;
}
.about-highlight-card__icon--handshake span:nth-child(1),
.about-highlight-card__icon--handshake span:nth-child(2){
  width:16px;
  height:10px;
  border:3px solid currentColor;
  border-radius:4px;
  top:18px;
}
.about-highlight-card__icon--handshake span:nth-child(1){
  left:6px;
  transform:rotate(35deg);
}
.about-highlight-card__icon--handshake span:nth-child(2){
  right:6px;
  transform:rotate(-35deg);
}
.about-highlight-card__icon--handshake i{
  left:18px;
  right:18px;
  top:24px;
  height:10px;
  border-top:3px solid currentColor;
  border-bottom:3px solid currentColor;
  transform:skewX(-18deg);
}

/* PULSAR */
.pulsar-section .panel-shell{
  padding-top:74px;
}
.pulsar-company{
  display:flex;
  flex-direction:column;
  gap:38px;
}
.pulsar-company__top{
  display:grid;
  grid-template-columns:1fr 1.02fr;
  gap:42px;
  align-items:start;
}
.pulsar-company__content{
  padding:8px 4px 0;
}
.pulsar-company__title{
  margin:0 0 18px;
  font-size:44px;
  line-height:1.03;
  font-weight:800;
  color:#000;
  letter-spacing:-.7px;
}
.pulsar-company__title span{
  color:var(--orange);
}
.pulsar-company__lead{
  margin-top:0;
  font-size:18px;
  line-height:1.6;
  font-weight:800;
  color:#374766;
}
.pulsar-company__content p{
  margin:0 0 16px;
  font-size:12px;
  line-height:1.82;
  color:#3e4d68;
}
.pulsar-company__impact-box{
  margin:18px 0 18px;
  padding:16px 18px;
  border-left:4px solid var(--orange);
  background:linear-gradient(90deg, rgba(8,34,76,.06), rgba(8,34,76,0));
  border-radius:0 14px 14px 0;
}
.pulsar-company__impact-box strong{
  display:block;
  font-size:16px;
  line-height:1.55;
  color:var(--navy);
}
.pulsar-company__steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 12px;
  margin:18px 0 12px;
}
.pulsar-company__steps span{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:10px 14px;
  font-size:13px;
  line-height:1.45;
  color:#3c4b66;
  background:#fff;
  border:1px solid rgba(3,27,68,.10);
  border-radius:14px;
  box-shadow:0 10px 20px rgba(3,27,68,.04);
}
.pulsar-company__divider{
  width:100%;
  max-width:520px;
  height:1px;
  background:rgba(3,27,68,.14);
  margin:14px 0 12px;
}
.pulsar-company__closing{
  font-size:12px;
  line-height:1.5;
  font-weight:800;
  color:var(--navy);
  max-width:520px;
}
.pulsar-company__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:20px;
  min-height:48px;
  padding:0 24px;
  border-radius:10px;
  background:var(--orange);
  color:#fff;
  font-size:15px;
  font-weight:800;
  box-shadow:0 14px 26px rgba(249,139,0,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.pulsar-company__cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 30px rgba(249,139,0,.28);
}
.pulsar-company__visual-column{
  position:relative;
  min-height:320px;
}
.pulsar-company__backdrop{
  position:absolute;
  top:-6px;
  bottom:-6px;
  right:-50px;
  width:78%;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    url('fundo_Pulsar.png') center/cover no-repeat;
  border-radius:120px 24px 120px 24px;
  z-index:1;
}
.pulsar-company__images{
  position:relative;
  z-index:2;
  width:calc(100% - 28px);
  margin:28px 34px 0 0;
  box-shadow:0 22px 42px rgba(3,27,68,.14);
  border-radius:26px;
  overflow:hidden;
}
.pulsar-company__image{
  min-height:300px;
}
.pulsar-company__image--single{
  background:
    linear-gradient(rgba(3,27,68,.06), rgba(3,27,68,.06)),
    url('img_Pulsar.png') center/cover no-repeat;
}
.pulsar-highlights{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.pulsar-highlight-card{
  min-height:176px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(3,27,68,.12);
  padding:24px 18px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  border-radius:18px;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}
.pulsar-highlight-card__icon{
  position:relative;
  width:58px;
  height:58px;
  margin-bottom:18px;
  color:#1494b8;
}
.pulsar-highlight-card h4{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.2;
  font-weight:800;
  color:#000;
}
.pulsar-highlight-card p{
  margin:0;
  font-size:14px;
  line-height:1.58;
  color:#40506c;
}
.pulsar-highlight-card__icon--governance span,
.pulsar-highlight-card__icon--governance i,
.pulsar-highlight-card__icon--signals span,
.pulsar-highlight-card__icon--signals i,
.pulsar-highlight-card__icon--shield span,
.pulsar-highlight-card__icon--shield i,
.pulsar-highlight-card__icon--sustainability span,
.pulsar-highlight-card__icon--sustainability i{
  position:absolute;
  display:block;
}
.pulsar-highlight-card__icon--governance span:nth-child(1),
.pulsar-highlight-card__icon--governance span:nth-child(2),
.pulsar-highlight-card__icon--governance span:nth-child(3){
  width:12px;
  height:12px;
  border:3px solid currentColor;
  border-radius:4px;
}
.pulsar-highlight-card__icon--governance span:nth-child(1){left:5px;top:23px;}
.pulsar-highlight-card__icon--governance span:nth-child(2){left:23px;top:8px;}
.pulsar-highlight-card__icon--governance span:nth-child(3){right:5px;top:23px;}
.pulsar-highlight-card__icon--governance i{
  left:13px;
  top:18px;
  width:32px;
  height:20px;
  border-top:3px solid currentColor;
  border-left:3px solid currentColor;
  border-right:3px solid currentColor;
  transform:skewY(-20deg);
  border-radius:8px 8px 0 0;
}
.pulsar-highlight-card__icon--signals span:nth-child(1){
  inset:7px;
  border:3px solid currentColor;
  border-radius:50%;
}
.pulsar-highlight-card__icon--signals span:nth-child(2){
  left:50%;
  top:12px;
  width:3px;
  height:34px;
  background:currentColor;
  transform:translateX(-50%);
}
.pulsar-highlight-card__icon--signals span:nth-child(3){
  top:50%;
  left:12px;
  right:12px;
  height:3px;
  background:currentColor;
  transform:translateY(-50%);
}
.pulsar-highlight-card__icon--signals i{
  left:13px;
  top:26px;
  width:32px;
  height:3px;
  background:currentColor;
  transform:rotate(-25deg);
}
.pulsar-highlight-card__icon--shield span{
  left:14px;
  top:8px;
  width:30px;
  height:38px;
  border:3px solid currentColor;
  border-radius:12px 12px 16px 16px;
  clip-path:polygon(50% 0%, 100% 14%, 100% 62%, 50% 100%, 0% 62%, 0% 14%);
}
.pulsar-highlight-card__icon--shield i{
  left:25px;
  top:17px;
  width:8px;
  height:18px;
  border-left:3px solid currentColor;
  border-bottom:3px solid currentColor;
  transform:rotate(-45deg);
}
.pulsar-highlight-card__icon--sustainability span:nth-child(1){
  left:7px;
  bottom:9px;
  width:12px;
  height:20px;
  border:3px solid currentColor;
  border-radius:2px;
}
.pulsar-highlight-card__icon--sustainability span:nth-child(2){
  left:24px;
  bottom:9px;
  width:12px;
  height:32px;
  border:3px solid currentColor;
  border-radius:2px;
}
.pulsar-highlight-card__icon--sustainability i{
  right:5px;
  top:8px;
  width:22px;
  height:22px;
  border-top:3px solid currentColor;
  border-right:3px solid currentColor;
  border-radius:50%;
  transform:rotate(28deg);
}
.pulsar-highlight-card__icon--sustainability i::after{
  content:"";
  position:absolute;
  right:-2px;
  top:-3px;
  width:8px;
  height:8px;
  border-top:3px solid currentColor;
  border-right:3px solid currentColor;
  transform:rotate(18deg);
}

/* ATIVOS TRIBUTÁRIOS */
.ativos-section .panel-shell{
  padding-top:60px;
}
.ativos-company{
  display:flex;
  flex-direction:column;
  gap:36px;
}
.ativos-company__top{
  display:grid;
  grid-template-columns:1.02fr 1fr;
  gap:38px;
  align-items:start;
}
.ativos-company__visual-column{
  position:relative;
  min-height:300px;
}
.ativos-company__backdrop{
  position:absolute;
  top:0;
  bottom:0;
  left:-44px;
  width:74%;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    url('fundo_vocare.png') center/cover no-repeat;
  z-index:1;
}
.ativos-company__images{
  position:relative;
  z-index:2;
  width:calc(100% - 40px);
  margin:26px 0 0 42px;
  box-shadow:0 18px 34px rgba(3,27,68,.12);
}
.ativos-company__image{
  min-height:250px;
}
.ativos-company__image--single{
  background:
    linear-gradient(rgba(3,27,68,.06), rgba(3,27,68,.06)),
    url('frente_Vocare.png') center/cover no-repeat;
}
.ativos-company__content{
  padding:6px 4px 0;
}
.ativos-company__title{
  margin:0 0 18px;
  font-size:44px;
  line-height:1.03;
  font-weight:800;
  color:#000;
  letter-spacing:-.7px;
}
.ativos-company__title span{
  color:var(--orange);
}
.ativos-company__lead{
  margin-top:0;
  font-size:18px;
  line-height:1.6;
  font-weight:800;
  color:#374766;
}
.ativos-company__content p{
  margin:0 0 16px;
  font-size:12px;
  line-height:1.82;
  color:#3e4d68;
}
.ativos-company__impact-box{
  margin:18px 0 18px;
  padding:16px 18px;
  border-left:4px solid var(--orange);
  background:linear-gradient(90deg, rgba(8,34,76,.06), rgba(8,34,76,0));
}
.ativos-company__impact-box strong{
  display:block;
  font-size:16px;
  line-height:1.55;
  color:var(--navy);
}
.ativos-company__divider{
  width:100%;
  max-width:520px;
  height:1px;
  background:rgba(3,27,68,.14);
  margin:14px 0 12px;
}
.ativos-company__closing{
  font-size:12px;
  line-height:1.5;
  font-weight:800;
  color:var(--navy);
  max-width:520px;
}
.ativos-highlights{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.ativos-highlight-card{
  min-height:176px;
  background:transparent;
  border:1px solid rgba(3,27,68,.12);
  padding:24px 18px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.ativos-highlight-card__icon{
  position:relative;
  width:58px;
  height:58px;
  margin-bottom:18px;
  color:var(--orange);
}
.ativos-highlight-card h4{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.2;
  font-weight:800;
  color:#000;
}
.ativos-highlight-card p{
  margin:0;
  font-size:14px;
  line-height:1.58;
  color:#40506c;
}
.ativos-highlight-card__icon--shield span,
.ativos-highlight-card__icon--shield i,
.ativos-highlight-card__icon--method span,
.ativos-highlight-card__icon--method i,
.ativos-highlight-card__icon--reforma span,
.ativos-highlight-card__icon--reforma i,
.ativos-highlight-card__icon--value span,
.ativos-highlight-card__icon--value i{
  position:absolute;
  display:block;
}
.ativos-highlight-card__icon--shield span{
  left:14px;
  top:8px;
  width:30px;
  height:38px;
  border:3px solid currentColor;
  clip-path:polygon(50% 0%, 100% 14%, 100% 62%, 50% 100%, 0% 62%, 0% 14%);
}
.ativos-highlight-card__icon--shield i{
  left:25px;
  top:17px;
  width:8px;
  height:18px;
  border-left:3px solid currentColor;
  border-bottom:3px solid currentColor;
  transform:rotate(-45deg);
}
.ativos-highlight-card__icon--method span:nth-child(1),
.ativos-highlight-card__icon--method span:nth-child(2),
.ativos-highlight-card__icon--method span:nth-child(3){
  bottom:7px;
  width:8px;
  border:3px solid currentColor;
  border-radius:2px;
}
.ativos-highlight-card__icon--method span:nth-child(1){left:8px;height:16px;}
.ativos-highlight-card__icon--method span:nth-child(2){left:24px;height:28px;}
.ativos-highlight-card__icon--method span:nth-child(3){left:40px;height:40px;}
.ativos-highlight-card__icon--method i{
  left:10px;
  top:12px;
  width:34px;
  height:20px;
  border-top:3px solid currentColor;
  transform:rotate(-25deg);
}
.ativos-highlight-card__icon--reforma span:nth-child(1){
  left:10px;
  top:10px;
  width:16px;
  height:28px;
  border:3px solid currentColor;
  border-right:none;
}
.ativos-highlight-card__icon--reforma span:nth-child(2){
  right:10px;
  top:10px;
  width:16px;
  height:28px;
  border:3px solid currentColor;
  border-left:none;
}
.ativos-highlight-card__icon--reforma i{
  left:24px;
  top:18px;
  width:10px;
  height:20px;
  border-left:3px solid currentColor;
  border-right:3px solid currentColor;
}
.ativos-highlight-card__icon--reforma i::before{
  content:"";
  position:absolute;
  left:50%;
  top:-7px;
  transform:translateX(-50%);
  width:18px;
  height:3px;
  background:currentColor;
}
.ativos-highlight-card__icon--value span:nth-child(1),
.ativos-highlight-card__icon--value span:nth-child(2),
.ativos-highlight-card__icon--value span:nth-child(3){
  bottom:7px;
  width:9px;
  border:3px solid currentColor;
  border-radius:2px;
}
.ativos-highlight-card__icon--value span:nth-child(1){left:8px;height:14px;}
.ativos-highlight-card__icon--value span:nth-child(2){left:24px;height:24px;}
.ativos-highlight-card__icon--value span:nth-child(3){left:40px;height:34px;}
.ativos-highlight-card__icon--value i{
  right:2px;
  top:8px;
  width:24px;
  height:24px;
  border-top:3px solid currentColor;
  border-right:3px solid currentColor;
  transform:rotate(45deg);
}

/* PARCERIAS */
.connections-section{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.connections-section--ticker{
  gap:34px;
}
.logo-ticker{
  position:relative;
  overflow:hidden;
  width:100%;
  padding:14px 0 8px;
  mask-image:linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logo-ticker__belt{
  display:flex;
  align-items:center;
  gap:72px;
  width:max-content;
  animation:logoTickerBelt 38s linear infinite;
  will-change:transform;
}
.logo-ticker:hover .logo-ticker__belt{
  animation-play-state:paused;
}
.logo-ticker__track{
  display:flex;
  align-items:center;
  gap:72px;
  flex:0 0 auto;
}
.logo-ticker__item{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ticker-logo{
  display:block;
  width:auto;
  height:auto;
  max-width:none;
  object-fit:contain;
  filter:none;
}
.ticker-logo--imp{max-height:64px;}
.ticker-logo--crc{max-height:58px;}
.ticker-logo--briscomm{max-height:58px;}
.ticker-logo--cnp{max-height:58px;}
.ticker-logo--trix{max-height:58px;}
.ticker-logo--rosh{max-height:65px;}
.ticker-logo--ministerio{max-height:105px;}
.ticker-logo--scan{max-height:75px;}
.ticker-logo--oracle{max-height:58px;}
.ticker-logo--vocare{max-height:70px;}
.ticker-logo--i61{max-height:100px;}
.ticker-logo--microsoft{max-height:70px;}
.ticker-logo--nvidia{max-height:100px;}
@keyframes logoTickerBelt{
  from{transform:translateX(0);}
  to{transform:translateX(calc(-50% - 36px));}
}
.connections-highlights{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top:34px;
}
.connection-highlight-card{
  background:#ffffff;
  border:1px solid rgba(3, 27, 68, .08);
  border-radius:0;
  padding:24px 22px 22px;
  box-shadow:none;
}
.connection-highlight-card h3{
  margin:0 0 12px;
  font-size:21px;
  line-height:1.2;
  font-weight:800;
  color:var(--navy);
}
.connection-highlight-card p{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:#40506c;
}

/* CONTATO */
.contact-section .panel-shell{
  padding-top:64px;
}

.contact-company{
  display:flex;
  flex-direction:column;
  gap:38px;
}

.contact-company__top{
  display:grid;
  grid-template-columns:1fr 1.02fr;
  gap:42px;
  align-items:start;
}

.contact-company__content{
  padding:8px 4px 0;
}

.contact-company__eyebrow{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.15;
  font-weight:700;
  color:#3f67c8;
  max-width:520px;
}

.contact-company__title{
  margin:0 0 18px;
  font-size:64px;
  line-height:.95;
  font-weight:800;
  color:var(--navy);
  letter-spacing:-1px;
}

.contact-company__title span{
  display:block;
  color:var(--orange);
}

.contact-company__lead{
  margin-top:0;
  font-size:18px;
  line-height:1.6;
  font-weight:800;
  color:#374766;
}

.contact-company__content p{
  margin:0 0 16px;
  font-size:14px;
  line-height:1.8;
  color:#3e4d68;
}

.contact-company__divider{
  width:100%;
  max-width:520px;
  height:1px;
  background:rgba(3,27,68,.14);
  margin:18px 0 20px;
}

.contact-company__visual-column{
  position:relative;
  min-height:320px;
}

.contact-company__backdrop{
  position:absolute;
  top:0;
  bottom:0;
  right:-44px;
  width:74%;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    url('fundo_contato.png') center/cover no-repeat;
  z-index:1;
}

.contact-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:2px;
}

.contact-line{
  display:flex;
  align-items:center;
  gap:12px;
  width:fit-content;
  max-width:100%;
  color:var(--navy);
}

.contact-line__icon{
  width:28px;
  height:28px;
  min-width:28px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.contact-line__icon img{
  width:20px;
  height:20px;
  object-fit:contain;
  display:block;
}

.contact-line__text{
  font-size:20px;
  line-height:1.35;
  font-weight:700;
  color:var(--navy);
  word-break:break-word;
}

.contact-company__closing{
  font-size:14px;
  line-height:1.6;
  font-weight:800;
  color:var(--navy);
  max-width:520px;
}

.contact-company__visual-column{
  position:relative;
  min-height:320px;
}

.contact-company__backdrop{
  position:absolute;
  top:0;
  bottom:0;
  right:-64px;
  width:74%;
  background:linear-gradient(rgba(3,27,68,.78), rgba(3,27,68,.78)), url('desktop.png') center/cover no-repeat;
  z-index:1;
}

.contact-company__image{
  position:relative;
  z-index:2;
  width:calc(100% - 30px);
  min-height:300px;
  margin:10px 0 0 auto;
  box-shadow:0 18px 34px rgba(3,27,68,.12);
  background: url('contato.png') center/cover no-repeat;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.contact-card{
  min-height:220px;
  background:#fff;
  border:1px solid rgba(3,27,68,.10);
  padding:24px 20px 20px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
}

.contact-card__icon{
  width:52px;
  height:52px;
  margin-bottom:18px;
  position:relative;
  color:var(--orange);
}

.contact-card h4{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.2;
  font-weight:800;
  color:#000;
}

.contact-card p{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.65;
  color:#40506c;
}

.contact-card a{
  margin-top:auto;
  font-size:15px;
  line-height:1.5;
  font-weight:800;
  color:var(--navy);
  word-break:break-word;
}

/* Ícones contato */
.contact-card__icon--whatsapp::before,
.contact-card__icon--email::before,
.contact-card__icon--linkedin::before,
.contact-card__icon--instagram::before,
.contact-card__icon--site::before,
.contact-card__icon--location::before,
.contact-card__icon--whatsapp::after,
.contact-card__icon--email::after,
.contact-card__icon--linkedin::after,
.contact-card__icon--instagram::after,
.contact-card__icon--site::after,
.contact-card__icon--location::after{
  content:"";
  position:absolute;
}

.contact-card__icon--whatsapp::before{
  inset:6px;
  border:3px solid currentColor;
  border-radius:50%;
}
.contact-card__icon--whatsapp::after{
  width:12px;
  height:12px;
  border-left:3px solid currentColor;
  border-bottom:3px solid currentColor;
  left:10px;
  bottom:2px;
  transform:skew(-18deg);
}

.contact-card__icon--email::before{
  inset:10px 6px;
  border:3px solid currentColor;
}
.contact-card__icon--email::after{
  left:10px;
  right:10px;
  top:16px;
  height:14px;
  border-left:3px solid currentColor;
  border-bottom:3px solid currentColor;
  transform:skewY(-25deg) rotate(-45deg);
}

.contact-card__icon--linkedin::before{
  inset:8px;
  border:3px solid currentColor;
}
.contact-card__icon--linkedin::after{
  left:18px;
  top:18px;
  width:16px;
  height:16px;
  border-left:3px solid currentColor;
  border-bottom:3px solid currentColor;
  box-shadow:
    10px 0 0 -7px currentColor,
    10px 10px 0 -7px currentColor;
}

.contact-card__icon--instagram::before{
  inset:8px;
  border:3px solid currentColor;
  border-radius:14px;
}
.contact-card__icon--instagram::after{
  width:12px;
  height:12px;
  border:3px solid currentColor;
  border-radius:50%;
  left:17px;
  top:17px;
}

.contact-card__icon--site::before{
  inset:8px;
  border:3px solid currentColor;
  border-radius:50%;
}
.contact-card__icon--site::after{
  left:24px;
  top:8px;
  width:3px;
  height:36px;
  background:currentColor;
  box-shadow: -10px 0 0 -1px currentColor, 10px 0 0 -1px currentColor;
}

.contact-card__icon--location::before{
  left:16px;
  top:6px;
  width:20px;
  height:28px;
  border:3px solid currentColor;
  border-radius:14px 14px 14px 14px / 18px 18px 10px 10px;
  transform:rotate(45deg);
}
.contact-card__icon--location::after{
  left:22px;
  top:14px;
  width:8px;
  height:8px;
  border:3px solid currentColor;
  border-radius:50%;
}

/* WHATSAPP */
.floating-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  width:35px;
  height:35px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(37,211,102,.88), rgba(21,170,82,.88));
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  z-index:90;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  opacity:.82;
}
.floating-whatsapp:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 14px 28px rgba(0,0,0,.26);
  opacity:.96;
}
.floating-whatsapp svg{
  width:28px;
  height:28px;
  fill:#fff;
}

@media (min-width: 1500px){
  .hero__content{
    padding-top:96px;
    padding-bottom:90px;
  }

  .brand-row{
    margin-left:-100px;
    margin-bottom:30px;
  }

  .brand-logo{
    width:min(100%, 360px);
  }

  .hero-title{
    font-size:30px;
    line-height:1.16;
    max-width:1100px;
    margin-bottom:20px;
  }

  .hero-pillars{
    grid-template-columns:repeat(3, 220px);
    gap:18px;
    max-width:696px;
    margin-bottom:22px;
  }

  .pillar-card{
    min-height:162px;
  }

  .pillar-card p{
    font-size:15px;
  }
}


/* RESPONSIVO */
@media (max-width: 980px){
  .topbar__inner{
    grid-template-columns:1fr;
    gap:14px;
    padding:14px 0 16px;
  }
  .main-nav{
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:16px 22px;
  }

  .hero-fixed-layer{
    position:absolute;
    top:78px;
    height:calc(100vh - 78px);
  }
  .hero{
    min-height:100%;
    height:100%;
  }
  .hero-title{
    font-size:38px;
  }

  .panel-base,
  .panel-wide,
  .panel-expanded{
    margin-top:24px;
  }

  .panel-base .panel-shell{min-height:640px;}
  .panel-wide .panel-shell{min-height:560px;}
  .panel-expanded .panel-shell{min-height:620px;}

  .panel-base .panel-shell,
  .panel-wide .panel-shell,
  .panel-expanded .panel-shell{
    max-width:1120px;
    padding:44px 28px 46px;
  }

  .features .panel-shell{
    min-height:470px;
  }

  .hero-pillars,
  .info-grid__wrap,
  .about__wrap,
  .offers-grid,
  .features__grid{
    grid-template-columns:1fr 1fr;
  }

  .oracle-company__top{
    grid-template-columns:1fr;
  }
  .oracle-highlights{
    grid-template-columns:1fr 1fr;
  }

  .pulsar-company__top{
    grid-template-columns:1fr;
  }
  .pulsar-highlights{
    grid-template-columns:1fr 1fr;
  }
  .pulsar-company__backdrop{
    right:-18px;
    width:72%;
  }
  .pulsar-company__images{
    width:100%;
    margin:22px 0 0;
  }

  .ativos-company__top{
    grid-template-columns:1fr;
  }
  .ativos-highlights{
    grid-template-columns:1fr 1fr;
  }

  .contact-company__top{
    grid-template-columns:1fr;
  }
  .contact-grid{
    grid-template-columns:1fr 1fr;
  }

  .about__stack{
    grid-template-columns:1fr;
  }

  .logo-ticker__belt,
  .logo-ticker__track{
    gap:52px;
  }

  .ticker-logo--ministerio{max-height:88px;}
  .ticker-logo--scan{max-height:62px;}
  .ticker-logo--i61{max-height:82px;}
  .ticker-logo--nvidia{max-height:82px;}

  .connections-highlights{
    grid-template-columns:1fr 1fr;
    gap:18px;
  }
}

@media (max-width: 767px){
  .container{width:min(100% - 28px, 680px)}

  .section-bg-primary{
    background-image:
      linear-gradient(180deg, rgba(2,12,36,.88) 0%, rgba(3,16,48,.76) 40%, rgba(6,20,58,.58) 100%),
      radial-gradient(circle at 22% 16%, rgba(0,195,255,.14) 0%, rgba(0,195,255,0) 30%),
      radial-gradient(circle at 84% 12%, rgba(147,83,255,.18) 0%, rgba(147,83,255,0) 28%),
      url('estudante_home.png');
    background-size:cover;
    background-position:72% center;
  }
  .section-bg-dark{
    background-image:linear-gradient(rgba(2,17,44,.94), rgba(2,17,44,.94)), url('estudante_home.png');
    background-position:72% center;
  }
  .section-bg-faded{
    background-image:linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)), url('estudante_home.png');
    background-position:72% center;
  }

  .topbar__inner{
    min-height:auto;
  }
  .back-link{
    font-size:18px;
  }
  .main-nav{
    gap:10px 16px;
  }
  .main-nav a{
    font-size:14px;
  }

  #atuacao,
  #quem-somos,
  #pulsar,
  #ativos-tributarios,
  #especialidades,
  #parcerias,
  #contato{
    scroll-margin-top:96px;
  }

  .hero-fixed-layer{
    top:78px;
    height:calc(100svh - 78px);
  }
  .hero-spacer{
    height:calc(100svh - 78px + 90px);
  }
  .hero{
    min-height:100%;
    height:100%;
    align-items:flex-start;
  }
  .hero__content{
    padding:24px 0 72px;
  }
  .brand-row{
    margin:0 0 24px -18px;
  }
  .brand-logo{
    width:min(100%, 248px);
  }

  .hero-title{
    font-size:22px;
    line-height:1.2;
    margin-bottom:16px;
  }
  .hero-pillars{
    grid-template-columns:1fr;
    gap:12px;
    max-width:none;
    margin:0 0 18px;
  }
  .pillar-card{
    min-height:130px;
    padding:16px 16px 14px;
    border-radius:18px;
  }
  .pillar-card img{
    max-width:120px;
    margin-bottom:8px;
  }

  .panel-base,
  .panel-wide,
  .panel-expanded{
    margin-top:24px;
  }

  .panel-base .panel-shell,
  .panel-wide .panel-shell,
  .panel-expanded .panel-shell{
    border-radius:22px 22px 0 0;
    padding:34px 20px 42px;
    min-height:auto;
  }

  .features .panel-shell{
    min-height:auto;
  }

  .info-grid__wrap,
  .about__wrap,
  .offers-grid,
  .features__grid{
    grid-template-columns:1fr;
  }

  .section-header{
    margin-bottom:28px;
  }
  .section-title{
    font-size:20px;
    margin-bottom:12px;
  }
  .section-intro{
    font-size:15px;
    line-height:1.65;
    text-align:left;
  }
  .section-header--left .section-title{
    text-align:left;
  }

  .oracle-company__visual-column{
    min-height:auto;
  }
  .oracle-company__backdrop{
    left:-70px;
    top:-30px;
    bottom:auto;
    width:180px;
    height:340px;
  }
  .oracle-company__images{
    width:100%;
    margin:28px 0 0;
  }
  .oracle-company__image--single{
    min-height:270px;
  }
  .oracle-company__title{
    font-size:40px;
  }
  .oracle-company__lead{
    font-size:16px;
    line-height:1.55;
  }
  .oracle-company__content p,
  .oracle-company__closing{
    font-size:14px;
    line-height:1.7;
  }
  .oracle-highlights{
    grid-template-columns:1fr;
    gap:14px;
  }
  .oracle-highlight-card{
    border-radius:18px;
    padding:20px 18px;
    min-height:auto;
  }
  .oracle-highlight-card h4{
    font-size:18px;
  }
  .oracle-highlight-card p{
    font-size:14px;
    line-height:1.6;
  }

  .pulsar-company__visual-column{
    min-height:auto;
  }
  .pulsar-company__title{
    font-size:40px;
  }
  .pulsar-company__lead{
    font-size:16px;
    line-height:1.55;
  }
  .pulsar-company__content p,
  .pulsar-company__closing{
    font-size:14px;
    line-height:1.7;
  }
  .pulsar-company__impact-box{
    padding:14px 16px;
    border-radius:0 12px 12px 0;
  }
  .pulsar-company__impact-box strong{
    font-size:15px;
    line-height:1.5;
  }
  .pulsar-company__steps{
    grid-template-columns:1fr;
    gap:10px;
  }
  .pulsar-company__steps span{
    min-height:auto;
    font-size:14px;
  }
  .pulsar-company__cta{
    width:100%;
    min-height:52px;
    font-size:15px;
  }
  .pulsar-company__backdrop{
    right:-8px;
    top:-18px;
    bottom:auto;
    width:82%;
    height:260px;
    border-radius:60px 18px 60px 18px;
  }
  .pulsar-company__images{
    width:100%;
    margin:24px 0 0;
    border-radius:20px;
  }
  .pulsar-company__image--single{
    min-height:270px;
  }
  .pulsar-highlights{
    grid-template-columns:1fr;
    gap:14px;
  }
  .pulsar-highlight-card{
    min-height:auto;
    padding:20px 18px;
    border-radius:18px;
  }
  .pulsar-highlight-card h4{
    font-size:18px;
  }
  .pulsar-highlight-card p{
    font-size:14px;
    line-height:1.6;
  }

  .ativos-company__visual-column{
    min-height:auto;
  }
  .ativos-company__backdrop{
    left:-20px;
    top:-30px;
    bottom:auto;
    width:180px;
    height:340px;
  }
  .ativos-company__images{
    width:100%;
    margin:28px 0 0;
  }
  .ativos-company__image--single{
    min-height:270px;
  }
  .ativos-company__title{
    font-size:40px;
  }
  .ativos-company__lead{
    font-size:16px;
    line-height:1.55;
  }
  .ativos-company__content p,
  .ativos-company__closing{
    font-size:14px;
    line-height:1.7;
  }
  .ativos-company__impact-box{
    padding:14px 16px;
  }
  .ativos-company__impact-box strong{
    font-size:15px;
    line-height:1.5;
  }
  .ativos-highlights{
    grid-template-columns:1fr;
    gap:14px;
  }
  .ativos-highlight-card{
    min-height:auto;
    padding:20px 18px;
    border-radius:18px;
  }
  .ativos-highlight-card h4{
    font-size:18px;
  }
  .ativos-highlight-card p{
    font-size:14px;
    line-height:1.6;
  }

  .contact-company__visual-column{
    min-height:auto;
  }
  .contact-company__backdrop{
    right:-20px;
    top:-30px;
    bottom:auto;
    width:180px;
    height:340px;
  }
  .contact-company__image{
    width:100%;
    min-height:270px;
    margin:28px 0 0;
  }
  .contact-company__eyebrow{
    font-size:22px;
    line-height:1.2;
  }
  .contact-company__title{
    font-size:54px;
  }
  .contact-company__lead{
    font-size:16px;
    line-height:1.55;
  }
  .contact-company__content p,
  .contact-company__closing{
    font-size:14px;
    line-height:1.7;
  }
  .contact-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .contact-card{
    min-height:auto;
    padding:20px 18px;
    border-radius:18px;
  }
  .contact-card h4{
    font-size:18px;
  }
  .contact-card p,
  .contact-card a{
    font-size:14px;
    line-height:1.6;
  }

  .logo-ticker{
    padding:8px 0 2px;
    mask-image:none;
    -webkit-mask-image:none;
  }
  .logo-ticker__belt{
    gap:34px;
    animation-duration:26s;
  }
  .logo-ticker__track{
    gap:34px;
  }

  .ticker-logo--imp{max-height:44px;}
  .ticker-logo--crc{max-height:54px;}
  .ticker-logo--briscomm{max-height:40px;}
  .ticker-logo--cnp{max-height:40px;}
  .ticker-logo--trix{max-height:40px;}
  .ticker-logo--rosh{max-height:44px;}
  .ticker-logo--ministerio{max-height:66px;}
  .ticker-logo--scan{max-height:46px;}
  .ticker-logo--oracle{max-height:24px;}
  .ticker-logo--vocare{max-height:48px;}
  .ticker-logo--i61{max-height:64px;}
  .ticker-logo--microsoft{max-height:46px;}
  .ticker-logo--nvidia{max-height:64px;}

  .connections-highlights{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:26px;
  }
  .connection-highlight-card{
    border-radius:18px;
    padding:20px 18px;
  }
  .connection-highlight-card h3{
    font-size:19px;
    margin-bottom:10px;
  }
  .connection-highlight-card p{
    font-size:14px;
    line-height:1.6;
  }

  .about-card{
    border-radius:18px;
    padding:20px 18px;
  }
  .about-card h3{
    font-size:18px;
  }
  .about-card p,
  .feature-card p{
    font-size:14px;
    line-height:1.6;
  }

  .floating-whatsapp{
    right:14px;
    bottom:14px;
    width:50px;
    height:50px;
  }
  .floating-whatsapp svg{
    width:26px;
    height:26px;
  }
}

/* LANGUAGE SWITCHER */
.lang-switcher{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.lang-switcher__toggle{
  min-width:74px;
  height:42px;
  padding:0 14px;
  border:none;
  background:rgba(3,27,68,.96);
  color:#fff;
  font-size:16px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  cursor:pointer;
}

.lang-switcher__arrow{
  font-size:14px;
  line-height:1;
  transition:transform .2s ease;
}

.lang-switcher.is-open .lang-switcher__arrow{
  transform:rotate(180deg);
}

.lang-switcher__menu{
  position:absolute;
  top:calc(100% + 6px);
  right:0;
  min-width:74px;
  background:#fff;
  box-shadow:0 14px 28px rgba(0,0,0,.16);
  display:none;
  flex-direction:column;
  overflow:hidden;
  z-index:120;
}

.lang-switcher__menu.is-open{
  display:flex;
}

.lang-switcher__option{
  height:44px;
  border:none;
  background:#fff;
  color:var(--navy);
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.lang-switcher__option:hover{
  background:#f3f4f7;
}

@media (max-width: 767px){
  .lang-switcher{
    width:100%%;
    justify-content:flex-start;
  }

  .lang-switcher__toggle{
    min-width:70px;
    height:40px;
    font-size:14px;
  }

  .lang-switcher__menu{
    min-width:70px;
  }

  .lang-switcher__option{
    height:40px;
    font-size:14px;
  }
}


/* AJUSTES ESPECÍFICOS DE MOBILE */
@media (max-width: 767px){
  .topbar{
    overflow:visible;
  }

  .topbar__inner{
    grid-template-columns:1fr auto auto;
    gap:12px;
    padding:12px 0 14px;
    position:relative;
  }

  .back-link{
    grid-column:1;
    grid-row:1;
    align-self:center;
  }

  .menu-toggle{
    display:inline-flex;
    grid-column:2;
    grid-row:1;
    justify-self:end;
  }

  .lang-switcher{
    grid-column:3;
    grid-row:1;
    justify-self:end;
    width:auto;
  }

  .main-nav{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(3,27,68,.08);
    border-radius:18px;
    box-shadow:0 18px 34px rgba(3,27,68,.12);
    padding:14px 16px;
    z-index:120;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .topbar__inner.nav-open .main-nav{
    display:flex;
  }

  .main-nav a{
    width:100%;
    font-size:16px;
    line-height:1.35;
  }

  .hero-fixed-layer{
    position:relative;
    top:0;
    height:auto;
    min-height:calc(100svh - 78px);
    overflow:visible;
  }

  .hero-spacer{
    display:none;
  }

  .hero{
    min-height:calc(100svh - 78px);
    height:auto;
  }

  .hero__content{
    padding:28px 0 34px;
  }

  .hero-copy{
    max-width:none;
  }

  .hero-title{
    max-width:560px;
    font-size:22px;
    line-height:1.16;
  }

  .hero-pillars{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    max-width:none;
    margin:0 0 16px;
  }

  .pillar-card{
    min-height:118px;
  }

  .oracle-company__top,
  .about-company__top,
  .pulsar-company__top,
  .ativos-company__top,
  .contact-company__top{
    grid-template-columns:1fr;
    gap:24px;
  }

  .about-company__visual-column{
    min-height:auto;
    order:1;
  }

  .about-company__content{
    order:2;
    padding:0;
  }

  .about-company__backdrop{
    left:-16px;
    top:-18px;
    bottom:auto;
    width:78%;
    height:220px;
  }

  .about-company__images{
    width:100%;
    margin:22px 0 0;
  }

  .about-company__image--single{
    min-height:240px;
    background-position:center center;
  }

  .about-company__title{
    font-size:28px;
    line-height:1.05;
    margin-bottom:14px;
  }

  .about-company__lead{
    font-size:16px;
    line-height:1.55;
  }

  .about-company__content p,
  .about-company__closing{
    font-size:14px;
    line-height:1.7;
  }

  .about-highlights{
    grid-template-columns:1fr;
    gap:14px;
  }

  .about-highlight-card{
    min-height:auto;
    padding:20px 18px;
    border-radius:18px;
  }

  .about-highlight-card h4{
    font-size:18px;
  }

  .about-highlight-card p{
    font-size:14px;
    line-height:1.6;
  }
}

/* =========================================================
   DIAMOND LEARNING — HOME / ETAPA 2
   Logo recortada + composição integrada ao fundo
   ========================================================= */

.hero-fixed-layer{
  background:#020612;
}

.hero.section-bg-primary{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(2,10,30,.92) 0%, rgba(3,14,42,.86) 30%, rgba(5,18,52,.60) 56%, rgba(4,12,34,.28) 100%),
    radial-gradient(circle at 17% 26%, rgba(0,205,255,.16) 0%, rgba(0,205,255,.06) 22%, transparent 46%),
    radial-gradient(circle at 82% 38%, rgba(123,86,255,.18) 0%, rgba(123,86,255,.07) 24%, transparent 48%),
    radial-gradient(circle at 51% 74%, rgba(28,82,190,.13) 0%, transparent 42%),
    url('estudante_home.png'),
    linear-gradient(135deg,#020713 0%,#04132a 42%,#0c0a2a 74%,#030510 100%) !important;
  background-size:cover, auto, auto, auto, cover, auto;
  background-position:center, center, center, center, center bottom, center;
  background-repeat:no-repeat;
}

.hero.section-bg-primary::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(0,205,255,.025) 23%, transparent 24% 100%),
    linear-gradient(68deg, transparent 0 74%, rgba(132,89,255,.03) 75%, transparent 76% 100%);
}

.hero.section-bg-primary::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 88%);
  -webkit-mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 88%);
}

.hero__overlay{
  background:linear-gradient(to bottom,rgba(0,0,0,.04),rgba(0,0,0,.10) 62%,rgba(0,0,0,.44)) !important;
}

.hero__content{
  padding-top:34px;
}

.brand-row{
  justify-content:flex-start;
  margin:0 0 28px 0;
  width:max-content;
}

.brand-logo--learning{
  width:230px !important;
  height:auto;
  object-fit:contain;
  filter:
    drop-shadow(0 0 10px rgba(0,205,255,.16))
    drop-shadow(0 0 24px rgba(103,74,255,.10));
}

@media (min-width:1500px){
  .hero__content{padding-top:48px;}
  .brand-row{margin-left:0;margin-bottom:34px;}
  .brand-logo--learning{width:260px !important;}
}

@media (max-width:767px){
  .hero__content{padding-top:22px;}
  .brand-row{margin:0 0 22px 0;}
  .brand-logo--learning{width:190px !important;}
  .hero.section-bg-primary::after{background-size:42px 42px;opacity:.16;}
}


/* =========================================================
   DIAMOND LEARNING — HOME / ETAPA 5
   Enquadramento da estudante preservando notebook + caderno
   ========================================================= */
@media (min-width:768px){
  .hero-fixed-layer{
    height:calc(100vh - 70px);
  }

  .hero.section-bg-primary{
    background-size:cover, auto, auto, auto, 84% auto, auto;
    background-position:center, center, center, center, 80% 42%, center;
  }

  .hero__content{
    padding-top:38px;
    padding-bottom:42px;
  }

  .brand-logo--learning{
    width:220px !important;
  }

  .hero-title{
    max-width:660px;
  }

  .hero-pillars{
    max-width:598px;
  }
}

@media (min-width:1200px) and (max-height:760px){
  .hero.section-bg-primary{
    background-size:cover, auto, auto, auto, 80% auto, auto;
    background-position:center, center, center, center, 82% 39%, center;
  }

  .hero__content{
    padding-top:28px;
    padding-bottom:28px;
  }

  .brand-row{
    margin-bottom:18px;
  }

  .brand-logo--learning{
    width:205px !important;
  }

  .pillar-card{
    min-height:132px;
  }
}

@media (min-width:1400px){
  .hero.section-bg-primary{
    background-size:cover, auto, auto, auto, 78% auto, auto;
    background-position:center, center, center, center, 84% 40%, center;
  }
}

@media (max-width:767px){
  .hero.section-bg-primary{
    background-size:cover, auto, auto, auto, auto 100%, auto !important;
    background-position:center, center, center, center, 72% 50%, center !important;
  }
}


/* =========================================================
   DIAMOND LEARNING — HOME / ETAPA 8
   Foto como elemento real da Hero para preservar notebook e caderno
   ========================================================= */
.hero.section-bg-primary{
  background:
    radial-gradient(circle at 17% 26%, rgba(0,205,255,.16) 0%, rgba(0,205,255,.06) 22%, transparent 46%),
    radial-gradient(circle at 82% 38%, rgba(123,86,255,.18) 0%, rgba(123,86,255,.07) 24%, transparent 48%),
    linear-gradient(135deg,#020713 0%,#04132a 42%,#0c0a2a 74%,#030510 100%) !important;
}

.hero-study-image{
  position:absolute;
  z-index:0;
  width:min(76vw, 1080px);
  max-width:none;
  height:auto;
  right:-2vw;
  bottom:0;
  display:block;
  pointer-events:none;
  user-select:none;
}

.hero.section-bg-primary::before,
.hero.section-bg-primary::after{
  z-index:1;
}

.hero__overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(2,10,30,.96) 0%,
      rgba(3,14,42,.90) 26%,
      rgba(5,18,52,.68) 48%,
      rgba(4,12,34,.30) 72%,
      rgba(4,12,34,.10) 100%) !important;
}

.hero__content{
  z-index:3;
}

@media (min-width:1200px) and (max-height:760px){
  .hero-study-image{
    width:min(74vw, 1040px);
    right:-1vw;
    bottom:-1px;
  }
}

@media (min-width:1500px){
  .hero-study-image{
    width:min(72vw, 1180px);
    right:0;
  }
}

@media (max-width:980px){
  .hero-study-image{
    width:1120px;
    right:-430px;
    bottom:0;
  }

  .hero__overlay{
    background:linear-gradient(90deg,rgba(2,10,30,.94) 0%,rgba(3,14,42,.82) 45%,rgba(4,12,34,.32) 100%) !important;
  }
}

@media (max-width:767px){
  .hero-study-image{
    width:auto;
    max-width:none;
    height:100%;
    right:-55%;
    bottom:0;
  }

  .hero__overlay{
    background:linear-gradient(180deg,rgba(2,10,30,.78) 0%,rgba(3,14,42,.66) 48%,rgba(4,12,34,.84) 100%) !important;
  }
}


/* =========================================================
   DIAMOND LEARNING — HOME / ETAPA 9
   Fusão orgânica entre a foto da estudante e o fundo da Hero
   ========================================================= */
.hero-study-image{
  -webkit-mask-image:linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,.10) 6%,
    rgba(0,0,0,.35) 14%,
    rgba(0,0,0,.68) 24%,
    #000 38%,
    #000 100%
  );
  mask-image:linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,.10) 6%,
    rgba(0,0,0,.35) 14%,
    rgba(0,0,0,.68) 24%,
    #000 38%,
    #000 100%
  );
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-size:100% 100%;
  mask-size:100% 100%;
}

/* reforça a continuidade cromática exatamente na zona de encontro */
.hero.section-bg-primary::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 43% 54%, rgba(4,18,53,.48) 0%, rgba(4,18,53,.20) 24%, transparent 54%),
    linear-gradient(90deg,
      rgba(3,14,42,.18) 0%,
      rgba(3,14,42,.14) 28%,
      rgba(3,14,42,.08) 42%,
      transparent 62%);
}

@media (max-width:980px){
  .hero-study-image{
    -webkit-mask-image:linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 12%, rgba(0,0,0,.72) 26%, #000 42%, #000 100%);
    mask-image:linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 12%, rgba(0,0,0,.72) 26%, #000 42%, #000 100%);
  }
}

@media (max-width:767px){
  .hero-study-image{
    -webkit-mask-image:linear-gradient(180deg, #000 0%, #000 72%, rgba(0,0,0,.92) 86%, rgba(0,0,0,.55) 94%, transparent 100%);
    mask-image:linear-gradient(180deg, #000 0%, #000 72%, rgba(0,0,0,.92) 86%, rgba(0,0,0,.55) 94%, transparent 100%);
  }
}


/* =========================================================
   DIAMOND LEARNING — CTA DO MENTOR
   Botão horizontal inspirado na linguagem visual dos cards
   ========================================================= */
.hero-mentor-cta{
  width:min(100%, 520px);
  min-height:64px;
  margin-top:22px;
  padding:0 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:rgba(7, 24, 54, .52);
  border:1px solid rgba(255,255,255,.22);
  border-radius:20px;

  box-shadow:
    0 18px 34px rgba(4, 24, 58, .18),
    inset 0 1px 0 rgba(255,255,255,.10);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  color:#fff;
  font-size:16px;
  line-height:1.35;
  font-weight:800;
  letter-spacing:.1px;

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.hero-mentor-cta:hover{
  transform:translateY(-3px);
  background:rgba(10, 31, 68, .72);
  border-color:rgba(0,205,255,.40);
  box-shadow:
    0 24px 42px rgba(4, 24, 58, .26),
    0 0 22px rgba(0,205,255,.10),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.hero-mentor-cta:focus-visible{
  outline:3px solid rgba(0,205,255,.62);
  outline-offset:4px;
}

@media (max-width:767px){
  .hero-mentor-cta{
    width:100%;
    min-height:58px;
    margin-top:18px;
    padding:0 18px;
    border-radius:18px;
    font-size:15px;
  }
}

/* =========================================================
   DIAMOND LEARNING — MENU + SEÇÃO A PLATAFORMA
   ========================================================= */

/* Menu da nova jornada */
.main-nav{
  gap:26px;
}
.main-nav a{
  position:relative;
  white-space:nowrap;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-8px;
  height:2px;
  background:linear-gradient(90deg,#00cfff,#8b5cff);
  transition:right .24s ease;
}
.main-nav a:hover::after{
  right:0;
}

/* Paleta local da seção */
.platform-section{
  --platform-cyan:#04cfff;
  --platform-violet:#8b5cff;
  --platform-navy:#071a3c;
}
.platform-section .panel-shell{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(4,207,255,.07), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(139,92,255,.08), transparent 28%),
    #f3f5f8;
}
.platform-company{
  gap:40px;
}
.platform-company__top{
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
}
.platform-company__content{
  padding-top:0;
}
.platform-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 14px !important;
  color:#2572b8 !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:2.4px !important;
}
.platform-eyebrow::before{
  content:"";
  width:26px;
  height:2px;
  background:linear-gradient(90deg,var(--platform-cyan),var(--platform-violet));
}
.platform-company__title{
  font-size:44px;
  color:#061329;
}
.platform-company__title span{
  background:linear-gradient(90deg,#008fd6,#7557e8);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.platform-company__lead{
  color:#203a61;
}
.platform-company__divider{
  background:linear-gradient(90deg,rgba(4,207,255,.42),rgba(139,92,255,.28),transparent);
}
.platform-company__closing{
  color:#0b2955;
}

/* Visual do produto */
.platform-visual-column{
  position:relative;
  min-height:410px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.platform-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(18px);
  pointer-events:none;
}
.platform-glow--cyan{
  width:260px;
  height:260px;
  left:-18px;
  top:36px;
  background:rgba(0,203,255,.16);
}
.platform-glow--violet{
  width:230px;
  height:230px;
  right:-30px;
  bottom:18px;
  background:rgba(130,76,255,.15);
}
.platform-dashboard{
  position:relative;
  z-index:2;
  width:100%;
  max-width:580px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(145deg,#071a3d,#0b2450 62%,#111d4f);
  box-shadow:
    0 32px 64px rgba(3,18,48,.24),
    0 0 0 1px rgba(4,207,255,.08),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform:perspective(1200px) rotateY(2deg) rotateX(1deg);
}
.platform-dashboard__bar{
  min-height:50px;
  padding:0 16px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  color:#fff;
}
.platform-dashboard__bar strong{
  font-size:11px;
  letter-spacing:.5px;
  opacity:.9;
}
.platform-dashboard__dots{
  display:flex;
  gap:5px;
}
.platform-dashboard__dots span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(255,255,255,.24);
}
.platform-dashboard__avatar{
  justify-self:end;
  width:27px;
  height:27px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--platform-cyan),var(--platform-violet));
  color:#fff;
  font-size:9px;
  font-weight:900;
}
.platform-dashboard__body{
  display:grid;
  grid-template-columns:52px 1fr;
  min-height:318px;
}
.platform-dashboard__sidebar{
  padding:18px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:17px;
  border-right:1px solid rgba(255,255,255,.07);
  background:rgba(1,10,30,.24);
}
.platform-dashboard__sidebar span{
  width:18px;
  height:18px;
  border-radius:6px;
  border:1px solid rgba(255,255,255,.18);
}
.platform-dashboard__sidebar span.is-active{
  border-color:rgba(4,207,255,.65);
  background:linear-gradient(135deg,rgba(4,207,255,.5),rgba(139,92,255,.55));
  box-shadow:0 0 18px rgba(4,207,255,.18);
}
.platform-dashboard__content{
  padding:20px;
}
.platform-dashboard__headline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:17px;
}
.platform-dashboard__headline div{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.platform-dashboard__headline small,
.platform-metric-card small,
.platform-focus-card small{
  color:rgba(214,230,255,.58);
  font-size:9px;
}
.platform-dashboard__headline strong{
  color:#fff;
  font-size:15px;
}
.platform-dashboard__status{
  padding:6px 9px;
  border-radius:999px;
  background:rgba(4,207,255,.10);
  border:1px solid rgba(4,207,255,.22);
  color:#8defff;
  font-size:8px;
  font-weight:800;
}
.platform-metric-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.platform-metric-card,
.platform-chart-card,
.platform-focus-card{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.045);
  border-radius:14px;
}
.platform-metric-card{
  padding:12px;
}
.platform-metric-card strong{
  display:block;
  margin:5px 0 8px;
  color:#fff;
  font-size:16px;
}
.platform-progress{
  height:4px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}
.platform-progress i{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--platform-cyan),var(--platform-violet));
}
.platform-dashboard__lower{
  display:grid;
  grid-template-columns:1.4fr .85fr;
  gap:10px;
  margin-top:10px;
}
.platform-chart-card{
  padding:13px 14px 10px;
}
.platform-chart-card__title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#fff;
  font-size:10px;
}
.platform-chart-card__title small{
  color:rgba(214,230,255,.48);
  font-size:8px;
}
.platform-bars{
  height:76px;
  display:flex;
  align-items:flex-end;
  gap:7px;
  padding-top:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.platform-bars i{
  flex:1;
  min-width:8px;
  border-radius:4px 4px 0 0;
  background:linear-gradient(to top,rgba(4,207,255,.42),rgba(139,92,255,.95));
}
.platform-bars i:nth-child(1){height:27%}.platform-bars i:nth-child(2){height:43%}.platform-bars i:nth-child(3){height:36%}.platform-bars i:nth-child(4){height:58%}.platform-bars i:nth-child(5){height:70%}.platform-bars i:nth-child(6){height:64%}.platform-bars i:nth-child(7){height:88%}
.platform-focus-card{
  position:relative;
  padding:13px;
  overflow:hidden;
}
.platform-focus-card strong{
  display:block;
  margin:5px 0;
  color:#fff;
  font-size:11px;
}
.platform-focus-card > span{
  display:block;
  max-width:86px;
  color:rgba(214,230,255,.55);
  font-size:8px;
  line-height:1.4;
}
.platform-focus-ring{
  position:absolute;
  width:58px;
  height:58px;
  right:12px;
  bottom:10px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at center,#0c214b 56%,transparent 57%),
    conic-gradient(var(--platform-cyan) 0 68%,rgba(255,255,255,.08) 68% 100%);
}
.platform-focus-ring b{
  color:#fff;
  font-size:11px;
}

/* Cards de pilares */
.platform-highlights{
  gap:16px;
}
.platform-highlight-card{
  position:relative;
  overflow:hidden;
  min-height:195px;
  padding:24px 18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.46);
  border:1px solid rgba(7,29,70,.11);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.platform-highlight-card::before{
  content:"";
  position:absolute;
  top:0;
  left:18%;
  right:18%;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--platform-cyan),var(--platform-violet),transparent);
  opacity:.7;
}
.platform-highlight-card:hover{
  transform:translateY(-5px);
  border-color:rgba(4,207,255,.25);
  box-shadow:0 18px 34px rgba(7,32,78,.10);
}
.platform-highlight-card h4{
  color:#07162f;
}
.platform-highlight-card p{
  color:#42526c;
}
.platform-icon{
  position:relative;
  width:58px;
  height:58px;
  margin-bottom:18px;
  color:#1b8fd0;
}
.platform-icon span,.platform-icon i{position:absolute;display:block}
.platform-icon--journey span{
  left:8px;top:29px;width:42px;height:3px;background:currentColor;transform:rotate(-20deg);
}
.platform-icon--journey span::before,.platform-icon--journey span::after{
  content:"";position:absolute;width:9px;height:9px;border:3px solid currentColor;border-radius:50%;background:#f3f5f8;top:-6px;
}
.platform-icon--journey span::before{left:-2px}.platform-icon--journey span::after{right:-2px}
.platform-icon--journey i{right:4px;top:7px;width:18px;height:18px;border-top:3px solid #775be7;border-right:3px solid #775be7;transform:rotate(8deg)}
.platform-icon--person span{left:20px;top:5px;width:18px;height:18px;border:3px solid currentColor;border-radius:50%}
.platform-icon--person i{left:10px;bottom:6px;width:38px;height:24px;border:3px solid currentColor;border-bottom:none;border-radius:24px 24px 0 0}
.platform-icon--data span{bottom:7px;width:9px;border:3px solid currentColor;border-radius:2px 2px 0 0}
.platform-icon--data span:nth-child(1){left:8px;height:16px}.platform-icon--data span:nth-child(2){left:24px;height:28px}.platform-icon--data span:nth-child(3){left:40px;height:40px}
.platform-icon--data i{left:9px;top:10px;width:40px;height:20px;border-top:3px solid #775be7;transform:rotate(-18deg)}
.platform-icon--connection span{top:15px;width:20px;height:20px;border:3px solid currentColor;border-radius:50%}
.platform-icon--connection span:nth-child(1){left:5px}.platform-icon--connection span:nth-child(2){right:5px;color:#775be7}
.platform-icon--connection i{left:19px;top:27px;width:20px;height:3px;background:linear-gradient(90deg,currentColor,#775be7)}

@media (max-width:980px){
  .main-nav{gap:16px 20px}
  .platform-company__top{grid-template-columns:1fr}
  .platform-visual-column{order:2;min-height:auto}
  .platform-company__content{order:1}
  .platform-dashboard{max-width:700px;margin:0 auto}
}

@media (max-width:767px){
  .platform-company__title{font-size:38px}
  .platform-visual-column{min-height:auto}
  .platform-dashboard{transform:none;border-radius:18px}
  .platform-dashboard__body{grid-template-columns:40px 1fr}
  .platform-dashboard__content{padding:14px}
  .platform-metric-grid{grid-template-columns:1fr}
  .platform-dashboard__lower{grid-template-columns:1fr}
  .platform-focus-card{min-height:112px}
  .platform-highlight-card{min-height:auto}
}



/* =========================================================
   DIAMOND LEARNING — IMAGEM DA SEÇÃO A PLATAFORMA
   ========================================================= */
.platform-showcase{
  position:relative;
  z-index:2;
  width:100%;
  max-width:700px;
  margin:0 auto;
  padding:14px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(244,248,255,.84));
  box-shadow:
    0 34px 68px rgba(3,18,48,.16),
    0 0 0 1px rgba(14,102,255,.07),
    0 0 32px rgba(64,169,255,.14),
    inset 0 1px 0 rgba(255,255,255,.92);
}
.platform-showcase::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:42px;
  background:radial-gradient(circle at 18% 18%, rgba(72,196,255,.20), transparent 34%),
             radial-gradient(circle at 82% 20%, rgba(132,93,255,.18), transparent 30%),
             radial-gradient(circle at 50% 100%, rgba(63,161,255,.10), transparent 40%);
  z-index:-1;
  filter:blur(10px);
  opacity:.95;
}
.platform-showcase img{
  display:block;
  width:100%;
  height:auto;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(14,32,78,.08);
  box-shadow:
    0 16px 30px rgba(18,52,122,.10),
    0 0 0 1px rgba(255,255,255,.72) inset;
}

@media (max-width:980px){
  .platform-showcase{max-width:780px}
}

@media (max-width:767px){
  .platform-showcase{
    padding:10px;
    border-radius:22px;
  }
  .platform-showcase::before{inset:-6px;border-radius:28px}
  .platform-showcase img{border-radius:16px}
}


/* =========================================================
   DIAMOND LEARNING — HOME / AJUSTE LARGE SCREEN
   Elimina o corte superior visível entre a foto e o fundo
   ========================================================= */
@media (min-width:1200px){
  .hero.section-bg-primary{
    overflow:hidden;
  }

  .hero-study-image{
    height:100%;
    width:auto;
    max-width:none;
    right:0;
    top:0;
    bottom:auto;
  }

  .hero__overlay{
    background:
      linear-gradient(180deg,
        rgba(2,10,30,.78) 0%,
        rgba(2,10,30,.40) 22%,
        rgba(2,10,30,.06) 44%,
        rgba(2,10,30,0) 60%),
      linear-gradient(90deg,
        rgba(2,10,30,.96) 0%,
        rgba(3,14,42,.90) 26%,
        rgba(5,18,52,.68) 48%,
        rgba(4,12,34,.30) 72%,
        rgba(4,12,34,.10) 100%) !important;
  }
}

@media (min-width:1600px){
  .hero-study-image{
    right:-1%;
  }
}

@media (min-width:1200px) and (max-height:760px){
  .hero-study-image{
    height:100%;
    width:auto;
    right:0;
    top:0;
  }
}


/* =========================================================
   DIAMOND LEARNING — HOME / REFINO TIPOGRÁFICO
   Mais respiro, hierarquia e leitura na Hero
   ========================================================= */

.hero-copy{
  max-width:760px;
}

.hero-copy .hero-title{
  max-width:720px;
  font-size:25px;
  line-height:1.28;
  letter-spacing:-.15px;
  margin-bottom:26px;
}

.hero-copy .hero-title:first-of-type{
  font-size:28px;
  line-height:1.22;
  margin-bottom:34px;
}

.hero-copy .hero-title--signature{
  font-size:21px;
  line-height:1.38;
  font-weight:700;
  margin-top:0;
  margin-bottom:30px;
}

@media (min-width:1500px){
  .hero-copy{
    max-width:800px;
  }

  .hero-copy .hero-title{
    max-width:760px;
    font-size:27px;
    line-height:1.30;
    margin-bottom:30px;
  }

  .hero-copy .hero-title:first-of-type{
    font-size:30px;
    line-height:1.22;
    margin-bottom:38px;
  }

  .hero-copy .hero-title--signature{
    font-size:22px;
    line-height:1.40;
    margin-bottom:34px;
  }
}

@media (max-width:767px){
  .hero-copy .hero-title,
  .hero-copy .hero-title:first-of-type{
    font-size:22px;
    line-height:1.24;
    margin-bottom:22px;
  }

  .hero-copy .hero-title--signature{
    font-size:18px;
    line-height:1.38;
    margin-bottom:24px;
  }
}


/* =========================================================
   DIAMOND LEARNING — COMO FUNCIONA
   ========================================================= */
.how-section .panel-shell{
  padding-top:72px;
  padding-bottom:68px;
  background:
    radial-gradient(circle at 12% 8%, rgba(13,172,255,.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(128,82,255,.08), transparent 26%),
    #f4f6fa;
}
.how-company{display:flex;flex-direction:column;gap:44px}
.how-company__header{max-width:860px;margin:0 auto;text-align:center}
.how-eyebrow,
.how-impact__eyebrow{
  margin:0 0 10px;
  color:#0a78c8;
  font-size:12px;
  font-weight:900;
  letter-spacing:2px;
}
.how-title{
  margin:0 0 18px;
  color:#07162f;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.8px;
  font-weight:850;
}
.how-title span{
  background:linear-gradient(90deg,#068fd4,#7358e8);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.how-lead{
  max-width:790px;
  margin:0 auto;
  color:#46556f;
  font-size:17px;
  line-height:1.7;
  font-weight:650;
}
.how-journey{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.how-journey__line{
  position:absolute;
  left:10%;
  right:10%;
  top:56px;
  height:2px;
  background:linear-gradient(90deg,rgba(8,160,220,.16),rgba(4,196,255,.75),rgba(120,85,255,.75),rgba(120,85,255,.16));
  z-index:0;
}
.how-step-card{
  position:relative;
  z-index:1;
  min-height:260px;
  padding:28px 20px 22px;
  border:1px solid rgba(8,30,71,.10);
  border-radius:22px;
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 34px rgba(8,34,76,.06), inset 0 1px 0 rgba(255,255,255,.9);
  text-align:center;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.how-step-card:hover{
  transform:translateY(-5px);
  border-color:rgba(35,146,230,.22);
  box-shadow:0 22px 40px rgba(8,34,76,.10),0 0 24px rgba(70,170,255,.08);
}
.how-step-card__number{
  position:absolute;
  top:14px;
  right:16px;
  color:rgba(8,38,83,.16);
  font-size:24px;
  font-weight:900;
}
.how-step-card__icon{
  position:relative;
  width:62px;
  height:62px;
  margin:0 auto 18px;
  border-radius:18px;
  background:linear-gradient(145deg,rgba(9,173,239,.12),rgba(117,85,236,.10));
  border:1px solid rgba(39,132,215,.14);
  color:#0a92d3;
}
.how-step-card__icon span,.how-step-card__icon i{position:absolute;display:block}
.how-step-card__icon--diagnose span{left:14px;top:14px;width:26px;height:26px;border:3px solid currentColor;border-radius:50%}
.how-step-card__icon--diagnose i{right:10px;bottom:12px;width:17px;height:3px;background:#7458e8;transform:rotate(45deg);border-radius:2px}
.how-step-card__icon--plan span{left:15px;top:14px;width:32px;height:36px;border:3px solid currentColor;border-radius:5px}
.how-step-card__icon--plan span::before,.how-step-card__icon--plan span::after{content:"";position:absolute;left:6px;right:6px;height:3px;background:#7458e8;border-radius:2px}
.how-step-card__icon--plan span::before{top:9px}.how-step-card__icon--plan span::after{top:20px}
.how-step-card__icon--track span{left:13px;bottom:13px;width:36px;height:3px;background:currentColor;transform:rotate(-21deg);border-radius:2px}
.how-step-card__icon--track span::before,.how-step-card__icon--track span::after{content:"";position:absolute;width:9px;height:9px;border:3px solid currentColor;border-radius:50%;background:#fff;top:-6px}
.how-step-card__icon--track span::before{left:-1px}.how-step-card__icon--track span::after{right:-1px;border-color:#7458e8}
.how-step-card__icon--evolve span{left:16px;bottom:14px;width:9px;height:14px;border:3px solid currentColor;border-radius:2px 2px 0 0;box-shadow:13px -8px 0 -3px #fff,13px -8px 0 0 #0a92d3,26px -20px 0 -3px #fff,26px -20px 0 0 #7458e8}
.how-step-card h4{margin:0 0 12px;color:#07162f;font-size:20px;line-height:1.2;font-weight:850}
.how-step-card p{margin:0;color:#52617a;font-size:14px;line-height:1.62}
.how-impact{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:48px;
  align-items:center;
  padding:42px;
  border-radius:28px;
  background:linear-gradient(135deg,#061735,#0a214c 58%,#101a4a);
  box-shadow:0 28px 54px rgba(5,25,65,.16);
  overflow:hidden;
}
.how-impact__visual{position:relative;min-height:280px;display:flex;align-items:center;justify-content:center}
.how-impact__visual::before{
  content:"";
  position:absolute;
  width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(4,207,255,.22),rgba(98,79,255,.10) 42%,transparent 70%);
  filter:blur(4px);
}
.how-orbit{position:absolute;border-radius:50%;border:1px solid rgba(112,218,255,.22)}
.how-orbit--one{width:230px;height:230px;transform:rotate(18deg)}
.how-orbit--two{width:180px;height:280px;transform:rotate(66deg);border-color:rgba(132,89,255,.26)}
.how-impact__core{
  position:relative;z-index:2;width:160px;height:160px;border-radius:50%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  background:radial-gradient(circle at 35% 28%,rgba(33,217,255,.42),rgba(13,61,135,.92) 42%,rgba(28,19,90,.96));
  border:1px solid rgba(150,228,255,.34);
  box-shadow:0 0 34px rgba(4,207,255,.22),0 0 70px rgba(112,74,255,.16),inset 0 1px 0 rgba(255,255,255,.2);
  color:#fff;
}
.how-impact__core span{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:#8defff}
.how-impact__core strong{font-size:24px;margin:4px 0}
.how-impact__core small{font-size:10px;color:rgba(255,255,255,.65)}
.how-impact__content h4{margin:0 0 16px;color:#fff;font-size:34px;line-height:1.08;letter-spacing:-.4px}
.how-impact__content>p:not(.how-impact__eyebrow){margin:0 0 22px;color:rgba(224,235,255,.76);font-size:15px;line-height:1.72}
.how-impact__points{display:grid;grid-template-columns:1fr 1fr;gap:10px 12px}
.how-impact__points span{
  position:relative;
  min-height:44px;
  display:flex;align-items:center;
  padding:10px 14px 10px 34px;
  border-radius:12px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
  color:#eef5ff;
  font-size:13px;
  font-weight:700;
}
.how-impact__points span::before{content:"";position:absolute;left:14px;width:8px;height:8px;border-radius:50%;background:linear-gradient(135deg,#03d5ff,#8b5cff);box-shadow:0 0 12px rgba(3,213,255,.3)}

@media (max-width:980px){
  .how-journey{grid-template-columns:1fr 1fr}
  .how-journey__line{display:none}
  .how-impact{grid-template-columns:1fr;gap:24px}
  .how-impact__visual{min-height:220px}
}
@media (max-width:767px){
  .how-section .panel-shell{padding-top:48px;padding-bottom:46px}
  .how-company{gap:30px}
  .how-title{font-size:36px}
  .how-lead{font-size:15px;text-align:left}
  .how-journey{grid-template-columns:1fr}
  .how-step-card{min-height:auto;text-align:left;padding:24px 20px}
  .how-step-card__icon{margin:0 0 16px}
  .how-impact{padding:28px 20px;border-radius:22px}
  .how-impact__content h4{font-size:29px}
  .how-impact__points{grid-template-columns:1fr}
}


/* =========================================================
   DIAMOND LEARNING — RECURSOS
   ========================================================= */
.resources-section .panel-shell{
  padding-top:72px;
  padding-bottom:70px;
  background:
    radial-gradient(circle at 12% 12%, rgba(0,196,255,.07), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(130,82,255,.08), transparent 30%),
    #f3f5f9;
}
.resources-wrap{display:flex;flex-direction:column;gap:42px}
.resources-header{max-width:860px;margin:0 auto;text-align:center}
.resources-eyebrow,
.resources-integrated__eyebrow{
  margin:0 0 10px;
  color:#0a83ca;
  font-size:12px;
  font-weight:900;
  letter-spacing:2px;
}
.resources-title{
  margin:0 0 18px;
  color:#07162f;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.8px;
  font-weight:850;
}
.resources-title span{
  background:linear-gradient(90deg,#0797d8,#7759e8);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.resources-lead{
  max-width:800px;
  margin:0 auto;
  color:#46556f;
  font-size:17px;
  line-height:1.72;
  font-weight:620;
}
.resources-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.resource-card{
  position:relative;
  min-height:230px;
  padding:24px 22px 22px;
  border-radius:22px;
  border:1px solid rgba(7,31,74,.10);
  background:rgba(255,255,255,.84);
  box-shadow:0 18px 34px rgba(8,34,76,.055), inset 0 1px 0 rgba(255,255,255,.94);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.resource-card::after{
  content:"";
  position:absolute;
  left:18%;right:18%;top:0;height:2px;
  background:linear-gradient(90deg,transparent,#05c7f3,#7a5ae8,transparent);
  opacity:.65;
}
.resource-card:hover{
  transform:translateY(-5px);
  border-color:rgba(27,152,223,.22);
  box-shadow:0 24px 42px rgba(8,34,76,.09),0 0 24px rgba(57,163,255,.06);
}
.resource-card--wide{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:center;
}
.resource-card__tag{
  display:inline-block;
  margin-bottom:10px;
  color:#1987c7;
  font-size:10px;
  font-weight:900;
  letter-spacing:1.4px;
}
.resource-card h4{
  margin:0 0 10px;
  color:#07162f;
  font-size:21px;
  line-height:1.2;
  font-weight:850;
}
.resource-card p{
  margin:0;
  color:#52617a;
  font-size:14px;
  line-height:1.62;
}
.resource-card__icon{
  position:relative;
  width:62px;
  height:62px;
  margin-bottom:18px;
  border-radius:18px;
  background:linear-gradient(145deg,rgba(7,180,238,.12),rgba(119,88,232,.10));
  border:1px solid rgba(39,132,215,.14);
  color:#0b92d1;
  flex:0 0 auto;
}
.resource-card--wide .resource-card__icon{margin-bottom:0}
.resource-card__icon span,.resource-card__icon i{position:absolute;display:block}
.resource-icon--target span{left:14px;top:14px;width:34px;height:34px;border:3px solid currentColor;border-radius:50%}
.resource-icon--target span::before{content:"";position:absolute;inset:7px;border:3px solid #7859e7;border-radius:50%}
.resource-icon--target i{left:29px;top:7px;width:3px;height:43px;background:currentColor;transform:rotate(45deg)}
.resource-icon--play span{left:18px;top:15px;width:28px;height:34px;border:3px solid currentColor;border-radius:8px}
.resource-icon--play span::after{content:"";position:absolute;left:9px;top:8px;border-left:10px solid #7658e7;border-top:7px solid transparent;border-bottom:7px solid transparent}
.resource-icon--test span{left:14px;top:12px;width:34px;height:40px;border:3px solid currentColor;border-radius:5px}
.resource-icon--test span::before,.resource-icon--test span::after{content:"";position:absolute;left:7px;right:7px;height:3px;background:#7658e7;border-radius:2px}
.resource-icon--test span::before{top:11px}.resource-icon--test span::after{top:22px}
.resource-icon--test i{right:7px;bottom:7px;width:17px;height:9px;border-left:3px solid #0aa06e;border-bottom:3px solid #0aa06e;transform:rotate(-45deg)}
.resource-icon--chart span{bottom:11px;width:8px;border:3px solid currentColor;border-radius:2px 2px 0 0}
.resource-icon--chart span:nth-child(1){left:12px;height:15px}.resource-icon--chart span:nth-child(2){left:27px;height:27px}.resource-icon--chart span:nth-child(3){left:42px;height:38px;border-color:#7658e7}
.resource-icon--chart i{left:10px;top:10px;width:40px;height:20px;border-top:3px solid #7658e7;transform:rotate(-18deg)}
.resource-icon--chat span{left:12px;top:13px;width:38px;height:30px;border:3px solid currentColor;border-radius:10px}
.resource-icon--chat i{left:20px;bottom:10px;width:14px;height:14px;border-left:3px solid #7658e7;border-bottom:3px solid #7658e7;transform:skew(-25deg)}
.resource-icon--trophy span{left:20px;top:12px;width:22px;height:28px;border:3px solid currentColor;border-radius:4px 4px 10px 10px}
.resource-icon--trophy span::before,.resource-icon--trophy span::after{content:"";position:absolute;top:3px;width:10px;height:14px;border:3px solid #7658e7}
.resource-icon--trophy span::before{left:-12px;border-right:none;border-radius:8px 0 0 8px}.resource-icon--trophy span::after{right:-12px;border-left:none;border-radius:0 8px 8px 0}
.resource-icon--trophy i{left:23px;bottom:9px;width:16px;height:3px;background:currentColor;box-shadow:0 -7px 0 currentColor}
.resources-integrated{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:40px;
  align-items:center;
  padding:40px 42px;
  border-radius:28px;
  background:linear-gradient(135deg,#061735,#0a214c 58%,#101a4a);
  box-shadow:0 28px 54px rgba(5,25,65,.16);
}
.resources-integrated__copy h4{margin:0 0 14px;color:#fff;font-size:34px;line-height:1.08;letter-spacing:-.4px}
.resources-integrated__copy>p:not(.resources-integrated__eyebrow){margin:0;color:rgba(224,235,255,.76);font-size:15px;line-height:1.72}
.resources-integrated__flow{
  display:grid;
  grid-template-columns:auto 1fr auto 1fr auto 1fr auto;
  align-items:center;
  gap:10px;
}
.resources-integrated__flow span{
  min-width:86px;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:15px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#f4f8ff;
  font-size:13px;
  font-weight:800;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.resources-integrated__flow i{
  height:2px;
  min-width:20px;
  background:linear-gradient(90deg,#02cbf5,#7859e7);
  position:relative;
}
.resources-integrated__flow i::after{
  content:"";
  position:absolute;
  right:-1px;
  top:50%;
  width:7px;height:7px;
  border-top:2px solid #8e73ff;
  border-right:2px solid #8e73ff;
  transform:translateY(-50%) rotate(45deg);
}

@media (max-width:980px){
  .resources-grid{grid-template-columns:1fr 1fr}
  .resources-integrated{grid-template-columns:1fr;gap:26px}
}
@media (max-width:767px){
  .resources-section .panel-shell{padding-top:48px;padding-bottom:46px}
  .resources-wrap{gap:30px}
  .resources-title{font-size:36px}
  .resources-lead{font-size:15px;text-align:left}
  .resources-grid{grid-template-columns:1fr}
  .resource-card,.resource-card--wide{display:block;min-height:auto;padding:22px 20px}
  .resource-card--wide .resource-card__icon{margin-bottom:18px}
  .resources-integrated{padding:28px 20px;border-radius:22px}
  .resources-integrated__copy h4{font-size:29px}
  .resources-integrated__flow{grid-template-columns:1fr;gap:8px}
  .resources-integrated__flow span{width:100%}
  .resources-integrated__flow i{width:2px;height:18px;margin:0 auto;background:linear-gradient(#02cbf5,#7859e7)}
  .resources-integrated__flow i::after{right:auto;left:50%;top:auto;bottom:-1px;transform:translateX(-50%) rotate(135deg)}
}


/* =========================================================
   DIAMOND LEARNING — PARA QUEM
   Plataforma orientada ao mentor
   ========================================================= */
.audience-section .panel-shell{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 26%, rgba(0,196,255,.08), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(129,83,255,.08), transparent 24%),
    #f4f6f9;
}
.audience-company__top{
  align-items:center;
}
.audience-eyebrow{
  margin:0 0 10px !important;
  font-size:12px !important;
  font-weight:900;
  letter-spacing:2.2px;
  color:#2b73d9 !important;
}
.audience-company__title span{
  color:#7355e7;
}
.audience-impact-box{
  border-left-color:#5a66e8;
  background:linear-gradient(90deg,rgba(55,103,223,.09),rgba(117,81,231,.02));
  border-radius:0 14px 14px 0;
}
.audience-visual-column{
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  isolation:isolate;
}
.audience-visual-column::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(54,152,255,.16),rgba(91,83,231,.08) 45%,transparent 72%);
  filter:blur(4px);
  z-index:-2;
}
.audience-orbit{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(56,107,210,.16);
  z-index:-1;
}
.audience-orbit--one{width:340px;height:340px;animation:audienceSpin 22s linear infinite}
.audience-orbit--two{width:265px;height:265px;border-style:dashed;animation:audienceSpinReverse 18s linear infinite}
@keyframes audienceSpin{to{transform:rotate(360deg)}}
@keyframes audienceSpinReverse{to{transform:rotate(-360deg)}}
.audience-core{
  width:220px;
  min-height:250px;
  padding:26px 22px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:28px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(25,78,166,.12);
  box-shadow:
    0 30px 60px rgba(26,64,130,.16),
    0 0 34px rgba(40,164,255,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
}
.audience-core__badge{
  padding:6px 10px;
  margin-bottom:14px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(15,145,226,.10),rgba(115,85,231,.12));
  color:#365ccc;
  font-size:10px;
  font-weight:900;
  letter-spacing:1.5px;
}
.audience-core__avatar{
  position:relative;
  width:68px;
  height:68px;
  margin-bottom:14px;
  color:#2b7bd8;
}
.audience-core__avatar span{
  position:absolute;
  left:22px;
  top:3px;
  width:25px;
  height:25px;
  border:4px solid currentColor;
  border-radius:50%;
}
.audience-core__avatar i{
  position:absolute;
  left:8px;
  bottom:4px;
  width:52px;
  height:30px;
  border:4px solid currentColor;
  border-bottom:0;
  border-radius:30px 30px 0 0;
}
.audience-core strong{
  color:#091b3c;
  font-size:18px;
  line-height:1.25;
}
.audience-core p{
  margin:10px 0 0;
  color:#52617b;
  font-size:12px;
  line-height:1.6;
}
.audience-chip{
  position:absolute;
  min-height:38px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(45,98,204,.12);
  box-shadow:0 12px 26px rgba(30,69,137,.10);
  color:#294e9d;
  font-size:11px;
  font-weight:800;
}
.audience-chip--one{top:48px;left:56px}
.audience-chip--two{top:92px;right:12px;color:#7650d6}
.audience-chip--three{bottom:72px;left:14px;color:#1488b5}
.audience-chip--four{bottom:35px;right:30px;color:#5365d6}
.audience-highlights{
  gap:16px;
  margin-top:6px;
}
.audience-card{
  position:relative;
  min-height:210px;
  align-items:flex-start;
  text-align:left;
  padding:28px 22px 22px;
  border-radius:20px;
  background:rgba(255,255,255,.66);
  overflow:hidden;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.audience-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#14b8e6,#7355e7);
  opacity:.74;
}
.audience-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 34px rgba(28,69,138,.10);
  border-color:rgba(63,112,224,.22);
}
.audience-card__number{
  margin-bottom:18px;
  color:#6d62dd;
  font-size:12px;
  font-weight:900;
  letter-spacing:1.6px;
}
.audience-card h4{
  font-size:18px;
  color:#071a39;
}
.audience-card p{
  font-size:13px;
  line-height:1.65;
}
.audience-bottom-line{
  margin-top:28px;
  min-height:72px;
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  border-radius:18px;
  background:linear-gradient(100deg,#061b43,#0b3377 52%,#3d247f);
  box-shadow:0 18px 34px rgba(17,43,102,.14);
  color:rgba(255,255,255,.84);
  font-size:15px;
  font-weight:800;
}
.audience-bottom-line i{
  width:34px;
  height:1px;
  background:linear-gradient(90deg,#29c9ef,#8d6af3);
}
.audience-bottom-line strong{color:#fff}

@media(max-width:980px){
  .audience-company__top{grid-template-columns:1fr}
  .audience-visual-column{order:2}
  .audience-company__content{order:1}
}
@media(max-width:767px){
  .audience-company__title{font-size:40px}
  .audience-visual-column{min-height:390px}
  .audience-orbit--one{width:290px;height:290px}
  .audience-orbit--two{width:225px;height:225px}
  .audience-core{width:200px;min-height:230px}
  .audience-chip--one{left:2px;top:46px}
  .audience-chip--two{right:0;top:86px}
  .audience-chip--three{left:0;bottom:58px}
  .audience-chip--four{right:0;bottom:24px}
  .audience-highlights{grid-template-columns:1fr}
  .audience-card{min-height:auto}
  .audience-bottom-line{flex-wrap:wrap;gap:10px;text-align:center;font-size:14px}
  .audience-bottom-line i{width:24px}
}


/* =========================================================
   DIAMOND LEARNING — SEÇÃO RESULTADOS
   ========================================================= */
.results-section .panel-shell{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(0,188,255,.10), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(128,84,255,.10), transparent 26%),
    linear-gradient(180deg,#f8fbff 0%,#f2f6fc 100%);
}
.results-section .panel-shell::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(5,30,74,.026) 1px,transparent 1px),
    linear-gradient(90deg,rgba(5,30,74,.026) 1px,transparent 1px);
  background-size:54px 54px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.50),transparent 82%);
  -webkit-mask-image:linear-gradient(to bottom,rgba(0,0,0,.50),transparent 82%);
}
.results-wrap{position:relative;z-index:2}
.results-header{max-width:930px;margin:0 auto 42px;text-align:center}
.results-eyebrow{margin:0 0 12px;font-size:12px;font-weight:900;letter-spacing:2.6px;color:#4b68c8}
.results-title{margin:0 0 18px;font-size:48px;line-height:1.04;letter-spacing:-1.1px;color:#07152f}
.results-title span{color:#5667d9}
.results-lead{max-width:820px;margin:0 auto;font-size:18px;line-height:1.65;font-weight:600;color:#4a5873}
.results-proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.results-proof-card{position:relative;min-height:245px;padding:30px 28px;border-radius:24px;background:rgba(255,255,255,.76);border:1px solid rgba(6,34,82,.10);box-shadow:0 18px 34px rgba(9,38,87,.07);overflow:hidden}
.results-proof-card::before{content:"";position:absolute;top:0;left:18%;right:18%;height:2px;background:linear-gradient(90deg,transparent,#10bce8,#7959ee,transparent);opacity:.7}
.results-proof-card--highlight{background:linear-gradient(145deg,#071c42,#0b2858 62%,#17215c);border-color:rgba(255,255,255,.12);box-shadow:0 26px 48px rgba(6,27,67,.18)}
.results-proof-card__number{display:block;margin-bottom:4px;font-size:62px;line-height:1;font-weight:900;letter-spacing:-2px;background:linear-gradient(90deg,#0fbef0,#7558ed);-webkit-background-clip:text;background-clip:text;color:transparent}
.results-proof-card strong{display:block;margin-bottom:14px;font-size:21px;color:#08172f}
.results-proof-card p{margin:0;font-size:15px;line-height:1.62;color:#56647d}
.results-proof-card--highlight strong{color:#fff}
.results-proof-card--highlight p{color:rgba(225,237,255,.72)}
.results-divider{height:1px;margin:46px 0 34px;background:linear-gradient(90deg,transparent,rgba(8,42,93,.14),transparent)}
.results-impact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.results-impact-card{min-height:230px;padding:26px 20px 22px;border-radius:20px;background:rgba(255,255,255,.58);border:1px solid rgba(8,41,90,.10);text-align:center;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.results-impact-card:hover{transform:translateY(-5px);border-color:rgba(14,177,224,.24);box-shadow:0 18px 34px rgba(8,39,84,.09)}
.results-impact-card h4{margin:0 0 10px;font-size:18px;line-height:1.2;color:#08172f}
.results-impact-card p{margin:0;font-size:14px;line-height:1.62;color:#56647d}
.results-impact-card__icon{position:relative;width:58px;height:58px;margin:0 auto 17px;color:#168ecb}
.results-impact-card__icon span,.results-impact-card__icon i{position:absolute;display:block}
.results-impact-card__icon--clarity span{left:8px;top:8px;width:42px;height:42px;border:3px solid currentColor;border-radius:50%}
.results-impact-card__icon--clarity i{left:25px;top:17px;width:8px;height:19px;border-left:3px solid #7558ed;border-bottom:3px solid #7558ed;transform:rotate(-45deg)}
.results-impact-card__icon--scale span:nth-child(1),.results-impact-card__icon--scale span:nth-child(2){width:16px;height:16px;border:3px solid currentColor;border-radius:50%;top:7px}
.results-impact-card__icon--scale span:nth-child(1){left:7px}.results-impact-card__icon--scale span:nth-child(2){right:7px;color:#7558ed}
.results-impact-card__icon--scale i{left:8px;right:8px;bottom:8px;height:22px;border:3px solid currentColor;border-bottom:none;border-radius:18px 18px 0 0}
.results-impact-card__icon--data span{bottom:7px;width:9px;border:3px solid currentColor;border-radius:2px 2px 0 0}
.results-impact-card__icon--data span:nth-child(1){left:8px;height:16px}.results-impact-card__icon--data span:nth-child(2){left:24px;height:28px}.results-impact-card__icon--data span:nth-child(3){left:40px;height:40px;color:#7558ed}
.results-impact-card__icon--data i{left:9px;top:8px;width:40px;height:22px;border-top:3px solid #7558ed;transform:rotate(-18deg)}
.results-impact-card__icon--growth span{left:7px;bottom:9px;width:42px;height:30px;border-left:3px solid currentColor;border-bottom:3px solid currentColor}
.results-impact-card__icon--growth i{left:15px;top:10px;width:34px;height:24px;border-top:3px solid #7558ed;border-right:3px solid #7558ed;transform:skewY(-28deg)}
.results-closing{margin-top:42px;padding:24px 28px;border-radius:22px;display:flex;align-items:center;justify-content:space-between;gap:24px;background:linear-gradient(135deg,#071d46,#0c2b62 56%,#242065);box-shadow:0 22px 44px rgba(5,28,70,.18)}
.results-closing div{display:flex;flex-direction:column;gap:6px}
.results-closing small{font-size:10px;font-weight:900;letter-spacing:2.2px;color:#7fe7ff}
.results-closing strong{max-width:720px;font-size:20px;line-height:1.4;color:#fff}
.results-closing a{flex:0 0 auto;min-height:48px;padding:0 22px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;background:#fff;color:#0a2151;font-size:14px;font-weight:900;box-shadow:0 12px 26px rgba(0,0,0,.16);transition:transform .2s ease,box-shadow .2s ease}
.results-closing a:hover{transform:translateY(-2px);box-shadow:0 16px 30px rgba(0,0,0,.22)}

@media (max-width:980px){
  .results-title{font-size:42px}
  .results-proof-grid{grid-template-columns:1fr 1fr}
  .results-proof-card:last-child{grid-column:1 / -1}
  .results-impact-grid{grid-template-columns:1fr 1fr}
  .results-closing{align-items:flex-start;flex-direction:column}
}
@media (max-width:767px){
  .results-header{text-align:left;margin-bottom:30px}
  .results-title{font-size:36px;line-height:1.08}
  .results-lead{font-size:16px}
  .results-proof-grid,.results-impact-grid{grid-template-columns:1fr}
  .results-proof-card:last-child{grid-column:auto}
  .results-proof-card{min-height:auto;padding:24px 20px}
  .results-proof-card__number{font-size:52px}
  .results-impact-card{min-height:auto;padding:22px 18px}
  .results-closing{padding:22px 20px}
  .results-closing strong{font-size:18px}
  .results-closing a{width:100%}
}


/* =========================================================
   DIAMOND LEARNING — FECHAMENTO / CONTATO
   ========================================================= */
.learning-close-section .panel-shell{
  background:linear-gradient(145deg,#03102c 0%,#061b42 48%,#0b1740 100%);
  color:#fff;
  overflow:hidden;
  position:relative;
  padding:76px 58px 42px;
}

.learning-close{
  position:relative;
  z-index:1;
}

.learning-close__glow{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  pointer-events:none;
  z-index:-1;
}

.learning-close__glow--cyan{
  width:360px;
  height:360px;
  background:rgba(0,203,255,.14);
  left:-180px;
  top:-120px;
}

.learning-close__glow--violet{
  width:420px;
  height:420px;
  background:rgba(132,83,255,.16);
  right:-190px;
  top:120px;
}

.learning-close__header{
  max-width:900px;
  margin:0 auto 46px;
  text-align:center;
}

.learning-close__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  margin-bottom:18px;
  border:1px solid rgba(107,219,255,.24);
  border-radius:999px;
  background:rgba(0,199,255,.08);
  color:#85e8ff;
  font-size:11px;
  line-height:1;
  font-weight:900;
  letter-spacing:1.4px;
}

.learning-close__header h2{
  margin:0 auto 22px;
  max-width:920px;
  color:#fff;
  font-size:54px;
  line-height:1.02;
  letter-spacing:-1.6px;
}

.learning-close__header h2 span{
  background:linear-gradient(90deg,#5ee6ff 0%,#69b9ff 48%,#9d82ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.learning-close__header p{
  max-width:780px;
  margin:0 auto;
  color:rgba(223,235,255,.72);
  font-size:17px;
  line-height:1.7;
}

.learning-close__paths{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  max-width:1040px;
  margin:0 auto 42px;
}

.learning-close-card{
  position:relative;
  min-height:330px;
  padding:34px 32px 30px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  box-shadow:0 22px 46px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  overflow:hidden;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}

.learning-close-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  opacity:.8;
}

.learning-close-card--mentor::before{
  background:linear-gradient(90deg,transparent,#2ddfff,transparent);
}

.learning-close-card--operation::before{
  background:linear-gradient(90deg,transparent,#9673ff,transparent);
}

.learning-close-card:hover{
  transform:translateY(-6px);
  border-color:rgba(107,219,255,.22);
  box-shadow:0 30px 58px rgba(0,0,0,.24),0 0 30px rgba(60,170,255,.08);
}

.learning-close-card__number{
  position:absolute;
  right:24px;
  top:18px;
  color:rgba(255,255,255,.07);
  font-size:70px;
  line-height:1;
  font-weight:900;
  letter-spacing:-5px;
}

.learning-close-card__tag{
  display:inline-block;
  margin-bottom:18px;
  color:#7edfff;
  font-size:11px;
  line-height:1;
  font-weight:900;
  letter-spacing:1.2px;
}

.learning-close-card--operation .learning-close-card__tag{
  color:#b3a2ff;
}

.learning-close-card h3{
  max-width:390px;
  margin:0 0 16px;
  color:#fff;
  font-size:28px;
  line-height:1.12;
  letter-spacing:-.5px;
}

.learning-close-card p{
  margin:0 0 30px;
  max-width:430px;
  color:rgba(220,232,255,.66);
  font-size:15px;
  line-height:1.7;
}

.learning-close-card a{
  position:absolute;
  left:32px;
  right:32px;
  bottom:28px;
  min-height:50px;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-radius:14px;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:14px;
  line-height:1.25;
  font-weight:800;
  transition:background .2s ease,border-color .2s ease;
}

.learning-close-card a:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(104,220,255,.24);
}

.learning-close-card a span{
  font-size:22px;
  line-height:1;
}

.learning-close__statement{
  max-width:1040px;
  margin:0 auto 34px;
  padding:24px 28px;
  display:flex;
  align-items:center;
  gap:20px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px;
  background:linear-gradient(90deg,rgba(0,196,255,.075),rgba(135,83,255,.075));
}

.learning-close__statement small{
  display:block;
  margin-bottom:5px;
  color:#77dfff;
  font-size:10px;
  font-weight:900;
  letter-spacing:1.3px;
}

.learning-close__statement strong{
  display:block;
  color:#fff;
  font-size:20px;
  line-height:1.3;
}

.learning-close__mark{
  position:relative;
  width:56px;
  height:56px;
  min-width:56px;
}

.learning-close__mark span,
.learning-close__mark i{
  position:absolute;
  display:block;
}

.learning-close__mark span:nth-child(1){
  inset:7px 12px 14px;
  border:2px solid #64ddff;
  transform:rotate(45deg);
  border-radius:6px;
  box-shadow:0 0 18px rgba(83,210,255,.18);
}

.learning-close__mark span:nth-child(2){
  width:24px;
  height:2px;
  background:#a58cff;
  left:16px;
  top:27px;
  transform:rotate(-25deg);
}

.learning-close__mark i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#64ddff;
  right:8px;
  top:8px;
  box-shadow:-34px 34px 0 #9d82ff;
}

.learning-close__footer{
  max-width:1040px;
  margin:0 auto;
  padding-top:26px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  border-top:1px solid rgba(255,255,255,.08);
}

.learning-close__footer div{
  min-width:0;
}

.learning-close__footer span{
  display:block;
  margin-bottom:7px;
  color:rgba(205,222,255,.48);
  font-size:10px;
  font-weight:800;
  letter-spacing:.9px;
  text-transform:uppercase;
}

.learning-close__footer a{
  color:rgba(255,255,255,.86);
  font-size:14px;
  line-height:1.45;
  font-weight:700;
  word-break:break-word;
}

.learning-close__footer a:hover{
  color:#75e4ff;
}

@media (max-width:980px){
  .learning-close-section .panel-shell{
    padding:60px 34px 38px;
  }
  .learning-close__header h2{
    font-size:44px;
  }
}

@media (max-width:767px){
  .learning-close-section .panel-shell{
    padding:46px 20px 30px;
  }

  .learning-close__header{
    margin-bottom:32px;
    text-align:left;
  }

  .learning-close__header h2{
    font-size:36px;
    line-height:1.06;
    letter-spacing:-1px;
  }

  .learning-close__header p{
    font-size:15px;
  }

  .learning-close__paths{
    grid-template-columns:1fr;
    gap:16px;
    margin-bottom:28px;
  }

  .learning-close-card{
    min-height:320px;
    padding:28px 22px 26px;
  }

  .learning-close-card h3{
    font-size:24px;
  }

  .learning-close-card a{
    left:22px;
    right:22px;
    bottom:22px;
  }

  .learning-close__statement{
    padding:20px;
    align-items:flex-start;
  }

  .learning-close__statement strong{
    font-size:17px;
  }

  .learning-close__footer{
    grid-template-columns:1fr;
    gap:18px;
  }
}
