h1{font-size:1.85rem;margin-bottom:10px}
h2{font-size:1.28rem;margin-bottom:10px}
p{color:#374151}

.section-head{
  display:grid;
  gap:10px;
  justify-items:center;
  text-align:center;
  max-width:min(860px,100%);
  margin:0 auto 24px;
}
.section-head .eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:0;
  background:transparent;
  color:var(--primary);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.section-head h2{
  font-size:clamp(1.7rem,3.6vw,2.45rem);
  line-height:1.08;
  letter-spacing:-.02em;
  max-width:22ch;
  margin:0;
  color:#0f172a;
}
.section-head > p:last-child{
  max-width:72ch;
  margin:0;
  color:#475569;
  font-size:1.02rem;
  line-height:1.55;
}

.hero--ceomed{
  background:linear-gradient(135deg,#e8fbf7 0%,#f4fbff 100%);
  padding:72px 0;
}
.hero__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:start;
}
.hero__content{max-width:760px}
.hero__content h1{
  font-size:clamp(2.2rem,4vw,3.2rem);
  line-height:1.08;
}
.hero-points{
  margin-top:16px;
  display:grid;
  gap:8px;
}
.hero-points li{
  list-style:none;
  position:relative;
  padding-left:30px;
  font-weight:500;
}
.hero-points li::before{
  content:"check";
  font-family:'Material Symbols Rounded';
  font-size:18px;
  line-height:1;
  color:var(--primary);
  position:absolute;
  left:0;
  top:2px;
}
.kicker{
  display:inline-block;
  background:rgba(59,178,155,.15);
  color:var(--primary);
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:.82rem;
  margin-bottom:12px;
}
.hero__side{
  background:#fff;
  border:1px solid #dbe5ef;
  border-radius:14px;
  padding:18px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}
.hero__side h3{
  margin:4px 0 8px;
  font-size:1.75rem;
  line-height:1.2;
}
.hero__side p{margin-bottom:8px}
.hero-side-list{
  margin:10px 0 14px;
  display:grid;
  gap:8px;
}
.hero-side-list li{
  list-style:none;
  position:relative;
  padding-left:24px;
  font-weight:500;
}
.hero-side-list li::before{
  content:"check_circle";
  font-family:'Material Symbols Rounded';
  font-size:16px;
  color:var(--primary);
  position:absolute;
  left:0;
  top:2px;
}
.section--intro p{max-width:820px}
.section--intro .cards-grid{
  grid-template-columns:1fr;
  gap:16px;
  counter-reset:offercard;
}
.section--intro .cards-grid > .card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(59,178,155,.2);
  border-radius:18px;
  background:linear-gradient(180deg,rgba(59,178,155,.08) 0%,rgba(59,178,155,.04) 100%);
  box-shadow:0 8px 20px rgba(15,23,42,.06);
  padding:56px 18px 18px;
  min-height:190px;
}
.section--intro .cards-grid > .card::before{
  counter-increment:offercard;
  content:counter(offercard, decimal-leading-zero);
  position:absolute;
  top:16px;
  left:16px;
  color:var(--primary);
  font-size:1.7rem;
  font-weight:700;
  letter-spacing:.02em;
  line-height:1;
}
.section--intro .cards-grid > .card::after{
  content:attr(data-icon);
  font-family:'Material Symbols Rounded';
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--primary);
  border:1px solid rgba(59,178,155,.25);
  font-size:22px;
  line-height:1;
}
.section--intro .cards-grid > .card h3{
  color:#0f172a;
  font-size:1.08rem;
  line-height:1.2;
  margin:0 0 8px;
}
.section--intro .cards-grid > .card p{
  color:#475569;
  font-size:.84rem;
  line-height:1.34;
  margin:0;
  max-width:32ch;
}
.section--intro .cards-grid > .card .card-link{
  margin-top:auto;
  padding-top:12px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  width:max-content;
  color:var(--primary);
  font-weight:600;
  font-size:.9rem;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color .2s ease, border-color .2s ease, transform .2s ease;
}
.section--intro .cards-grid > .card .card-link::after{
  content:"arrow_forward";
  font-family:'Material Symbols Rounded';
  font-size:16px;
  line-height:1;
  transition:transform .2s ease;
}
.section--intro .cards-grid > .card .card-link:hover{
  border-color:rgba(59,178,155,.65);
  transform:translateX(1px);
}
.section--intro .cards-grid > .card .card-link:hover::after{
  transform:translateX(2px);
}
.section--soft{background:#f9fcfb}
.section--dp{
  padding-top:10px;
}
.section--dp-tight{
  padding-top:0;
}
.dp-highlight{
  border-radius:16px;
  border:1px solid rgba(59,178,155,.3);
  background:linear-gradient(135deg,rgba(59,178,155,.14) 0%,rgba(59,178,155,.07) 58%,rgba(255,151,0,.14) 100%);
  padding:26px 22px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}
.dp-highlight__tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,151,0,.2);
  color:#8a4b00;
  border:1px solid rgba(255,151,0,.36);
  border-radius:999px;
  padding:6px 10px;
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin:0 0 10px;
}
.dp-highlight h2{
  color:#0f172a;
  margin:0 0 10px;
  font-size:clamp(1.55rem,3.2vw,2.2rem);
  line-height:1.12;
  max-width:22ch;
}
.dp-highlight p{
  color:#334155;
  margin:0 0 16px;
  max-width:70ch;
}
.dp-highlight--esocial{
  border-color:rgba(59,178,155,.34);
  background:linear-gradient(135deg,rgba(59,178,155,.12) 0%,rgba(59,178,155,.06) 46%,rgba(255,151,0,.1) 100%);
}
.section--benefits{background:#f6f8fc}
.section--trainings{
  background:linear-gradient(180deg,#fff 0%,#f8fcfb 100%);
}
.section--trainings .container{
  width:min(1400px,98%);
}
.trainings-carousel{
  overflow:hidden;
  position:relative;
}
.trainings-track{
  display:flex;
  gap:14px;
  transition:transform .5s ease;
}
.training-card{
  flex:0 0 calc(100% - 7px);
  background:#fff;
  border:1px solid #dbe5ef;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(15,23,42,.06);
}
.training-card__media{
  min-height:84px;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(120% 160% at 10% 12%,rgba(59,178,155,.42) 0%,rgba(59,178,155,.2) 34%,rgba(59,178,155,.06) 62%,rgba(59,178,155,0) 100%),
    linear-gradient(135deg,rgba(59,178,155,.24) 0%,rgba(59,178,155,.12) 52%,rgba(255,151,0,.12) 100%);
}
.training-card__code{
  display:inline-flex;
  align-items:center;
  color:#0b5b54;
  font-size:1rem;
  font-weight:700;
  letter-spacing:.01em;
  line-height:1;
}
.training-card__media .material-symbols-rounded{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
  font-size:30px;
  order:-1;
  font-variation-settings:'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 24;
}
.training-card h3{
  margin:12px 14px 6px;
  color:#0f172a;
  font-size:1rem;
  line-height:1.25;
}
.training-card p{
  margin:0 14px 14px;
  color:#475569;
  font-size:.88rem;
  line-height:1.38;
}
.trainings-bullets{
  margin-top:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}
.trainings-bullets button{
  width:8px;
  height:8px;
  border-radius:50%;
  border:0;
  padding:0;
  background:rgba(59,178,155,.35);
  transition:transform .2s ease, background-color .2s ease;
}
.trainings-bullets button.is-active{
  background:var(--primary);
  transform:scale(1.25);
}
.training-cta{
  margin-top:16px;
  padding:18px;
  border-radius:14px;
  border:1px solid rgba(59,178,155,.28);
  background:linear-gradient(135deg,rgba(59,178,155,.1) 0%,rgba(59,178,155,.04) 56%,rgba(255,151,0,.1) 100%);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}
.training-cta h3{
  margin:0;
  font-size:clamp(1.1rem,2.5vw,1.45rem);
  color:#0f172a;
}
.section--promo{background:#ffffff}
.promo{
  border:1px solid #e5e7eb;
  border-radius:var(--radius);
  padding:24px;
  background:#fff;
}
.badge-free{
  display:inline-block;
  background:var(--highlight);
  color:#1f2937;
  font-weight:700;
  font-size:.78rem;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.section--process{
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}
.process-flow{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.process-step{
  position:relative;
  background:#fff;
  border:1px solid #dbe5ef;
  border-radius:14px;
  padding:14px 14px 14px 58px;
  box-shadow:0 8px 20px rgba(15,23,42,.05);
  transition:transform .2s ease, box-shadow .2s ease;
}
.process-step::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  border-radius:14px 0 0 14px;
  background:linear-gradient(180deg,var(--primary) 0%,rgba(59,178,155,.55) 100%);
}
.process-step:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(15,23,42,.1);
}
.process-step__num{
  position:absolute;
  left:14px;
  top:14px;
  width:30px;
  height:30px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:.88rem;
  font-weight:700;
  color:#fff;
  background:var(--primary);
}
.process-step h3{
  margin:0 0 6px;
  font-size:1rem;
  line-height:1.25;
  color:#0f172a;
}
.process-step p{
  margin:0;
  color:#475569;
  font-size:.9rem;
  line-height:1.4;
}
.steps-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.step{
  display:inline-flex;
  width:30px;
  height:30px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:#fff;
  font-weight:700;
  margin-bottom:10px;
}
.logo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.logo-card{
  background:#fff;
  border:1px dashed #cdd5df;
  border-radius:10px;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6b7280;
  font-weight:700;
}
.contact-box{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:var(--radius);
  padding:24px;
}
@media (min-width: 900px){
  .hero__grid{grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);gap:26px}
  .training-card{flex:0 0 calc((100% - 28px) / 3)}
  .process-flow{grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
  .process-step{min-height:170px}
  .steps-grid{grid-template-columns:repeat(3,1fr)}
  .logo-grid{grid-template-columns:repeat(4,1fr)}
  .section--intro .cards-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (min-width: 1200px){
  .training-card{flex:0 0 calc((100% - 42px) / 4)}
  .section--intro .cards-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
