:root{
  --ed-blue:#006dff;
  --ed-blue-2:#00a3ff;
  --ed-dark:#020711;
  --ed-text:#ffffff;
  --ed-muted:rgba(255,255,255,.86);
  --ed-card:rgba(12,21,32,.78);
  --ed-border:rgba(120,190,255,.33);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  background:#fff;
  color:#111827;
}

.ed-home{
  position:relative;
  overflow:hidden;
  background:#001949;
  color:var(--ed-text);
}

.ed-hero-area{
  position:relative;
  overflow:hidden;
  min-height:660px;
  padding:10px 22px 30px;
  color:var(--ed-text);
  background:
    radial-gradient(circle at 72% 27%, rgb(84 95 109 / 22%), transparent 30%),
    radial-gradient(circle at 18% 75%, rgb(73 126 167 / 0%), transparent 33%),
    linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgb(2 8 18 / 0%) 34%, rgb(1, 12, 28, .52) 66%, #001133 100%),
    url(../../images/banners/banner-verde.png) left center / cover no-repeat;
}

.ed-hero-area::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.02) 0%, rgba(0,10,25,.10) 42%, rgba(0,12,35,.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.12) 100%);
}

.ed-hero-area::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  opacity:.06;
  background-image:
    linear-gradient(rgba(0,114,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,114,255,.06) 1px, transparent 1px);
  background-size:120px 120px;
  mask-image:linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.ed-shell{
  position:relative;
  z-index:3;
  width:100%;
  max-width:1340px;
  margin:0 auto;
}

.ed-hero-grid{
  display:grid;
  grid-template-columns:330px minmax(0,1fr);
  gap:36px;
  align-items:start;
  padding:60px 0 0;
}

.ed-side-cards{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:214px;
  margin-left:0;
}

.ed-side-card{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:12px;
  align-items:center;
  min-height:96px;
  padding:14px;
  border:1px solid rgba(190,220,255,.22);
  border-radius:18px;
  background:var(--ed-card);
  color:#fff;
  text-decoration:none;
  cursor:pointer;
  backdrop-filter:blur(10px);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  transition:transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.ed-side-card:hover{
  transform:translateY(-3px);
  border-color:rgba(53,169,255,.72);
  background:rgba(12,28,52,.62);
  box-shadow:0 18px 44px rgba(0,42,105,.13);
}

.ed-side-card:focus-visible{
  outline:3px solid rgba(0,123,255,.75);
  outline-offset:3px;
}

.ed-side-card:visited{
  color:#fff;
}

.ed-side-card > *{
  position:relative;
  z-index:2;
}

.ed-side-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  justify-self:center;
  align-self:center;
  flex:0 0 38px;
  margin:0;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(0,120,255,.90), rgba(0,75,160,.82));
  box-shadow:0 0 18px rgba(0,130,255,.28);
  color:#fff;
  line-height:0;
  transition:transform .22s ease, filter .22s ease;
}

.ed-side-icon svg{
  width:19px;
  height:19px;
  display:block;
  margin:0;
}

.ed-side-card:hover .ed-side-icon{
  transform:translateY(-2px) scale(1.035);
  filter:drop-shadow(0 8px 14px rgba(0,109,255,.18));
}

.ed-side-card > div:not(.ed-side-icon){
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:54px;
}

.ed-side-card strong{
  display:block;
  margin:0 0 6px;
  color:#fff;
  font-size:14px;
  line-height:1.12;
  font-weight:600;
}

.ed-side-card div > span{
  color:rgba(255,255,255,.86);
  font-size:11px;
  line-height:1.28;
  font-weight:500;
}

.ed-hero-content{
  max-width:780px;
  margin-left:auto;
  padding-top:8px;
}

.ed-title{
  margin:0;
  color:#fff;
  font-size:56px;
  line-height:1.08;
  font-weight:600;
  letter-spacing:-2.4px;
  text-transform:uppercase;
  text-shadow:0 6px 16px rgba(0,0,0,.18);
}

.ed-title span{
  display:block;
  color:var(--ed-blue);
  text-shadow:0 0 20px rgba(0,117,255,.18);
}

.ed-subtitle{
  max-width:780px;
  margin:18px 0 26px;
  color:#fff;
  font-size:20px;
  line-height:1.52;
  font-weight:500;
  text-shadow:0 3px 10px rgba(0,0,0,.12);
}

.ed-subtitle strong{
  font-weight:600;
}

.ed-search{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  width:100%;
  min-height:106px;
  display:grid;
  grid-template-columns:1fr 200px;
  align-items:center;
  gap:16px;
  padding:18px 20px 18px 24px;
  border:2px solid rgba(39,163,255,.90);
  border-radius:26px;
  background:rgba(255,255,255,.97);
  box-shadow:0 0 0 4px rgba(0,121,255,.08), 0 0 20px rgba(0,140,255,.20);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ed-search:focus-within{
  transform:translateY(-2px);
  box-shadow:
    0 18px 44px rgba(0,42,105,.14),
    0 0 0 4px rgba(0,109,255,.08);
}

.ed-search-input-wrap{
  display:grid;
  grid-template-columns:32px 1fr;
  align-items:center;
  gap:14px;
  min-width:0;
}

.ed-search-icon{
  width:31px;
  height:31px;
  color:#101c35;
  opacity:.78;
}

.ed-search-text{
  min-width:0;
}

.ed-search label{
  display:block;
  margin-bottom:8px;
  color:#26334d;
  font-size:16px;
  font-weight:600;
}

.ed-search input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#111827;
  font-size:15px;
  font-weight:600;
}

.ed-search input::placeholder{
  color:#5f6c82;
  opacity:1;
  font-size:13px;
  font-weight:500;
}

.ed-search button{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  height:56px;
  border:0;
  border-radius:10px;
  background:linear-gradient(135deg, #006dff, #005cff);
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  box-shadow:0 10px 22px rgba(0,91,255,.22);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.ed-search button:hover{
  transform:translateY(-2px);
  filter:brightness(1.035);
  box-shadow:0 16px 36px rgba(0,109,255,.22);
}

.ed-search button svg{
  width:21px;
  height:21px;
  transition:transform .22s ease;
}

.ed-search button:hover svg{
  transform:translateX(4px);
}

.ed-hero-actions{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:35px;
  justify-content: center;
}

.ed-primary-action,
.ed-secondary-action{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:66px;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease, border-color .22s ease;
}

.ed-primary-action{
  width:322px;
  background:linear-gradient(135deg, #006dff, #0060f3);
  box-shadow:0 14px 28px rgba(0,87,255,.22);
}

.ed-secondary-action{
  width:338px;
  border:1px solid rgba(130,190,255,.44);
  background:rgba(2,11,24,.34);
}

.ed-primary-action:hover,
.ed-secondary-action:hover{
  transform:translateY(-2px);
  filter:brightness(1.035);
  box-shadow:0 16px 36px rgba(0,109,255,.22);
}

.ed-action-icon{
  width:27px;
  height:27px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:transform .22s ease, filter .22s ease;
}

.ed-action-icon svg{
  width:25px;
  height:25px;
  transition:transform .22s ease;
}

.ed-primary-action:hover .ed-action-icon,
.ed-secondary-action:hover .ed-action-icon{
  transform:translateY(-2px) scale(1.035);
  filter:drop-shadow(0 8px 14px rgba(0,109,255,.18));
}

.ed-primary-action:hover svg,
.ed-secondary-action:hover svg{
  transform:translateX(4px);
}

/* =========================================================
   BLOCO: O QUE VOCÊ PRECISA HOJE
   PADRÃO COM IMAGEM, 3 COLUNAS, ÍCONE E TÍTULO SOBRE FOTO
========================================================= */

.ed-needs{
  position:relative;
  width:100vw;
  max-width:none;
  margin:0 calc(50% - 50vw);
  padding:54px 0 70px;
  overflow:hidden;
  background:
    radial-gradient(circle at 4% 3%, rgba(13,100,255,.08), transparent 18rem),
    radial-gradient(circle at 100% 0%, rgba(13,100,255,.11), transparent 24rem),
    radial-gradient(circle at 0% 100%, rgba(13,100,255,.10), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color:#071d4d;
}

.ed-needs::before{
  content:"";
  position:absolute;
  left:14px;
  top:12px;
  width:230px;
  height:135px;
  opacity:.42;
  pointer-events:none;
  background-image:radial-gradient(rgba(11,99,255,.24) 3px, transparent 3px);
  background-size:26px 26px;
}

.ed-needs::after{
  content:"";
  position:absolute;
  right:34px;
  bottom:24px;
  width:210px;
  height:130px;
  opacity:.28;
  pointer-events:none;
  background-image:radial-gradient(rgba(11,99,255,.23) 3px, transparent 3px);
  background-size:26px 26px;
}

.ed-needs-heading{
  position:relative;
  z-index:2;
  max-width:1320px;
  margin:0 auto 34px;
  padding:0 20px;
  text-align:center;
}

.ed-needs-heading h2{
  margin:0;
  color:#071d4d;
  font-size:50px;
  line-height:1.05;
  font-weight:600;
  letter-spacing:-0.055em;
  text-transform:uppercase;
}

.ed-needs-heading h2 span{
  color:#0b63ff;
  font-weight:600;
}

.ed-needs-heading p{
  margin:14px 0 0;
  color:#43557d;
  font-size:clamp(1rem, 1.4vw, 1.32rem);
  line-height:1.45;
  font-weight:400;
}

.ed-needs-grid{
  position:relative;
  z-index:2;
  width:min(100% - 80px, 1320px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px 28px;
}

.ed-need-card{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:190px;
  border-radius:12px;
  background:#061a4d;
  color:#fff;
  display:block;
  text-decoration:none;
  box-shadow:
    0 14px 34px rgba(6,25,70,.16),
    0 2px 8px rgba(6,25,70,.08);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

.ed-need-card,
.ed-need-card:hover,
.ed-need-card:focus,
.ed-need-card:active,
.ed-need-card:visited{
  color:#fff;
  text-decoration:none;
}

.ed-need-card:hover,
.ed-need-card:focus-visible{
  transform:translateY(-4px);
  filter:saturate(1.04) contrast(1.03);
  box-shadow:
    0 20px 44px rgba(6,25,70,.20),
    0 5px 16px rgba(6,25,70,.12);
  outline:0;
}

.ed-need-card img{
  position:absolute;
  inset:0;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center top;
  transform:scale(1.001);
  transition:transform .45s ease, filter .35s ease;
}

.ed-need-card:hover img,
.ed-need-card:focus-visible img{
  transform:scale(1.035);
  filter:saturate(1.05) contrast(1.04);
}

.ed-need-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(5, 13, 36, .02) 0%, rgba(5, 13, 36, .12) 42%, rgba(5, 13, 36, .78) 100%), 
    linear-gradient(90deg, rgb(5 13 36 / 0%) 0%, rgb(5 13 36 / 0%) 58%, rgb(0 11 43 / 0%) 100%);
}

.ed-need-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.38);
  pointer-events:none;
}

.ed-need-icon{
  position:absolute;
  top:16px;
  left:16px;
  z-index:4;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:rgba(255,255,255,.94);
  color:#0b63ff;
  box-shadow:0 10px 22px rgba(6,25,70,.16);
  transition:transform .22s ease, filter .22s ease;
}

.ed-need-card:hover .ed-need-icon,
.ed-need-card:focus-visible .ed-need-icon{
  transform:translateY(-2px) scale(1.035);
  filter:drop-shadow(0 8px 14px rgba(0,109,255,.18));
}

.ed-need-icon svg{
  width:25px;
  height:25px;
  display:block;
}

.ed-need-icon svg,
.ed-need-icon svg path,
.ed-need-icon svg rect,
.ed-need-icon svg circle,
.ed-need-icon svg line,
.ed-need-icon svg polyline,
.ed-need-icon svg polygon{
  stroke-width:1.9;
  vector-effect:non-scaling-stroke;
}

.ed-need-card strong{
  position:absolute;
  left:24px;
  right:18px;
  bottom:18px;
  z-index:4;
  display:block;
  min-height:auto;
  color:#fff;
  font-size:clamp(1.18rem, 1.55vw, 1.52rem);
  line-height:1.12;
  font-weight:600;
  letter-spacing:-0.035em;
  text-align:left;
  text-shadow:0 4px 14px rgba(0,0,0,.38);
}

/* Cores antigas mantidas para compatibilidade, caso existam em outros blocos */
.ed-blue-icon{
  color:#007bff;
}

.ed-green-icon{
  color:#7ee23f;
}

.ed-yellow-icon{
  color:#ffbc00;
}

.ed-purple-icon{
  color:#8b4dff;
}

.ed-cyan-icon{
  color:#00d7d7;
}

.ed-lightblue-icon{
  color:#007bff;
}

/* SVG GERAL */

.ed-home svg,
.ed-home svg path,
.ed-home svg rect,
.ed-home svg circle,
.ed-home svg line,
.ed-home svg polyline,
.ed-home svg polygon{
  stroke-width:1.55;
  vector-effect:non-scaling-stroke;
}

.ed-side-icon svg,
.ed-side-icon svg path{
  stroke-width:1.7;
}

/* EFEITOS SUTIS LIMPOS */

@media (prefers-reduced-motion: no-preference){
  .ed-motion-ready .ed-reveal{
    opacity:0;
    transform:translateY(10px);
    transition:
      opacity .42s ease,
      transform .42s ease,
      box-shadow .22s ease,
      border-color .22s ease,
      background .22s ease;
    transition-delay:var(--ed-delay, 0ms);
    will-change:opacity, transform;
  }

  .ed-motion-ready .ed-reveal.ed-reveal-left{
    transform:translateX(-10px);
  }

  .ed-motion-ready .ed-reveal.ed-reveal-scale{
    transform:translateY(8px) scale(.992);
  }

  .ed-motion-ready .ed-reveal.is-visible{
    opacity:1;
    transform:translate(0, 0) scale(1);
  }

  .ed-motion-ready .ed-title,
  .ed-motion-ready .ed-subtitle,
  .ed-motion-ready .ed-search,
  .ed-motion-ready .ed-hero-actions{
    opacity:0;
    transform:translateY(18px);
    animation:edHeroFadeUp .68s ease forwards;
  }

  .ed-motion-ready .ed-title{
    animation-delay:.04s;
  }

  .ed-motion-ready .ed-subtitle{
    animation-delay:.12s;
  }

  .ed-motion-ready .ed-search{
    animation-delay:.20s;
  }

  .ed-motion-ready .ed-hero-actions{
    animation-delay:.28s;
  }

  .negocios-section .ed-reveal,
  .materias-section .ed-reveal,
  .banco-empregos-hero .ed-reveal{
    transition-delay:var(--ed-fast-delay, 0ms);
  }

  .be-floating{
    animation:edSoftFloat 4.8s ease-in-out infinite;
  }

  .negocios-bg-effect{
    animation:edBgBreath 7s ease-in-out infinite;
  }

  .ed-primary-action::before,
  .ed-search button::before,
  .materias-btn::before,
  .be-main-btn::before{
    animation:edInviteLight 5.6s ease-in-out infinite;
  }
}

@keyframes edHeroFadeUp{
  from{
    opacity:0;
    transform:translateY(18px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

.ed-side-card::after,
.ed-need-card::after,
.negocio-card::after,
.materia-list-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  border-radius:inherit;
  background:linear-gradient(
    120deg,
    transparent 0%,
    transparent 38%,
    rgba(255,255,255,.36) 50%,
    transparent 62%,
    transparent 100%
  );
  transform:translateX(-140%);
  opacity:0;
  pointer-events:none;
}

.ed-side-card:hover::after,
.ed-need-card:hover::after,
.negocio-card:hover::after,
.materia-list-card:hover::after{
  animation:edCardLight .58s ease forwards;
}

@keyframes edCardLight{
  0%{
    opacity:0;
    transform:translateX(-140%);
  }

  18%{
    opacity:.75;
  }

  100%{
    opacity:0;
    transform:translateX(140%);
  }
}

.ed-primary-action::before,
.ed-secondary-action::before,
.ed-search button::before,
.materias-btn::before,
.be-main-btn::before{
  content:"";
  position:absolute;
  top:-40%;
  bottom:-40%;
  left:-70%;
  width:48%;
  z-index:1;
  background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.08) 28%,
    rgba(255,255,255,.52) 50%,
    rgba(255,255,255,.10) 72%,
    transparent 100%
  );
  transform:skewX(-18deg);
  opacity:0;
  pointer-events:none;
}

.ed-primary-action:hover::before,
.ed-secondary-action:hover::before,
.ed-search button:hover::before,
.materias-btn:hover::before,
.be-main-btn:hover::before{
  animation:edButtonLight .62s ease forwards;
}

@keyframes edButtonLight{
  0%{
    left:-70%;
    opacity:0;
  }

  18%{
    opacity:.72;
  }

  100%{
    left:124%;
    opacity:0;
  }
}

@keyframes edInviteLight{
  0%, 72%{
    left:-70%;
    opacity:0;
  }

  78%{
    opacity:.28;
  }

  92%{
    left:124%;
    opacity:0;
  }

  100%{
    left:124%;
    opacity:0;
  }
}

.negocio-card,
.materia-list-card,
.be-card{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, filter .22s ease;
}

.negocio-card{
  border-radius:22px;
}

.materia-list-card{
  border-radius:18px;
}

.be-card{
  border-radius:26px;
}

.negocio-card > *,
.materia-list-card > *{
  position:relative;
  z-index:2;
}

.negocio-card:hover,
.materia-list-card:hover,
.be-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 44px rgba(0,42,105,.13);
}

.negocio-card-icon,
.be-card-icon{
  transition:transform .22s ease, filter .22s ease;
}

.negocio-card:hover .negocio-card-icon,
.be-card:hover .be-card-icon{
  transform:translateY(-2px) scale(1.035);
  filter:drop-shadow(0 8px 14px rgba(0,109,255,.18));
}

.negocio-card-arrow,
.materia-list-arrow,
.be-main-btn svg,
.materias-btn svg{
  transition:transform .22s ease;
}

.negocio-card:hover .negocio-card-arrow,
.materia-list-card:hover .materia-list-arrow,
.be-main-btn:hover svg,
.materias-btn:hover svg{
  transform:translateX(4px);
}

.ed-primary-action > *,
.ed-secondary-action > *,
.ed-search button > *,
.materias-btn > *,
.be-main-btn > *{
  position:relative;
  z-index:2;
}

.materias-btn,
.be-main-btn{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease, border-color .22s ease, background .22s ease;
}

.materias-btn:hover,
.be-main-btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.035);
  box-shadow:0 16px 36px rgba(0,109,255,.22);
}

.negocio-card-img,
.be-card-image{
  overflow:hidden;
}

.negocio-card-img{
  border-radius:22px 22px 0 0;
}

.negocio-card-img img,
.materia-list-card img,
.be-card-image img{
  transition:transform .48s ease, filter .32s ease;
}

.negocio-card:hover .negocio-card-img img,
.materia-list-card:hover img,
.be-card:hover .be-card-image img{
  transform:scale(1.03);
  filter:saturate(1.04) contrast(1.03);
}

@keyframes edSoftFloat{
  0%, 100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-6px);
  }
}

@keyframes edBgBreath{
  0%, 100%{
    opacity:.55;
    transform:scale(1);
  }

  50%{
    opacity:.82;
    transform:scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.001ms !important;
  }
}

/* RESPONSIVO */

@media (max-width:1280px){
  .ed-title{
    font-size:48px;
  }

  .ed-needs-grid{
    width:min(100% - 44px, 1320px);
    gap:20px;
  }

  .ed-need-card{
    min-height:166px;
  }
}

@media (max-width:1080px){
  .ed-hero-area{
    min-height:auto;
    padding:18px 18px 48px;
  }

  .ed-hero-grid{
    grid-template-columns:1fr;
    gap:34px;
    padding:44px 10px 0;
  }

  .ed-hero-content{
    order:1;
    width:100%;
    max-width:820px;
    margin:0 auto;
    text-align:center;
  }

  .ed-side-cards{
    order:2;
    width:100%;
    max-width:860px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:12px;
  }

  .ed-side-card{
    grid-template-columns:1fr;
    min-height:138px;
    padding:18px 12px 16px;
    text-align:center;
    justify-items:center;
    align-items:center;
  }

  .ed-side-card > div:not(.ed-side-icon){
    align-items:center;
    text-align:center;
    min-height:auto;
  }

  .ed-side-icon{
    margin:0 auto 2px;
  }

  .ed-title{
    font-size:44px;
  }

  .ed-subtitle{
    margin-left:auto;
    margin-right:auto;
  }

  .ed-search{
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
  }

  .ed-hero-actions{
    justify-content:center;
  }

  .ed-needs{
    padding:46px 0 58px;
  }

  .ed-needs-heading{
    margin-bottom:28px;
  }

  .ed-needs-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
  }

  .ed-need-card{
    min-height:154px;
  }

  .ed-need-icon{
    width:44px;
    height:44px;
  }

  .ed-need-icon svg{
    width:23px;
    height:23px;
  }
}

@media (max-width:760px){
  .ed-hero-area{
    min-height:auto;
    padding:14px 14px 38px;
    background-position:center top;
  }

  .ed-shell{
    width:100%;
  }

  .ed-hero-grid{
    display:flex;
    flex-direction:column;
    gap:26px;
    padding:34px 0 0;
  }

  .ed-hero-content{
    order:1;
    width:100%;
    max-width:430px;
    margin:0 auto;
    padding:0;
    text-align:center;
  }

  .ed-title{
    max-width:410px;
    margin:0 auto;
    font-size:31px;
    line-height:1.08;
    letter-spacing:-1.1px;
  }

  .ed-subtitle{
    max-width:390px;
    margin:16px auto 20px;
    font-size:15.5px;
    line-height:1.48;
  }

  .ed-search{
    width:100%;
    max-width:410px;
    min-height:auto;
    grid-template-columns:1fr;
    gap:12px;
    padding:13px;
    border-width:1.5px;
    border-radius:17px;
    box-shadow:0 0 0 3px rgba(0,121,255,.07), 0 0 16px rgba(0,140,255,.16);
  }

  .ed-search-input-wrap{
    grid-template-columns:24px 1fr;
    gap:10px;
    align-items:start;
    text-align:left;
  }

  .ed-search-icon{
    width:23px;
    height:23px;
    margin-top:4px;
  }

  .ed-search label{
    margin-bottom:5px;
    font-size:14px;
    line-height:1.25;
  }

  .ed-search input{
    min-height:22px;
    font-size:13px;
    line-height:1.3;
  }

  .ed-search input::placeholder{
    font-size:11.5px;
    line-height:1.3;
  }

  .ed-search button{
    width:100%;
    height:46px;
    border-radius:11px;
    font-size:14px;
    gap:9px;
  }

  .ed-search button svg{
    width:18px;
    height:18px;
  }

  .ed-hero-actions{
    width:100%;
    max-width:410px;
    margin:18px auto 0;
    flex-direction:column;
    align-items:stretch;
    gap:11px;
  }

  .ed-primary-action,
  .ed-secondary-action{
    width:100%;
    min-height:51px;
    padding:0 14px;
    border-radius:11px;
    font-size:14px;
    gap:10px;
  }

  .ed-action-icon{
    width:22px;
    height:22px;
  }

  .ed-action-icon svg{
    width:21px;
    height:21px;
  }

  .ed-side-cards{
    order:2;
    width:100%;
    max-width:410px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .ed-side-card{
    grid-template-columns:40px 1fr;
    min-height:96px;
    padding:13px 14px;
    border-radius:13px;
    gap:12px;
    text-align:left;
    justify-items:start;
    align-items:center;
  }

  .ed-side-icon{
    width:38px;
    height:38px;
    flex:0 0 38px;
    justify-self:center;
    align-self:center;
    margin:0;
  }

  .ed-side-icon svg{
    width:18px;
    height:18px;
  }

  .ed-side-card > div:not(.ed-side-icon){
    min-height:58px;
    align-items:flex-start;
    text-align:left;
  }

  .ed-side-card strong{
    margin:0 0 4px;
    font-size:13.2px;
    line-height:1.18;
  }

  .ed-side-card div > span{
    font-size:11.5px;
    line-height:1.32;
  }

  .ed-needs{
    padding:38px 0 46px;
  }

  .ed-needs-heading{
    width:min(100% - 28px, 1320px);
    margin:0 auto 24px;
    padding:0;
  }

  .ed-needs-heading h2{
    font-size:clamp(2rem, 8vw, 2.85rem);
    line-height:1.08;
  }

  .ed-needs-heading p{
    margin-top:10px;
    font-size:1rem;
  }

  .ed-needs-grid{
    width:min(100% - 28px, 1320px);
    grid-template-columns:1fr;
    gap:14px;
  }

  .ed-need-card{
    min-height:158px;
    border-radius:12px;
  }

  .ed-need-icon{
    top:14px;
    left:14px;
    width:44px;
    height:44px;
    border-radius:10px;
  }

  .ed-need-icon svg{
    width:23px;
    height:23px;
  }

  .ed-need-card strong{
    left:18px;
    right:16px;
    bottom:16px;
    font-size:1.28rem;
    line-height:1.12;
  }
}

@media (max-width:480px){
  .ed-hero-area{
    padding:12px 12px 34px;
  }

  .ed-title{
    font-size:28px;
    letter-spacing:-.8px;
  }

  .ed-subtitle{
    font-size:14.5px;
  }

  .ed-search{
    max-width:100%;
    padding:12px;
    border-radius:15px;
  }

  .ed-search label{
    font-size:13.5px;
  }

  .ed-search input::placeholder{
    font-size:11px;
  }

  .ed-primary-action,
  .ed-secondary-action{
    min-height:49px;
    font-size:13.5px;
  }

  .ed-side-cards{
    max-width:100%;
  }

  .ed-side-card{
    grid-template-columns:40px 1fr;
    min-height:94px;
    padding:12px 13px;
    align-items:center;
  }

  .ed-side-icon{
    width:38px;
    height:38px;
    flex:0 0 38px;
    align-self:center;
    justify-self:center;
    margin:0;
  }

  .ed-side-card > div:not(.ed-side-icon){
    min-height:56px;
  }

  .ed-needs{
    padding:34px 0 40px;
  }

  .ed-needs::before{
    width:150px;
    height:95px;
    background-size:20px 20px;
  }

  .ed-needs::after{
    width:140px;
    height:90px;
    background-size:20px 20px;
  }

  .ed-needs-grid{
    gap:12px;
  }

  .ed-need-card{
    min-height:142px;
  }

  .ed-need-icon{
    width:40px;
    height:40px;
  }

  .ed-need-icon svg{
    width:21px;
    height:21px;
  }

  .ed-need-card strong{
    font-size:1.13rem;
  }
}

/* =========================================================
   SECTION: SOLUÇÕES PARA IMPULSIONAR O CRESCIMENTO
   AJUSTADO: FOTOS DE PERFIL NOS 2 PRIMEIROS CARDS + TÍTULOS MAIORES EM CAIXA ALTA
========================================================= */

.ed-growth-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 20px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 0%, rgba(11, 99, 255, 0.06), transparent 22rem),
    radial-gradient(circle at 96% 0%, rgba(139, 77, 255, 0.06), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ed-growth-container {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
}

.ed-growth-header {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.ed-growth-header h2 {
  margin: 0;
  color: #071d4d;
  font-size: clamp(2.2rem, 3.6vw, 3.9rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.ed-growth-header h2 span {
  display: block;
  color: #0b63ff;
  font-weight: 600;
}

.ed-growth-header p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #50617f;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.62;
  font-weight: 400;
}

.ed-growth-header i {
  display: block;
  width: 64px;
  height: 3px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: #0b63ff;
}

.ed-growth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ed-growth-card {
  --growth-rgb: 11, 99, 255;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 28px;
  border-radius: 14px;
  border: 1px solid rgba(var(--growth-rgb), 0.16);
  background: #ffffff;
  color: #071d4d;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(7, 31, 86, 0.075);
  transition:
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.ed-growth-card,
.ed-growth-card:hover,
.ed-growth-card:focus,
.ed-growth-card:active,
.ed-growth-card:visited {
  color: #071d4d;
  text-decoration: none;
}

.ed-growth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 16%, rgba(var(--growth-rgb), 0.14), transparent 17rem),
    radial-gradient(circle at 88% 10%, rgba(var(--growth-rgb), 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(var(--growth-rgb), 0.03), rgba(255, 255, 255, 0));
  transition: opacity 0.28s ease;
}

.ed-growth-card:hover,
.ed-growth-card:focus-visible {
  border-color: rgba(var(--growth-rgb), 0.30);
  background: #ffffff;
  box-shadow:
    0 18px 46px rgba(7, 31, 86, 0.10),
    0 0 0 1px rgba(var(--growth-rgb), 0.08),
    0 0 34px rgba(var(--growth-rgb), 0.10);
  outline: 0;
}

.ed-growth-card:hover::before,
.ed-growth-card:focus-visible::before {
  opacity: 1;
}

.ed-growth-card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
  pointer-events: none;
}

.ed-growth-card-bg::before,
.ed-growth-card-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgb(var(--growth-rgb));
  opacity: 0.055;
  transition: opacity 0.28s ease;
}

.ed-growth-card-bg::before {
  width: 220px;
  height: 220px;
  right: -98px;
  top: -48px;
}

.ed-growth-card-bg::after {
  width: 172px;
  height: 172px;
  right: -42px;
  top: 112px;
}

.ed-growth-card:hover .ed-growth-card-bg::before,
.ed-growth-card:focus-visible .ed-growth-card-bg::before,
.ed-growth-card:hover .ed-growth-card-bg::after,
.ed-growth-card:focus-visible .ed-growth-card-bg::after {
  opacity: 0.09;
}

.ed-growth-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin-bottom: 18px;
}

.ed-growth-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: rgb(var(--growth-rgb));
  background: rgba(var(--growth-rgb), 0.10);
  box-shadow: 0 8px 18px rgba(var(--growth-rgb), 0.07);
  transform: none !important;
  filter: none !important;
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.ed-growth-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transform: none !important;
  filter: none !important;
}

.ed-growth-icon svg path,
.ed-growth-icon svg rect,
.ed-growth-icon svg circle,
.ed-growth-icon svg line,
.ed-growth-icon svg polyline,
.ed-growth-icon svg polygon {
  vector-effect: non-scaling-stroke;
  transform: none !important;
}

.ed-growth-card:hover .ed-growth-icon,
.ed-growth-card:focus-visible .ed-growth-icon {
  background: rgba(var(--growth-rgb), 0.15);
  box-shadow:
    0 10px 24px rgba(var(--growth-rgb), 0.12),
    0 0 18px rgba(var(--growth-rgb), 0.09);
  transform: none !important;
  filter: none !important;
}

.ed-growth-profile-avatar {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(var(--growth-rgb), 0.08);
  border: 3px solid rgba(var(--growth-rgb), 0.14);
  box-shadow:
    0 10px 24px rgba(7, 31, 86, 0.10),
    0 0 0 6px rgba(var(--growth-rgb), 0.05);
  transform: none;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.ed-growth-profile-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.ed-growth-card:hover .ed-growth-profile-avatar,
.ed-growth-card:focus-visible .ed-growth-profile-avatar {
  border-color: rgba(var(--growth-rgb), 0.24);
  box-shadow:
    0 14px 30px rgba(7, 31, 86, 0.13),
    0 0 0 7px rgba(var(--growth-rgb), 0.07);
  transform: translateY(-1px);
}

.ed-growth-title-row h3 {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #071d4d;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  white-space: normal;
}

.ed-growth-line {
  width: 38px;
  height: 3px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgb(var(--growth-rgb));
  transition:
    width 0.24s ease,
    box-shadow 0.24s ease;
}

.ed-growth-card:hover .ed-growth-line,
.ed-growth-card:focus-visible .ed-growth-line {
  width: 52px;
  box-shadow: 0 0 14px rgba(var(--growth-rgb), 0.18);
}

.ed-growth-card > p {
  margin: 0;
  color: #42536f;
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 400;
}

.ed-growth-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.ed-growth-card li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 24px;
  padding-left: 30px;
  color: #41516c;
  font-size: 0.94rem;
  line-height: 1.4;
  font-weight: 400;
}

.ed-growth-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgb(var(--growth-rgb));
  color: rgb(var(--growth-rgb));
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 600;
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.ed-growth-card:hover li::before,
.ed-growth-card:focus-visible li::before {
  background: rgba(var(--growth-rgb), 0.08);
  box-shadow: 0 0 12px rgba(var(--growth-rgb), 0.10);
}

.ed-growth-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 10px;
  background: rgba(var(--growth-rgb), 0.10);
  color: rgb(var(--growth-rgb));
  font-size: 0.96rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.ed-growth-card:hover .ed-growth-button,
.ed-growth-card:focus-visible .ed-growth-button {
  background: rgba(var(--growth-rgb), 0.15);
  box-shadow: inset 0 0 0 1px rgba(var(--growth-rgb), 0.08);
}

.ed-growth-card-blue {
  --growth-rgb: 11, 99, 255;
}

.ed-growth-card-green {
  --growth-rgb: 24, 167, 25;
}

.ed-growth-card-purple {
  --growth-rgb: 139, 34, 232;
}

.negocios-section,
.materias-section {
  display: none !important;
}

@media (max-width: 1180px) {
  .ed-growth-container {
    width: min(100% - 40px, 1320px);
  }

  .ed-growth-grid {
    gap: 20px;
  }

  .ed-growth-card {
    min-height: 400px;
    padding: 26px 22px 24px;
  }

  .ed-growth-title-row {
    gap: 13px;
  }

  .ed-growth-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .ed-growth-icon svg {
    width: 30px;
    height: 30px;
  }

  .ed-growth-profile-avatar {
    width: 66px;
    height: 66px;
  }

  .ed-growth-title-row h3 {
    font-size: clamp(1.12rem, 1.24vw, 1.34rem);
    line-height: 1.1;
  }
}

@media (max-width: 980px) {
  .ed-growth-grid {
    grid-template-columns: 1fr;
  }

  .ed-growth-card {
    min-height: auto;
  }

  .ed-growth-title-row h3 {
    white-space: normal;
    font-size: 1.42rem;
  }
}

@media (max-width: 620px) {
  .ed-growth-section {
    padding: 42px 0 50px;
  }

  .ed-growth-container {
    width: min(100% - 28px, 1320px);
  }

  .ed-growth-header {
    margin-bottom: 28px;
  }

  .ed-growth-header h2 {
    font-size: clamp(1.72rem, 8vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .ed-growth-card {
    padding: 22px 18px 20px;
    border-radius: 13px;
  }

  .ed-growth-title-row {
    align-items: center;
    gap: 12px;
  }

  .ed-growth-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .ed-growth-icon svg {
    width: 28px;
    height: 28px;
  }

  .ed-growth-profile-avatar {
    width: 62px;
    height: 62px;
    border-width: 2px;
    box-shadow:
      0 8px 18px rgba(7, 31, 86, 0.10),
      0 0 0 5px rgba(var(--growth-rgb), 0.05);
  }

  .ed-growth-title-row h3 {
    font-size: 1.22rem;
    line-height: 1.12;
    text-transform: uppercase;
    white-space: normal;
  }

  .ed-growth-card > p {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .ed-growth-card li {
    font-size: 0.92rem;
  }

  .ed-growth-button {
    min-height: 46px;
    font-size: 0.94rem;
  }
}

/* =========================================================
   CTA DO BANNER: BUSCAR CONSULTOR CREDENCIADO
========================================================= */

.ed-consultant-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 18px 20px 18px 24px;
  border: 2px solid rgba(39, 163, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 0 0 4px rgba(0, 121, 255, 0.08),
    0 0 20px rgba(0, 140, 255, 0.20);
}

.ed-consultant-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.75;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 109, 255, 0.10), transparent 18rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 255, 0.96));
  pointer-events: none;
}

.ed-consultant-cta__content {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ed-consultant-cta__icon {
  width: 32px;
  height: 32px;
  color: #101c35;
  opacity: 0.82;
}

.ed-consultant-cta__text {
  min-width: 0;
}

.ed-consultant-cta__text strong {
  display: block;
  margin: 0 0 6px;
  color: #26334d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.ed-consultant-cta__text span {
  display: block;
  color: #5f6c82;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}

.ed-consultant-cta__button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #006dff, #005cff);
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 91, 255, 0.22);
  transition:
    filter 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.ed-consultant-cta__button,
.ed-consultant-cta__button:hover,
.ed-consultant-cta__button:focus,
.ed-consultant-cta__button:active,
.ed-consultant-cta__button:visited {
  color: #ffffff;
  text-decoration: none;
}

.ed-consultant-cta__button::before {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 48%;
  z-index: 1;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 28%,
    rgba(255, 255, 255, 0.48) 50%,
    rgba(255, 255, 255, 0.10) 72%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.ed-consultant-cta__button:hover,
.ed-consultant-cta__button:focus-visible {
  filter: brightness(1.035);
  box-shadow: 0 14px 30px rgba(0, 109, 255, 0.24);
  outline: 0;
}

.ed-consultant-cta__button:hover::before,
.ed-consultant-cta__button:focus-visible::before {
  animation: edConsultantButtonLight 0.62s ease forwards;
}

.ed-consultant-cta__button svg,
.ed-consultant-cta__button span {
  position: relative;
  z-index: 2;
}

.ed-consultant-cta__button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.22s ease;
}

.ed-consultant-cta__button:hover svg,
.ed-consultant-cta__button:focus-visible svg {
  transform: translateX(4px);
}

@keyframes edConsultantButtonLight {
  0% {
    left: -70%;
    opacity: 0;
  }

  18% {
    opacity: 0.72;
  }

  100% {
    left: 124%;
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .ed-consultant-cta {
    max-width: 410px;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px auto 0;
    padding: 14px;
    border-width: 1.5px;
    border-radius: 17px;
    box-shadow:
      0 0 0 3px rgba(0, 121, 255, 0.07),
      0 0 16px rgba(0, 140, 255, 0.16);
  }

  .ed-consultant-cta__content {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
  }

  .ed-consultant-cta__icon {
    width: 25px;
    height: 25px;
    margin-top: 2px;
  }

  .ed-consultant-cta__text strong {
    font-size: 14px;
    line-height: 1.28;
  }

  .ed-consultant-cta__text span {
    font-size: 12px;
  }

  .ed-consultant-cta__button {
    width: 100%;
    min-height: 46px;
    border-radius: 11px;
    font-size: 14px;
  }
}

