
:root{
  --bg:#04191b;
  --bg2:#062629;
  --panel:#082f33;
  --panel2:#07383c;
  --line:rgba(50,220,205,.22);
  --accent:#23c7b8;
  --accent2:#7df5e8;
  --text:#f4fbfb;
  --muted:#bed6d7;
  --soft:rgba(255,255,255,.06);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:
    radial-gradient(circle at 72% 14%, rgba(35,199,184,.24), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(35,199,184,.12), transparent 32%),
    linear-gradient(180deg,#021113 0%,#04191b 45%,#052326 100%);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,92%);margin:auto}
.nav{
  position:sticky;top:0;z-index:20;
  background:rgba(2,17,19,.86);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:18px 0}
.brand{font-size:23px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}
.menu{display:flex;gap:28px;align-items:center;color:#e7fafa;font-size:15px}
.menu a{position:relative}
.menu a:hover{color:var(--accent2)}
.menu a.active:after,.menu a:hover:after{
  content:"";position:absolute;left:0;right:0;bottom:-18px;height:3px;background:var(--accent);
}
.nav-toggle,.menu-button{display:none}
.hero{
  min-height:690px;
  display:grid;
  grid-template-columns:1fr .86fr;
  align-items:center;
  gap:40px;
  padding:58px 0 0;
  position:relative;
}
.hero:after{
  content:"";
  position:absolute;right:0;top:70px;width:48%;height:78%;
  background:
    linear-gradient(135deg,transparent 30%,rgba(35,199,184,.14)),
    repeating-linear-gradient(135deg,rgba(255,255,255,.035) 0 1px,transparent 1px 18px);
  opacity:.75;z-index:-1;border-radius:28px;
}
.kicker{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:14px;
  font-weight:700;
  margin-bottom:26px;
}
h1{
  font-size:clamp(42px,5.3vw,70px);
  line-height:1.05;
  margin:0 0 24px;
  letter-spacing:0;
  text-transform:uppercase;
}
h1 span{display:block;color:var(--accent)}
.lead{font-size:19px;line-height:1.62;color:#d9eeee;max-width:650px}
.actions{display:flex;gap:18px;flex-wrap:wrap;margin:32px 0}
.btn{
  min-height:52px;padding:0 22px;border-radius:8px;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:800;text-transform:uppercase;font-size:14px;letter-spacing:.035em;
  border:1px solid rgba(125,245,232,.35);
}
.btn.primary{background:linear-gradient(135deg,#20bdae,#09877e);color:#fff;box-shadow:0 14px 34px rgba(35,199,184,.18)}
.btn.secondary{background:rgba(0,0,0,.16);color:#fff}
.contact-line{display:flex;flex-wrap:wrap;gap:24px;color:#dff7f6;margin-top:22px}
.contact-line span{color:var(--accent);font-weight:900;margin-right:8px}
.hero-img{align-self:end;display:flex;justify-content:center;position:relative}
.hero-img:before{
  content:"";position:absolute;width:440px;height:440px;border-radius:50%;
  background:radial-gradient(circle,rgba(35,199,184,.24),transparent 70%);
  filter:blur(10px);bottom:30px;
}
.hero-img img{
  position:relative;max-height:650px;max-width:100%;object-fit:contain;
  filter:drop-shadow(0 30px 52px rgba(0,0,0,.45));
  background:transparent;
}
.section{padding:70px 0;border-top:1px solid rgba(125,245,232,.12)}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:34px}
h2{
  margin:0;
  font-size:clamp(30px,4vw,44px);
  text-transform:uppercase;
  letter-spacing:0;
}
.underline{width:78px;height:4px;background:var(--accent);margin-top:12px}
.section p{color:var(--muted);line-height:1.68}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.grid.three{grid-template-columns:repeat(3,1fr)}
.card{
  background:linear-gradient(180deg,rgba(8,47,51,.76),rgba(4,25,27,.82));
  border:1px solid var(--line);
  border-radius:12px;
  padding:25px;
  min-height:185px;
}
.card .icon{font-size:36px;color:var(--accent);margin-bottom:18px}
.card h2,.card h3{margin:0 0 10px;font-size:19px;text-transform:none}
.card p,.card li{font-size:15px;color:var(--muted)}
.timeline{display:grid;gap:16px}
.client{
  display:grid;grid-template-columns:220px 1fr;
  gap:26px;padding:24px;
  border:1px solid var(--line);border-radius:12px;
  background:rgba(255,255,255,.045);
}
.client h2,.client strong{display:block;margin:0;font-size:19px;color:#fff;text-transform:none}
.client small{display:block;color:var(--accent2);margin-top:8px;font-weight:700}
.tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.tag{padding:9px 12px;border:1px solid rgba(35,199,184,.30);border-radius:999px;color:#dffdfa;background:rgba(35,199,184,.08);font-weight:700;font-size:13px}
.footer{padding:42px 0;background:#020f10;border-top:1px solid var(--line);color:var(--muted)}
.footer strong{color:#fff}
@media(max-width:960px){
  .menu{display:none}
  .hero{grid-template-columns:1fr;padding-top:44px}
  .hero-img{order:-1}
  .hero-img img{max-height:520px}
  .grid,.grid.three{grid-template-columns:1fr}
  .client{grid-template-columns:1fr}
  .section-head{display:block}
}


/* Index conforme referencia visual enviada */
body.home-page{
  min-height:100vh;
  background:
    radial-gradient(circle at 67% 17%, rgba(31,178,170,.24), transparent 28%),
    radial-gradient(circle at 19% 58%, rgba(20,134,130,.18), transparent 35%),
    linear-gradient(180deg,#031113 0%,#042327 62%,#05383b 100%);
}
.home-page .container{
  width:min(1360px,88.5%);
}
.home-page .nav{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(1,16,18,.9);
  border-bottom:1px solid rgba(125,245,232,.14);
  backdrop-filter:blur(16px);
}
.home-page .nav .container{
  width:min(1460px,95%);
}
.home-page .nav-inner{
  min-height:67px;
  padding:0;
}
.home-page .brand{
  font-size:22px;
  font-weight:500;
  letter-spacing:.22em;
}
.home-page .menu{
  gap:38px;
  font-size:16px;
  color:#fff;
}
.home-page .menu a{
  padding:26px 0 24px;
}
.home-page .menu a.active:after,
.home-page .menu a:hover:after{
  bottom:10px;
  height:2px;
  background:#24cfc0;
}
.home-page .hero{
  display:block;
  min-height:642px;
  padding:0;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(125,245,232,.16);
}
.home-page .hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 52%, rgba(31,178,170,.18), transparent 29%),
    linear-gradient(90deg, rgba(1,18,20,.2), rgba(0,0,0,0) 42%),
    repeating-radial-gradient(circle at 74% 50%, rgba(125,245,232,.11) 0 1px, transparent 1px 13px);
  opacity:.46;
  pointer-events:none;
}
.home-page .hero:after{
  content:"";
  position:absolute;
  right:-50px;
  top:86px;
  width:42%;
  height:420px;
  background:
    linear-gradient(39deg, transparent 0 43%, rgba(35,199,184,.24) 43.2% 43.6%, transparent 43.8%),
    linear-gradient(139deg, transparent 0 51%, rgba(35,199,184,.22) 51.2% 51.6%, transparent 51.8%),
    linear-gradient(95deg, transparent 0 61%, rgba(35,199,184,.18) 61.2% 61.6%, transparent 61.8%),
    radial-gradient(circle at 84% 52%, #18a99f 0 3px, transparent 4px),
    radial-gradient(circle at 65% 68%, #138d87 0 3px, transparent 4px),
    radial-gradient(circle at 44% 44%, #148e88 0 2px, transparent 3px),
    radial-gradient(circle at 79% 80%, #148e88 0 3px, transparent 4px);
  opacity:.62;
  pointer-events:none;
}
.home-page .hero-inner{
  min-height:642px;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:36px;
  position:relative;
  z-index:1;
}
.home-page .hero-copy{
  padding-top:5px;
}
.home-page .kicker{
  margin:0 0 28px;
  color:#22d0c3;
  font-size:15px;
  font-weight:500;
  letter-spacing:.09em;
}
.home-page h1{
  max-width:690px;
  margin:0;
  font-size:clamp(40px,4.3vw,57px);
  line-height:1.25;
  font-weight:900;
  letter-spacing:0;
  text-shadow:0 4px 14px rgba(0,0,0,.38);
}
.home-page h1 span{
  display:block;
  color:#2fc9bd;
}
.title-mark{
  width:55px;
  height:4px;
  margin:18px 0 22px;
  background:#2ed4c7;
  box-shadow:20px 0 0 rgba(46,212,199,.28);
}
.home-page .lead{
  max-width:610px;
  margin:0;
  color:#e2eeee;
  font-size:20px;
  line-height:1.42;
}
.home-page .actions{
  align-items:center;
  gap:24px;
  margin:36px 0 30px;
}
.home-page .btn{
  min-width:256px;
  min-height:49px;
  gap:12px;
  padding:0 20px;
  border-radius:6px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0;
  border-color:#20beb2;
}
.home-page .btn svg{
  width:17px;
  height:17px;
  flex:0 0 auto;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.home-page .btn.primary{
  background:linear-gradient(135deg,#1bbcad 0%,#079488 100%);
  box-shadow:0 16px 34px rgba(0,0,0,.16);
}
.home-page .btn.secondary{
  background:rgba(0,18,20,.18);
}
.home-page .contact-line{
  gap:24px;
  margin-top:8px;
  padding-bottom:24px;
  color:#dbeaea;
  font-size:16px;
}
.home-page .contact-line div{
  display:flex;
  align-items:center;
  gap:12px;
}
.home-page .contact-line div + div{
  padding-left:22px;
  border-left:1px solid rgba(35,199,184,.66);
}
.home-page .contact-line svg{
  width:20px;
  height:20px;
  flex:0 0 auto;
  fill:none;
  stroke:#23c7b8;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.home-page .hero-visual{
  align-self:end;
  justify-self:start;
  width:min(665px,100%);
  height:642px;
  position:relative;
  overflow:hidden;
}
.home-page .hero-visual img{
  position:absolute;
  right:0;
  bottom:0;
  width:665px;
  max-width:none;
  height:auto;
  display:block;
  filter:none;
}
.about-home{
  background:
    radial-gradient(circle at 22% 28%, rgba(35,199,184,.18), transparent 24%),
    linear-gradient(180deg,#073f42 0%,#053236 100%);
  border-top:1px solid rgba(125,245,232,.18);
  padding:50px 0 52px;
}
.about-grid{
  display:grid;
  grid-template-columns:.74fr 1.26fr;
  gap:46px;
  align-items:start;
}
.about-copy h2{
  margin-top:-4px;
  font-size:34px;
  line-height:1.18;
  letter-spacing:0;
}
.about-copy .underline{
  width:56px;
  height:4px;
  margin:10px 0 18px;
}
.about-copy p{
  max-width:510px;
  margin:0 0 17px;
  color:#e3eeee;
  font-size:14px;
  line-height:1.55;
}
.about-home .about-copy .actions{
  margin:22px 0 0;
}
.about-home .about-copy .btn{
  min-width:236px;
}
.about-cards{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  padding-top:6px;
}
.about-card{
  min-height:239px;
  text-align:center;
  padding:26px 19px 22px;
  border-radius:8px;
  border:1px solid rgba(35,199,184,.34);
  background:rgba(3,23,25,.35);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
.about-card .icon{
  width:54px;
  height:54px;
  margin:0 auto 20px;
  color:#23c7b8;
}
.about-card .icon svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.about-card h3{
  margin:0 0 11px;
  font-size:16px;
  text-transform:uppercase;
}
.about-card strong{
  display:block;
  min-height:40px;
  color:#fff;
  font-size:16px;
  line-height:1.35;
  font-weight:500;
}
.about-card p{
  margin:0;
  color:#d7e4e4;
  font-size:14px;
  line-height:1.5;
}
@media(max-width:1180px){
  .home-page .menu{gap:22px}
  .home-page .hero-inner{grid-template-columns:1fr .82fr}
  .home-page .hero-visual img{right:-22px}
  .about-grid{grid-template-columns:1fr}
  .about-cards{grid-template-columns:repeat(4,minmax(150px,1fr))}
}
@media(max-width:960px){
  .home-page .container,
  .home-page .nav .container{width:min(680px,90%)}
  .home-page .nav-inner{min-height:64px}
  .home-page .hero{min-height:auto}
  .home-page .hero-inner{
    min-height:0;
    display:flex;
    flex-direction:column;
    gap:0;
    padding:44px 0 36px;
  }
  .home-page .hero-visual{
    order:-1;
    width:100%;
    height:430px;
    justify-self:center;
  }
  .home-page .hero-visual img{
    left:50%;
    right:auto;
    bottom:0;
    width:480px;
    transform:translateX(-50%);
  }
  .home-page .hero-copy{width:100%;padding-top:28px}
  .home-page h1{font-size:clamp(36px,8vw,54px)}
  .home-page .lead{font-size:18px}
  .home-page .about-cards{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
  .home-page .container,
  .home-page .nav .container{width:min(440px,90%)}
  .home-page .brand{font-size:17px;letter-spacing:.16em}
  .home-page .hero-inner{padding-top:28px}
  .home-page .hero-visual{height:345px}
  .home-page .hero-visual img{width:374px;bottom:0}
  .home-page .kicker{font-size:12px;line-height:1.6}
  .home-page h1{font-size:34px;line-height:1.18}
  .home-page .lead{font-size:16px}
  .home-page .actions{gap:14px;margin:28px 0 24px}
  .home-page .btn{width:100%;min-width:0}
  .home-page .contact-line{display:grid;gap:14px;font-size:15px}
  .home-page .contact-line div + div{padding-left:0;border-left:0}
  .about-home{padding:42px 0}
  .home-page .about-cards{grid-template-columns:1fr}
}

@media(max-width:960px){
  .nav-inner,
  .home-page .nav-inner{
    min-height:auto;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:12px;
    padding:14px 0 12px;
  }
  .menu,
  .home-page .menu{
    display:flex;
    width:100%;
    flex-wrap:wrap;
    gap:8px 16px;
    font-size:14px;
  }
  .menu a,
  .home-page .menu a{
    padding:5px 0 7px;
  }
  .menu a.active:after,
  .menu a:hover:after,
  .home-page .menu a.active:after,
  .home-page .menu a:hover:after{
    bottom:0;
    height:2px;
  }
}

@media(max-width:420px){
  .brand,
  .home-page .brand{
    font-size:15px;
    letter-spacing:.12em;
  }
  .menu,
  .home-page .menu{
    gap:7px 12px;
    font-size:13px;
  }
}

@media(max-width:720px){
  .nav,
  .home-page .nav{
    position:sticky;
    overflow:visible;
  }
  .nav-inner,
  .home-page .nav-inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:18px 0;
  }
  .brand,
  .home-page .brand{
    max-width:calc(100% - 56px);
    font-size:clamp(17px,5vw,24px);
    line-height:1.25;
  }
  .nav-toggle{
    position:absolute;
    width:1px;
    height:1px;
    opacity:0;
    pointer-events:none;
  }
  .menu-button{
    width:42px;
    height:42px;
    border:1px solid rgba(35,199,184,.4);
    border-radius:6px;
    display:inline-flex;
    flex:0 0 auto;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    color:#fff;
    background:rgba(0,18,20,.45);
    cursor:pointer;
  }
  .menu-button span{
    width:20px;
    height:2px;
    border-radius:2px;
    background:#fff;
    transition:transform .2s ease,opacity .2s ease;
  }
  .menu,
  .home-page .menu{
    position:fixed;
    top:0;
    right:0;
    z-index:40;
    width:min(285px,78vw);
    height:100vh;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    padding:86px 24px 24px;
    background:rgba(2,17,19,.98);
    border-left:1px solid rgba(35,199,184,.34);
    box-shadow:-24px 0 42px rgba(0,0,0,.34);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateX(100%);
    transition:transform .24s ease,opacity .18s ease,visibility 0s linear .24s;
  }
  .menu a,
  .home-page .menu a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid rgba(125,245,232,.12);
    font-size:16px;
  }
  .menu a.active:after,
  .menu a:hover:after,
  .home-page .menu a.active:after,
  .home-page .menu a:hover:after{
    left:0;
    right:auto;
    bottom:8px;
    width:44px;
  }
  .nav-toggle:checked ~ .menu,
  .home-page .nav-toggle:checked ~ .menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(0);
    transition:transform .24s ease,opacity .18s ease;
  }
  .nav-toggle:checked + .menu-button span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked + .menu-button span:nth-child(2){
    opacity:0;
  }
  .nav-toggle:checked + .menu-button span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }
}
