:root{
  --bg:#0f1419;
  --bg-soft:#151c23;
  --card:#1a232b;
  --card-2:#182128;
  --line:rgba(245,247,246,0.09);
  --text:#f5f7f6;
  --muted:#b4c0c0;
  --cyan:#1e9a7a;
  --cyan-soft:#53c6ac;
  --shadow:0 18px 45px rgba(0,0,0,.38);
  --radius:22px;
  --max:1180px;
}

.project-visual-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.2rem;
}

.project-visual-grid .visual-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  border:1px solid var(--line);
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    radial-gradient(circle at top right, rgba(30,154,122,.16), transparent 34%),
    var(--card);
  box-shadow:var(--shadow);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.project-visual-grid .visual-card:hover{
  transform:translateY(-6px);
  border-color:rgba(30,154,122,.28);
  box-shadow:0 26px 60px rgba(0,0,0,.42);
}

.project-visual-grid .visual-thumb{
  position:relative;
  height:250px;
  padding:16px 16px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.01)),
    linear-gradient(135deg, rgba(30,154,122,.14), rgba(255,255,255,.02));
  border-bottom:none;
}

.project-visual-grid .visual-thumb::before{
  content:"";
  position:absolute;
  top:16px;
  left:16px;
  right:16px;
  height:24px;
  border-radius:16px 16px 0 0;
  background:linear-gradient(180deg, rgba(7,14,24,.95), rgba(20,31,45,.9));
  border:1px solid rgba(255,255,255,.08);
  border-bottom:none;
  z-index:1;
}

.project-visual-grid .visual-thumb::after{
  content:"";
  position:absolute;
  top:25px;
  left:30px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff6b6b;
  box-shadow:14px 0 0 #ffd166, 28px 0 0 #06d6a0;
  z-index:2;
}

.project-visual-grid .visual-thumb img{
  position:relative;
  z-index:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center top;
  border-radius:18px 18px 0 0;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 22px 40px rgba(0,0,0,.28);
  transition:transform .45s ease, filter .35s ease;
}

.project-visual-grid .visual-card:hover .visual-thumb img{
  transform:scale(1.04);
  filter:saturate(1.05) contrast(1.02);
}

.project-visual-grid .visual-body{
  display:flex;
  flex:1;
  flex-direction:column;
  gap:.8rem;
  padding:1.2rem 1.2rem 1.3rem;
}

.project-visual-grid .visual-type{
  display:inline-flex;
  align-self:flex-start;
  padding:.42rem .72rem;
  border-radius:999px;
  background:rgba(30,154,122,.12);
  border:1px solid rgba(30,154,122,.22);
  color:var(--cyan-soft);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.project-visual-grid .visual-body h3{
  font-size:1.15rem;
  line-height:1.15;
}

.project-visual-grid .visual-body p{
  color:var(--muted);
  line-height:1.6;
}

.project-visual-grid .visual-actions{
  margin-top:auto;
  padding-top:.25rem;
}

.project-visual-grid .visual-actions a{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  min-height:44px;
  padding:.72rem 1rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
  transition:transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}

.project-visual-grid .visual-actions a:hover{
  transform:translateY(-2px);
  color:var(--cyan-soft);
  border-color:rgba(30,154,122,.24);
  background:rgba(255,255,255,.06);
}

.project-visual-grid .visual-card-wagner .visual-thumb img{
  object-position:center 18%;
}

.project-visual-grid .visual-card-jesus .visual-thumb img{
  object-position:center 20%;
}

.project-visual-grid .visual-card-marcela .visual-thumb img{
  object-position:center 16%;
}

@media (max-width:1100px){
  .project-visual-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:700px){
  .project-visual-grid{
    grid-template-columns:1fr;
  }

  .project-visual-grid .visual-thumb{
    height:220px;
  }
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(30,154,122,.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(30,154,122,.08), transparent 20%),
    linear-gradient(180deg, #0f1419 0%, #141b22 60%, #0f1419 100%);
  color:var(--text);
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(var(--max), calc(100% - 2rem));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(15,20,25,.82);
  border-bottom:1px solid var(--line);
}

.topbar::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(30,154,122,.55), transparent);
  pointer-events:none;
}

.nav{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.9rem;
}

.brand-logo{
  width:48px;
  height:48px;
  object-fit:contain;
  border-radius:14px;
  background:#f5f7f6;
  box-shadow:0 10px 20px rgba(0,0,0,.18);
}

.brand-logo-full{
  width:min(240px, 48vw);
  height:auto;
  aspect-ratio:517 / 87;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.brand-logo-full + div{
  display:none;
}

.brand-name{
  display:block;
  font-family:'Orbitron',sans-serif;
  font-size:1rem;
  color:var(--cyan-soft);
}

.brand-sub{
  color:var(--muted);
  font-size:.76rem;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:.35rem;
  color:var(--muted);
  font-size:.92rem;
  font-weight:600;
}

.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:.55rem .68rem;
  border-radius:999px;
  border:1px solid transparent;
  transition:color .22s ease, background .22s ease, border-color .22s ease;
}

.nav-links a:hover{
  color:var(--cyan-soft);
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.08);
}

.nav-links a[aria-current="page"]{
  color:var(--text);
  background:rgba(30,154,122,.12);
  border-color:rgba(30,154,122,.26);
}

.portal-link{
  color:var(--cyan-soft);
  border-color:rgba(30,154,122,.2) !important;
  background:rgba(30,154,122,.08);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:1.6rem;
  cursor:pointer;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"]{
  border-color:rgba(30,154,122,.3);
  color:var(--cyan-soft);
}

.hero{
  min-height:92vh;
  display:flex;
  align-items:center;
  padding:4rem 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:2rem;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  margin-bottom:1rem;
  padding:.45rem .8rem;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--cyan-soft);
  font-size:.82rem;
  font-weight:700;
}

.hero h1{
  font-size:clamp(2.4rem, 6vw, 5.2rem);
  line-height:1;
  letter-spacing:0;
  margin-bottom:1rem;
}

.hero h1 span{
  color:var(--cyan);
}

.hero p{
  max-width:60ch;
  color:var(--muted);
  font-size:1.05rem;
  margin-bottom:1.5rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin-bottom:1.5rem;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  padding:.9rem 1.2rem;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(135deg, var(--cyan), #3fc1a1);
  color:#05110d;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
}

.btn-secondary:hover{
  border-color:rgba(30,154,122,.35);
  color:var(--cyan-soft);
}

.commercial-hero h1{
  max-width:12.5ch;
  font-size:clamp(2.55rem, 6vw, 5.1rem);
}

.commercial-hero .hero-copy > p{
  font-size:1.08rem;
}

.hero-stats-strong .stat-card{
  background:
    linear-gradient(180deg, rgba(30,154,122,.12), rgba(255,255,255,.03)),
    rgba(255,255,255,.04);
  border-color:rgba(30,154,122,.22);
}

.hero-stats-strong .stat-card strong{
  font-size:1.85rem;
}

.commercial-panel .showcase-main{
  border-color:rgba(30,154,122,.22);
  background:
    radial-gradient(circle at top right, rgba(30,154,122,.2), transparent 36%),
    linear-gradient(180deg, rgba(245,247,246,.055), rgba(245,247,246,.02));
}

.quote-card,
.package-card,
.limit-box{
  background:
    linear-gradient(180deg, rgba(245,247,246,.045), rgba(245,247,246,.02)),
    var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.25rem;
  box-shadow:var(--shadow);
}

.quote-card span,
.package-kicker{
  display:inline-flex;
  width:fit-content;
  margin-bottom:.8rem;
  padding:.4rem .72rem;
  border-radius:999px;
  background:rgba(30,154,122,.1);
  border:1px solid rgba(30,154,122,.22);
  color:var(--cyan-soft);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.quote-card strong{
  display:block;
  max-width:28ch;
  font-size:1.3rem;
  line-height:1.25;
}

.solve-grid{
  grid-template-columns:repeat(4, 1fr);
}

.solve-grid .icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border-radius:16px;
  background:rgba(30,154,122,.11);
  border:1px solid rgba(30,154,122,.2);
  color:var(--cyan-soft);
  font-size:.88rem;
  font-weight:800;
  font-family:'Orbitron', sans-serif;
}

.package-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}

.package-card{
  display:flex;
  flex-direction:column;
  gap:.9rem;
  min-height:100%;
}

.package-card h3{
  font-size:1.35rem;
  line-height:1.2;
}

.package-card p,
.limit-box p{
  color:var(--muted);
}

.package-card ul{
  display:grid;
  gap:.55rem;
  margin:0;
  padding-left:1.1rem;
  color:var(--muted);
}

.package-card .btn{
  margin-top:auto;
}

.package-featured{
  border-color:rgba(30,154,122,.34);
  background:
    radial-gradient(circle at 80% 0%, rgba(30,154,122,.22), transparent 34%),
    linear-gradient(180deg, rgba(245,247,246,.065), rgba(245,247,246,.025)),
    var(--card);
}

.price-placeholder{
  display:inline-flex;
  width:fit-content;
  padding:.48rem .75rem;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  color:var(--text);
  font-size:.9rem;
}

.psychologist-section h2,
.limit-box h2{
  max-width:11ch;
  font-size:clamp(2rem, 5vw, 3.6rem);
  line-height:1;
  margin-bottom:1rem;
}

.psychologist-section p{
  max-width:64ch;
  color:var(--muted);
  font-size:1.03rem;
}

.psych-layout,
.split-section{
  display:grid;
  grid-template-columns:1fr .8fr;
  gap:1rem;
  align-items:start;
}

.mini-project-list{
  display:grid;
  gap:.85rem;
}

.mini-project-list a{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  min-height:72px;
  padding:1rem;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
  color:var(--text);
  font-weight:800;
  transition:transform .24s ease, border-color .24s ease, background .24s ease;
}

.mini-project-list a:hover{
  transform:translateY(-3px);
  border-color:rgba(30,154,122,.28);
  background:rgba(255,255,255,.055);
}

.mini-project-list span{
  color:var(--cyan-soft);
  font-size:.9rem;
  white-space:nowrap;
}

.filter-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin:-.3rem 0 1.2rem;
}

.filter-chips span{
  padding:.46rem .8rem;
  border:1px solid rgba(30,154,122,.18);
  border-radius:999px;
  color:var(--cyan-soft);
  background:rgba(30,154,122,.07);
  font-size:.82rem;
  font-weight:800;
}

.commercial-projects{
  margin-top:.5rem;
}

.final-cta-box{
  border:1px solid rgba(30,154,122,.18);
  border-radius:30px;
  padding:1.5rem;
  background:
    radial-gradient(circle at top right, rgba(30,154,122,.16), transparent 35%),
    rgba(255,255,255,.025);
}

.niche-hero h1{
  max-width:11ch;
}

.split-section{
  align-items:center;
}

.limit-box{
  max-width:900px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}

.stat-card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:18px;
  padding:1rem;
}

.stat-card strong{
  display:block;
  font-size:1.5rem;
  color:var(--cyan-soft);
}

.stat-card span{
  color:var(--muted);
  font-size:.92rem;
}

.hero-panel{
  display:grid;
  gap:1rem;
}

.panel-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.2rem;
  box-shadow:var(--shadow);
}

.panel-tag{
  display:inline-block;
  margin-bottom:.7rem;
  color:var(--cyan-soft);
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.panel-card h3{
  margin-bottom:.5rem;
  font-size:1.1rem;
}

.panel-card p{
  color:var(--muted);
}

.section{
  padding:5rem 0;
}

.section-alt{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(245,247,246,.015), rgba(245,247,246,.01));
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}

.section-alt::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(30,154,122,.06), transparent 38%),
    linear-gradient(45deg, transparent 0 49.2%, rgba(245,247,246,.03) 49.2% 50.8%, transparent 50.8% 100%);
  background-size:auto, 220px 220px;
  pointer-events:none;
  opacity:.8;
}

.section-alt > .container{
  position:relative;
  z-index:1;
}

.section-head{
  margin-bottom:1.6rem;
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:1rem;
}

.section-head.left{
  display:block;
}

.section-head h2{
  font-size:clamp(1.8rem, 4vw, 3rem);
  letter-spacing:0;
}

.section-head p{
  max-width:58ch;
  color:var(--muted);
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}

.card,
.project-group,
.contact-note,
.step-card,
.timeline-item,
.note-card,
.lab-preview,
.panel-card,
.showcase-mini{
  background:
    linear-gradient(180deg, rgba(245,247,246,.04), rgba(245,247,246,.02)),
    var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.25rem;
  box-shadow:var(--shadow);
}

.icon{
  font-size:1.7rem;
  margin-bottom:.8rem;
}

.card h3,
.project-group h3,
.contact-note h3{
  margin-bottom:.55rem;
}

.card p,
.project-group p,
.contact-note ul{
  color:var(--muted);
}

.project-groups{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}

.contact-box{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:1rem;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin-top:1.2rem;
}

.contact-note ul{
  padding-left:1rem;
}

.contact-note li{
  margin-bottom:.5rem;
}

.footer{
  padding:2rem 0 3rem;
  text-align:center;
  color:var(--muted);
}

@media (max-width: 980px){
  .hero-grid,
  .cards-grid,
  .solve-grid,
  .package-grid,
  .project-groups,
  .contact-box,
  .hero-stats,
  .psych-layout,
  .split-section{
    grid-template-columns:1fr;
  }

  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-links{
    position:absolute;
    top:74px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:.45rem;
    padding:1rem;
    background:rgba(21,28,35,.98);
    border-bottom:1px solid var(--line);
    box-shadow:0 20px 50px rgba(0,0,0,.38);
    max-height:calc(100vh - 74px);
    overflow:auto;
  }

  .nav-links a{
    justify-content:flex-start;
    width:100%;
    padding:.8rem .95rem;
  }

  .nav-links.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }
}
.subpage-hero{
  padding: 5rem 0 2rem;
}

.subpage-hero h1{
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.subpage-hero p{
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.project-link{
  display: inline-block;
  margin-top: 1rem;
  color: var(--cyan-soft);
  font-weight: 700;
}

.project-link:hover{
  color: var(--cyan);
}
.simple-steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1rem;
  margin-top:1rem;
}

.step-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.25rem;
  box-shadow:var(--shadow);
}

.step-card strong{
  display:inline-block;
  margin-bottom:.65rem;
  color:var(--cyan-soft);
  font-size:1.25rem;
  font-family:'Orbitron', sans-serif;
}

.step-card h3{
  margin-bottom:.45rem;
}

.step-card p{
  color:var(--muted);
}

@media (max-width: 980px){
  .simple-steps{
    grid-template-columns:1fr;
  }
}
.about-layout{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1rem;
}

.timeline{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1rem;
}

.timeline-item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.25rem;
  box-shadow:var(--shadow);
}

.timeline-item strong{
  display:block;
  margin-bottom:.55rem;
  color:var(--cyan-soft);
  font-family:'Orbitron', sans-serif;
}

.timeline-item p{
  color:var(--muted);
}

@media (max-width: 980px){
  .about-layout,
  .timeline{
    grid-template-columns:1fr;
  }
}
.notes-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}

.note-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.25rem;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.note-tag{
  display:inline-block;
  width:fit-content;
  margin-bottom:.8rem;
  padding:.38rem .7rem;
  border-radius:999px;
  border:1px solid rgba(30,154,122,.22);
  background:rgba(30,154,122,.08);
  color:var(--cyan-soft);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.note-card h3{
  margin-bottom:.7rem;
  line-height:1.3;
}

.note-card p{
  color:var(--muted);
  margin-bottom:1rem;
}

.note-meta{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:auto;
  margin-bottom:1rem;
}

.note-meta span{
  padding:.35rem .65rem;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:.82rem;
}

@media (max-width: 980px){
  .notes-grid{
    grid-template-columns:1fr;
  }
}
.hero-v2{
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  position:relative;
  overflow:hidden;
}

.hero-v2::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(30,154,122,.08), transparent 34%),
    linear-gradient(45deg, transparent 0 49.2%, rgba(245,247,246,.03) 49.2% 50.8%, transparent 50.8% 100%);
  background-size:auto, 260px 260px;
  pointer-events:none;
  opacity:.8;
}

.hero-v2::after{
  content:"";
  position:absolute;
  right:-120px;
  top:40px;
  width:460px;
  height:460px;
  border-radius:40px;
  background:radial-gradient(circle, rgba(30,154,122,.16), transparent 68%);
  filter:blur(10px);
  pointer-events:none;
}

.hero-v2 > .container{
  position:relative;
  z-index:1;
}

.hero-v2-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}

.hero-showcase{
  display: grid;
  gap: 1rem;
}

.showcase-card{
  background: linear-gradient(180deg, rgba(245,247,246,.04), rgba(245,247,246,.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.showcase-main h3{
  font-size: 1.35rem;
  margin-bottom: .6rem;
}

.showcase-main p{
  color: var(--muted);
  margin-bottom: 1rem;
}

.mini-label{
  display: inline-block;
  margin-bottom: .8rem;
  padding: .42rem .72rem;
  border-radius: 999px;
  background: rgba(30,154,122,.08);
  border: 1px solid rgba(30,154,122,.18);
  color: var(--cyan-soft);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.showcase-tags{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.showcase-tags span{
  padding: .42rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .83rem;
}

.showcase-mini-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.showcase-mini{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.showcase-mini span{
  display: block;
  margin-bottom: .45rem;
  font-size: .78rem;
  color: var(--cyan-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.showcase-mini strong{
  line-height: 1.45;
  font-size: .95rem;
}

.featured-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1rem;
}

.featured-card{
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    radial-gradient(circle at top right, rgba(30,154,122,.12), transparent 30%);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: end;
}

.featured-card.large{
  min-height: 300px;
}

.featured-content{
  padding: 1.4rem;
}

.featured-tag{
  display: inline-block;
  margin-bottom: .8rem;
  padding: .4rem .72rem;
  border-radius: 999px;
  background: rgba(30,154,122,.08);
  border: 1px solid rgba(30,154,122,.18);
  color: var(--cyan-soft);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.featured-content h3{
  margin-bottom: .55rem;
  font-size: 1.2rem;
}

.featured-content p{
  color: var(--muted);
}

.lab-preview-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lab-preview{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.lab-preview h3{
  margin-bottom: .55rem;
}

.lab-preview p{
  color: var(--muted);
}

.section-cta{
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 980px){
  .hero-v2-grid,
  .featured-grid,
  .lab-preview-grid,
  .showcase-mini-grid{
    grid-template-columns: 1fr;
  }

  .featured-card,
  .featured-card.large{
    min-height: auto;
  }
}
.lang.en,
.lang.pt{
  display:none;
}

html[data-lang="en"] .lang.es{
  display:none;
}

html[data-lang="en"] .lang.en{
  display:inline;
}

html[data-lang="en"] .lang.pt{
  display:none;
}

html[data-lang="es"] .lang.es{
  display:inline;
}

html[data-lang="es"] .lang.en{
  display:none;
}

html[data-lang="es"] .lang.pt{
  display:none;
}

html[data-lang="pt"] .lang.es{
  display:none;
}

html[data-lang="pt"] .lang.en{
  display:none;
}

html[data-lang="pt"] .lang.pt{
  display:inline;
}

.lang-switch{
  display:flex;
  align-items:center;
  gap:.35rem;
  margin-left:.4rem;
}

.lang-btn{
  min-width:44px;
  height:36px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  cursor:pointer;
  font-weight:700;
  transition:.25s ease;
}

.lang-btn:hover{
  color:var(--cyan-soft);
  border-color:rgba(30,154,122,.25);
}

.lang-btn.active{
  background:linear-gradient(135deg, var(--cyan), #3fc1a1);
  color:#05110d;
  border-color:transparent;
}

@media (max-width:980px){
  .lang-switch{
    margin-left:0;
    margin-top:.4rem;
  }
}

@media (max-width:640px){
  .container{
    width:min(var(--max), calc(100% - 1.25rem));
  }

  .nav{
    min-height:68px;
  }

  .brand{
    min-width:0;
  }

  .brand-logo{
    width:42px;
    height:42px;
    border-radius:12px;
  }

  .brand-logo-full{
    width:min(205px, 58vw);
    height:auto;
    border-radius:0;
  }

  .brand-name{
    font-size:.88rem;
  }

  .brand-sub{
    display:none;
  }

  .nav-links{
    top:68px;
    max-height:calc(100vh - 68px);
  }

  .hero,
  .hero-v2{
    min-height:auto;
    padding:3.25rem 0;
  }

  .hero h1,
  .subpage-hero h1{
    font-size:2.25rem;
    line-height:1.05;
  }

  .commercial-hero h1,
  .niche-hero h1{
    max-width:none;
    font-size:2.22rem;
  }

  .section{
    padding:3.25rem 0;
  }

  .subpage-hero{
    padding:3.25rem 0 1rem;
  }

  .btn,
  .hero-actions a,
  .section-cta a,
  .contact-actions a{
    width:100%;
  }

  .card,
  .project-group,
  .contact-note,
  .step-card,
  .timeline-item,
  .note-card,
  .lab-preview,
  .panel-card,
  .showcase-mini,
  .package-card,
  .quote-card,
  .limit-box{
    border-radius:18px;
  }

  .final-cta-box{
    padding:1rem;
    border-radius:22px;
  }

  .mini-project-list a{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
}

/* NeuroDev 2026 commercial refresh */
.neurodev-refresh{
  --refresh-bg:#06111f;
  --refresh-panel:#0d1b2e;
  --refresh-card:#102238;
  --refresh-line:rgba(143,217,255,.15);
  --refresh-text:#f4f8ff;
  --refresh-soft:rgba(220,234,255,.78);
  --refresh-muted:rgba(220,234,255,.56);
  --refresh-cyan:#7ed7ff;
  --refresh-green:#8af58a;
  --refresh-gold:#ffd36f;
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(126,215,255,.13), transparent 28%),
    radial-gradient(circle at 88% 2%, rgba(138,245,138,.11), transparent 26%),
    linear-gradient(180deg, #06111f 0%, #08182a 46%, #06111f 100%);
  color:var(--refresh-text);
  font-family:'Inter', sans-serif;
}

.neurodev-refresh .studio-bg{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(126,215,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,215,255,.035) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(circle at center, black 28%, transparent 86%);
}

.refresh-topbar{
  position:sticky;
  top:0;
  z-index:50;
  width:min(1180px, calc(100% - 1.2rem));
  margin:0 auto;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  backdrop-filter:blur(16px);
}

.refresh-brand{
  display:flex;
  min-width:0;
  align-items:center;
  gap:.75rem;
}

.refresh-brand img{
  width:48px;
  height:48px;
  border-radius:14px;
  box-shadow:0 16px 38px rgba(0,0,0,.28);
}

.refresh-brand span{
  display:grid;
  line-height:1.1;
}

.refresh-brand strong,
.refresh-section h2,
.refresh-hero h1,
.offer-panel h2,
.clean-package h3,
.final-refresh-cta h2{
  font-family:'Space Grotesk', sans-serif;
}

.refresh-brand strong{
  font-size:1.05rem;
}

.refresh-brand small{
  margin-top:.15rem;
  color:var(--refresh-soft);
  font-size:.8rem;
}

.refresh-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:.35rem;
  color:var(--refresh-soft);
}

.refresh-nav a{
  min-height:40px;
  padding:.55rem .72rem;
  border:1px solid transparent;
  border-radius:999px;
  font-size:.9rem;
  font-weight:800;
}

.refresh-nav a:hover,
.refresh-nav a[aria-current="page"]{
  color:var(--refresh-text);
  background:rgba(255,255,255,.055);
  border-color:var(--refresh-line);
}

.refresh-nav .portal-link{
  color:#07111f;
  background:linear-gradient(135deg, var(--refresh-green), var(--refresh-cyan));
  border-color:transparent !important;
}

.refresh-hero,
.refresh-section,
.final-refresh-cta,
.refresh-footer{
  width:min(1180px, calc(100% - 1.2rem));
  margin:0 auto;
}

.refresh-hero{
  min-height:calc(100vh - 76px);
  display:grid;
  grid-template-columns:1.02fr .78fr;
  gap:1.2rem;
  align-items:center;
  padding:3.5rem 0 2rem;
}

.refresh-hero-copy{
  padding:clamp(1.15rem, 3vw, 2.2rem);
  border:1px solid var(--refresh-line);
  border-radius:30px;
  background:
    radial-gradient(circle at top left, rgba(126,215,255,.12), transparent 34%),
    linear-gradient(180deg, rgba(13,27,46,.92), rgba(8,18,33,.86));
  box-shadow:0 28px 80px rgba(0,0,0,.28);
}

.refresh-kicker{
  display:inline-flex;
  width:fit-content;
  margin:0 0 .9rem;
  padding:.42rem .72rem;
  border:1px solid rgba(138,245,138,.2);
  border-radius:999px;
  color:var(--refresh-green);
  background:rgba(138,245,138,.08);
  font-size:.73rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.refresh-hero h1{
  max-width:11.8ch;
  margin:0;
  font-size:clamp(3rem, 8vw, 6.2rem);
  line-height:.95;
  letter-spacing:-.035em;
}

.refresh-lead,
.psych-strip p,
.final-refresh-cta p{
  max-width:62ch;
  margin-top:1rem;
  color:var(--refresh-soft);
  font-size:1.06rem;
}

.refresh-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.4rem;
}

.refresh-button,
.clean-package a{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  padding:.85rem 1.05rem;
  border-radius:999px;
  font-weight:900;
  line-height:1.1;
}

.refresh-button-primary,
.clean-package a{
  color:#06111f;
  background:linear-gradient(135deg, var(--refresh-green), var(--refresh-cyan));
  box-shadow:0 16px 34px rgba(87,232,172,.16);
}

.refresh-button-secondary{
  color:var(--refresh-text);
  border:1px solid var(--refresh-line);
  background:rgba(255,255,255,.04);
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:.7rem;
  margin-top:1.5rem;
}

.trust-row span{
  padding:.85rem;
  border:1px solid var(--refresh-line);
  border-radius:18px;
  color:var(--refresh-muted);
  background:rgba(255,255,255,.04);
  font-size:.9rem;
}

.trust-row strong{
  display:block;
  color:var(--refresh-cyan);
  font-size:1.35rem;
}

.offer-panel{
  position:relative;
  overflow:hidden;
  padding:clamp(1.15rem, 3vw, 2rem);
  border:1px solid var(--refresh-line);
  border-radius:34px;
  background:
    radial-gradient(circle at 70% 0%, rgba(138,245,138,.16), transparent 34%),
    linear-gradient(180deg, rgba(16,34,56,.92), rgba(8,18,33,.9));
  box-shadow:0 28px 80px rgba(0,0,0,.24);
}

.offer-panel img{
  width:82px;
  height:82px;
  margin-bottom:1.2rem;
  border-radius:22px;
}

.offer-panel p{
  margin:0 0 .45rem;
  color:var(--refresh-green);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.offer-panel h2{
  max-width:13ch;
  margin:0;
  font-size:clamp(2rem, 5vw, 3.2rem);
  line-height:1;
}

.offer-panel ul,
.clean-package ul{
  display:grid;
  gap:.58rem;
  margin:1.1rem 0 0;
  padding:0;
  list-style:none;
}

.offer-panel li,
.clean-package li{
  color:var(--refresh-soft);
}

.offer-panel li::before,
.clean-package li::before{
  content:"";
  display:inline-block;
  width:.45rem;
  height:.45rem;
  margin-right:.55rem;
  border-radius:2px;
  background:var(--refresh-green);
  box-shadow:0 0 14px rgba(138,245,138,.55);
}

.refresh-section{
  padding:clamp(3rem, 7vw, 5.5rem) 0;
}

.compact-section{
  padding-top:2rem;
}

.section-title{
  display:grid;
  gap:.45rem;
  margin-bottom:1.2rem;
}

.section-title.centered{
  max-width:760px;
  margin-inline:auto;
  text-align:center;
  justify-items:center;
}

.section-title h2,
.psych-strip h2,
.final-refresh-cta h2{
  margin:0;
  font-size:clamp(2rem, 5vw, 4rem);
  line-height:1;
}

.focus-grid,
.clean-package-grid,
.clean-project-grid,
.process-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1rem;
}

.focus-grid article,
.clean-package,
.clean-project-grid article,
.process-grid article,
.psych-links a{
  min-width:0;
  border:1px solid var(--refresh-line);
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    var(--refresh-card);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.focus-grid article,
.process-grid article{
  padding:1.15rem;
}

.focus-grid span,
.clean-project-grid span,
.process-grid strong{
  display:inline-flex;
  width:fit-content;
  margin-bottom:.8rem;
  padding:.35rem .62rem;
  border-radius:999px;
  color:var(--refresh-cyan);
  background:rgba(126,215,255,.08);
  border:1px solid rgba(126,215,255,.16);
  font-size:.74rem;
  font-weight:900;
}

.focus-grid h3,
.clean-project-grid h3,
.process-grid h3{
  margin:0 0 .5rem;
  font-size:1.15rem;
}

.focus-grid p,
.clean-project-grid p,
.process-grid p{
  margin:0;
  color:var(--refresh-soft);
}

.clean-package{
  display:flex;
  flex-direction:column;
  padding:1.15rem;
}

.clean-package p{
  margin:0 0 .6rem;
  color:var(--refresh-green);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.clean-package h3{
  margin:0;
  font-size:1.55rem;
  line-height:1.08;
}

.clean-package > span{
  display:inline-flex;
  width:fit-content;
  margin:.9rem 0 .2rem;
  padding:.44rem .68rem;
  border:1px solid var(--refresh-line);
  border-radius:999px;
  color:var(--refresh-text);
  background:rgba(255,255,255,.04);
  font-size:.88rem;
  font-weight:900;
}

.clean-package a{
  margin-top:auto;
}

.featured-package{
  border-color:rgba(138,245,138,.34);
  background:
    radial-gradient(circle at 80% 0%, rgba(138,245,138,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--refresh-card);
}

.psych-strip{
  display:grid;
  grid-template-columns:1fr .8fr;
  gap:1rem;
  align-items:center;
  padding:clamp(1.2rem, 4vw, 2rem);
  border:1px solid var(--refresh-line);
  border-radius:34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(126,215,255,.12), transparent 34%),
    rgba(255,255,255,.03);
}

.psych-links{
  display:grid;
  gap:.75rem;
}

.psych-links a{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  min-height:70px;
  padding:1rem;
  color:var(--refresh-text);
  font-weight:900;
}

.psych-links span{
  color:var(--refresh-cyan);
  font-size:.9rem;
}

.clean-project-grid article{
  overflow:hidden;
  padding:.75rem;
}

.clean-project-grid img{
  width:100%;
  height:190px;
  object-fit:cover;
  object-position:center top;
  border-radius:16px;
  border:1px solid var(--refresh-line);
}

.clean-project-grid span,
.clean-project-grid h3,
.clean-project-grid p{
  margin-left:.25rem;
  margin-right:.25rem;
}

.clean-project-grid span{
  margin-top:1rem;
}

.process-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.final-refresh-cta{
  margin-top:2rem;
  margin-bottom:2rem;
  padding:clamp(1.4rem, 5vw, 3rem);
  border:1px solid rgba(138,245,138,.2);
  border-radius:36px;
  background:
    radial-gradient(circle at 80% 0%, rgba(138,245,138,.16), transparent 38%),
    linear-gradient(180deg, rgba(13,27,46,.94), rgba(8,18,33,.9));
  box-shadow:0 28px 80px rgba(0,0,0,.22);
}

.final-refresh-cta h2{
  max-width:13ch;
}

.refresh-footer{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0 2rem;
  color:var(--refresh-muted);
}

.refresh-footer a{
  color:var(--refresh-cyan);
  font-weight:900;
}

.psych-refresh .niche-clean-hero .refresh-hero-copy{
  background:
    radial-gradient(circle at top left, rgba(138,245,138,.11), transparent 34%),
    linear-gradient(180deg, rgba(13,27,46,.92), rgba(8,18,33,.86));
}

.psych-refresh .soft-panel{
  background:
    radial-gradient(circle at 80% 0%, rgba(255,211,111,.14), transparent 32%),
    linear-gradient(180deg, rgba(16,34,56,.92), rgba(8,18,33,.9));
}

.two-column-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.includes-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

@media (max-width:980px){
  .refresh-topbar{
    min-height:68px;
  }

  .refresh-nav{
    position:absolute;
    top:68px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:1rem;
    border:1px solid var(--refresh-line);
    border-radius:0 0 22px 22px;
    background:rgba(8,18,33,.98);
    box-shadow:0 26px 60px rgba(0,0,0,.32);
  }

  .refresh-nav.active{
    display:flex;
  }

  .refresh-nav a{
    justify-content:flex-start;
    width:100%;
  }

  .refresh-hero,
  .psych-strip{
    grid-template-columns:1fr;
  }

  .focus-grid,
  .clean-package-grid,
  .clean-project-grid,
  .process-grid,
  .two-column-grid,
  .includes-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .refresh-topbar,
  .refresh-hero,
  .refresh-section,
  .final-refresh-cta,
  .refresh-footer{
    width:min(100% - .85rem, 1180px);
  }

  .refresh-brand small{
    display:none;
  }

  .refresh-brand img{
    width:42px;
    height:42px;
  }

  .refresh-hero{
    min-height:auto;
    padding:1.2rem 0 1.8rem;
  }

  .refresh-hero-copy,
  .offer-panel,
  .psych-strip,
  .final-refresh-cta{
    border-radius:24px;
  }

  .refresh-hero h1{
    max-width:none;
    font-size:2.68rem;
  }

  .offer-panel h2,
  .final-refresh-cta h2{
    max-width:none;
  }

  .trust-row{
    grid-template-columns:1fr;
  }

  .refresh-actions,
  .refresh-button,
  .clean-package a{
    width:100%;
  }

  .psych-links a,
  .refresh-footer{
    align-items:flex-start;
    flex-direction:column;
  }
}
