:root{
  --ed-blue:#006dff;
  --ed-blue-2:#00a3ff;
  --ed-dark:#020711;
  --ed-dark-2:#061528;
  --ed-text:#ffffff;
  --ed-muted:rgba(255,255,255,.78);
  --ed-line:rgba(130,190,255,.25);
  --ed-card:rgba(8,21,39,.72);
  --ed-card-2:rgba(4,15,30,.88);
  --ed-border:rgba(120,190,255,.32);
  --ed-glow:0 0 34px rgba(0,123,255,.45);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  background:#020711;
  color:#111827;
}

.ed-home{
  position:relative;
  overflow:hidden;
  background:#000f25;
  color:var(--ed-text);
}

.ed-hero-area{
  position:relative;
  overflow:hidden;
  min-height:760px;
  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%, rgb(0 0 0 / 72%) 100%),
    url(../../images/banners/banner-verde.png) left center / cover no-repeat;
  color:var(--ed-text);
  padding:22px 22px 30px;
}

.ed-hero-area::before{
  content:"";
  position:absolute;
  inset:0;
  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%);
  pointer-events:none;
  z-index:1;
}

.ed-hero-area::after{
  content:"";
  position:absolute;
  inset:0;
  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;
  opacity:.06;
  mask-image:linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  pointer-events:none;
  z-index:2;
}

.ed-shell{
  position:relative;
  z-index:3;
  width:100%;
  max-width:1340px;
  margin:0 auto;
}

.ed-topbar{
  min-height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:10px 24px;
  border:1px solid rgba(130,190,255,.23);
  border-radius:14px;
  background:rgba(3,9,18,.52);
  backdrop-filter:blur(10px);
  box-shadow:0 14px 38px rgba(0,0,0,.22);
}

.ed-brand-area{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:22px;
  min-width:0;
  flex:0 1 auto;
}

.ed-logo-link{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-decoration:none;
  flex:0 0 auto;
}

.ed-logo-img{
  display:block;
  width:290px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.24));
}

.ed-brand-divider{
  width:1px;
  min-height:58px;
  background:rgba(255,255,255,.34);
  flex:0 0 auto;
}

.ed-brand-copy{
  width:270px;
  max-width:270px;
  padding-top:2px;
}

.ed-brand-copy strong{
  display:block;
  color:#fff;
  font-size:16px;
  line-height:1.22;
  font-weight:900;
  margin-bottom:7px;
  letter-spacing:-.3px;
}

.ed-brand-copy span{
  display:block;
  color:rgba(255,255,255,.82);
  font-size:12px;
  line-height:1.42;
  font-weight:500;
}

.ed-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  flex:1 1 auto;
  min-width:0;
}

.ed-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  line-height:1;
  font-weight:700;
  white-space:nowrap;
  opacity:.96;
  transition:.2s ease;
}

.ed-nav a:hover{
  color:#5db5ff;
}

.ed-nav a.is-active::after{
  content:"";
  position:absolute;
  left:6px;
  right:6px;
  bottom:-18px;
  height:2px;
  border-radius:50px;
  background:linear-gradient(90deg, var(--ed-blue), var(--ed-blue-2));
  box-shadow:0 0 14px rgba(0,145,255,.8);
}

.ed-start-btn{
  min-height:48px;
  padding:0 25px;
  border-radius:8px;
  background:linear-gradient(135deg, #0074ff, #005cff);
  color:#fff !important;
  box-shadow:0 12px 30px rgba(0,96,255,.36);
}

.ed-start-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 34px rgba(0,120,255,.46);
}

.ed-hero-grid{
  display:grid;
  grid-template-columns:330px minmax(0,1fr);
  gap:36px;
  align-items:start;
  padding:25px 0px 0;
}

.ed-side-cards{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:214px;
  margin-left:0;
}

.ed-side-card{
  text-decoration:none;
  color:#fff;
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.ed-side-card:hover{
  transform:translateY(-2px);
  border-color:rgba(53,169,255,.72);
  background:rgba(12,28,52,.62);
  box-shadow:0 16px 34px rgba(0,88,255,.20);
}

.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{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:12px;
  align-items:center;
  min-height:96px;
  padding:14px 14px;
  border:1px solid rgba(190,220,255,.22);
  border-radius:12px;
  background:rgba(12,21,32,.52);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.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;
}

.ed-side-icon svg{
  width:19px;
  height:19px;
  display:block;
  margin:0;
}

.ed-side-icon svg,
.ed-side-icon svg path,
.ed-side-icon svg rect,
.ed-side-icon svg circle,
.ed-side-icon svg line,
.ed-side-icon svg polyline,
.ed-side-icon svg polygon{
  stroke-width:1.65;
  vector-effect:non-scaling-stroke;
}

.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;
  color:#fff;
  font-size:14px;
  line-height:1.12;
  font-weight:800;
  margin:0 0 6px;
}

.ed-side-card 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;
  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:900;
}

.ed-search{
  width:100%;
  display:grid;
  grid-template-columns:1fr 200px;
  align-items:center;
  gap:16px;
  min-height:106px;
  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);
}

.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;
  color:#26334d;
  font-size:16px;
  font-weight:600;
  margin-bottom:8px;
}

.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{
  height:56px;
  border:0;
  border-radius:10px;
  background:linear-gradient(135deg, #006dff, #005cff);
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  box-shadow:0 10px 22px rgba(0,91,255,.22);
  transition:.2s ease;
}

.ed-search button:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(0,115,255,.30);
}

.ed-search button svg{
  width:21px;
  height:21px;
}

.ed-hero-actions{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:35px;
}

.ed-primary-action,
.ed-secondary-action{
  min-height:66px;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  transition:.2s ease;
}

.ed-primary-action{
  width:322px;
  background:linear-gradient(135deg, #006dff, #0060f3);
  color:#fff;
  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);
  color:#fff;
}

.ed-primary-action:hover,
.ed-secondary-action:hover{
  transform:translateY(-1px);
}

.ed-action-icon{
  width:27px;
  height:27px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.ed-action-icon svg{
  width:25px;
  height:25px;
}

.ed-needs{
  max-width:1180px;
  margin:0 auto;
  padding:34px 0 38px;
  background:#000f25;
}

.ed-needs-title{
  display:flex;
  align-items:center;
  gap:13px;
  color:#fff;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:16px;
}

.ed-needs-title::before{
  content:"";
  width:27px;
  height:2px;
  border-radius:50px;
  background:linear-gradient(90deg, var(--ed-blue), var(--ed-blue-2));
  box-shadow:0 0 12px rgba(0,139,255,.9);
}

.ed-needs-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:18px;
}

.ed-need-card{
  min-height:202px;
  padding:27px 18px 20px;
  border:1px solid rgba(120,190,255,.33);
  border-radius:12px;
  background:linear-gradient(180deg, rgba(11,30,52,.76), rgba(2,13,29,.82));
  text-decoration:none;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  text-align:center;
  box-shadow:0 18px 42px rgba(0,0,0,.18);
  transition:.2s ease;
}

.ed-need-card:hover{
  transform:translateY(-3px);
  border-color:rgba(53,169,255,.75);
  box-shadow:0 22px 46px rgba(0,88,255,.20);
}

.ed-need-card svg{
  width:48px;
  height:48px;
}

.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;
}

.ed-need-card svg,
.ed-need-card svg path,
.ed-need-card svg rect,
.ed-need-card svg circle{
  stroke-width:1.55;
}

.ed-need-card strong{
  display:block;
  color:#fff;
  font-size:18px;
  line-height:1.18;
  text-shadow:0 7px 16px rgba(0,0,0,.35);
  min-height:45px;
}

.ed-need-arrow{
  width:27px;
  height:27px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.88);
  border-radius:50%;
  color:#fff;
  font-size:18px;
  line-height:1;
}

.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;
}

@media (max-width:1280px){
  .ed-logo-img{
    width:250px;
  }

  .ed-brand-copy{
    width:230px;
    max-width:230px;
  }

  .ed-brand-copy strong{
    font-size:15px;
  }

  .ed-brand-copy span{
    font-size:11px;
  }

  .ed-nav{
    gap:18px;
  }

  .ed-nav a{
    font-size:13px;
  }

  .ed-start-btn{
    padding:0 18px;
  }

  .ed-title{
    font-size:48px;
  }

  .ed-needs-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}

@media (max-width:1080px){
  .ed-hero-area{
    min-height:auto;
    padding:18px 18px 48px;
  }

  .ed-topbar{
    min-height:auto;
    align-items:flex-start;
    flex-direction:column;
    justify-content:flex-start;
    gap:18px;
  }

  .ed-brand-area{
    width:100%;
  }

  .ed-logo-img{
    width:260px;
  }

  .ed-brand-copy{
    width:auto;
    max-width:360px;
  }

  .ed-brand-copy strong{
    font-size:18px;
  }

  .ed-brand-copy span{
    font-size:13px;
  }

  .ed-nav{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:16px 24px;
  }

  .ed-nav a.is-active::after{
    bottom:-8px;
  }

  .ed-start-btn{
    min-height:44px;
    padding:0 22px;
  }

  .ed-hero-grid{
    grid-template-columns:1fr;
    gap:34px;
    padding:44px 10px 0;
  }

  .ed-hero-content{
    order:1;
    margin:0 auto;
    max-width:820px;
    width:100%;
    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;
    text-align:center;
    justify-items:center;
    align-items:center;
    min-height:138px;
    padding:18px 12px 16px;
  }

  .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{
    margin-left:auto;
    margin-right:auto;
    max-width:760px;
  }

  .ed-hero-actions{
    justify-content:center;
  }

  .ed-needs{
    padding-left:0;
  }

  .ed-needs-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:760px){
  .ed-hero-area{
    min-height:auto;
    padding:14px 14px 38px;
    background-position:center top;
  }

  .ed-shell{
    width:100%;
  }

  .ed-topbar{
    width:100%;
    max-width:430px;
    margin:0 auto;
    padding:18px 16px;
    border-radius:14px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    text-align:center;
  }

  .ed-brand-area{
    width:100%;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:12px;
  }

  .ed-logo-link{
    justify-content:center;
    width:100%;
  }

  .ed-logo-img{
    width:235px;
    margin:0 auto;
  }

  .ed-brand-divider{
    width:86%;
    min-height:1px;
    height:1px;
    background:rgba(255,255,255,.24);
  }

  .ed-brand-copy{
    width:100%;
    max-width:330px;
    padding-top:0;
  }

  .ed-brand-copy strong{
    font-size:16px;
    line-height:1.22;
    margin-bottom:6px;
  }

  .ed-brand-copy span{
    font-size:12.5px;
    line-height:1.38;
  }

  .ed-nav{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
  }

  .ed-nav a{
    min-height:38px;
    padding:0 10px;
    border:1px solid rgba(130,190,255,.20);
    border-radius:10px;
    background:rgba(2,11,24,.32);
    font-size:12px;
  }

  .ed-nav a.is-active::after{
    display:none;
  }

  .ed-start-btn{
    grid-column:1 / -1;
    min-height:42px;
    border-radius:10px;
    font-size:13px !important;
  }

  .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{
    font-size:31px;
    line-height:1.08;
    letter-spacing:-1.1px;
    max-width:410px;
    margin:0 auto;
  }

  .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-radius:17px;
    border-width:1.5px;
    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{
    font-size:14px;
    line-height:1.25;
    margin-bottom:5px;
  }

  .ed-search input{
    font-size:13px;
    line-height:1.3;
    min-height:22px;
  }

  .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;
    border-radius:11px;
    font-size:14px;
    gap:10px;
    padding:0 14px;
  }

  .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;
    text-align:left;
    justify-items:start;
    align-items:center;
    min-height:96px;
    padding:13px 14px;
    border-radius:13px;
    gap:12px;
  }

  .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){
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    text-align:left;
    min-height:58px;
  }

  .ed-side-card strong{
    font-size:13.2px;
    line-height:1.18;
    margin:0 0 4px;
  }

  .ed-side-card span{
    font-size:11.5px;
    line-height:1.32;
  }

  .ed-needs{
    width:100%;
    max-width:430px;
    padding:30px 14px 34px;
    margin:0 auto;
  }

  .ed-needs-title{
    justify-content:center;
    text-align:center;
    font-size:13px;
    margin-bottom:15px;
  }

  .ed-needs-title::before{
    width:24px;
  }

  .ed-needs-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .ed-need-card{
    min-height:150px;
    padding:20px 12px 15px;
    border-radius:13px;
  }

  .ed-need-card svg{
    width:38px;
    height:38px;
  }

  .ed-need-card strong{
    font-size:14.5px;
    line-height:1.18;
    min-height:38px;
  }

  .ed-need-arrow{
    width:25px;
    height:25px;
    font-size:17px;
  }
}

@media (max-width:480px){
  .ed-hero-area{
    padding:12px 12px 34px;
  }

  .ed-topbar{
    max-width:100%;
    padding:16px 14px;
  }

  .ed-logo-img{
    width:220px;
  }

  .ed-brand-copy strong{
    font-size:15.2px;
  }

  .ed-brand-copy span{
    font-size:12px;
  }

  .ed-nav{
    gap:8px;
  }

  .ed-nav a{
    min-height:36px;
    font-size:11.5px;
    padding:0 8px;
  }

  .ed-hero-content{
    max-width:100%;
  }

  .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{
    max-width:100%;
    padding:28px 12px 32px;
  }

  .ed-needs-grid{
    grid-template-columns:1fr;
    gap:11px;
  }

  .ed-need-card{
    min-height:132px;
    padding:18px 14px 14px;
  }

  .ed-need-card svg{
    width:36px;
    height:36px;
  }

  .ed-need-card strong{
    font-size:15px;
    min-height:auto;
  }
}