:root{
  --green:#39ff88;
  --bg:#050505;
  --card:#0c0c0c;
  --text:#ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:white;
  overflow-x:hidden;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

[hidden]{
  display:none !important;
}

/* BACKGROUND */

body::before{
  content:'';
  position:fixed;
  inset:0;

  background-image:
  linear-gradient(rgba(0,255,136,.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,255,136,.03) 1px, transparent 1px);

  background-size:70px 70px;

  z-index:-2;
}

body::after{
  content:'';
  position:fixed;

  width:700px;
  height:700px;

  background:
  radial-gradient(circle,
  rgba(0,255,136,.12),
  transparent 70%);

  top:-300px;
  right:-250px;

  z-index:-1;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;

  width:100%;
  height:95px;

  padding:0 8%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  background:rgba(0,0,0,.55);

  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(255,255,255,.04);

  z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  height:100%;
}

.logo img{
  height:120px;
  width:auto;

  object-fit:contain;

  transition:.3s;

  filter:
  drop-shadow(0 0 10px rgba(0,255,136,.18));
}

.logo img:hover{
  transform:scale(1.04);
}

nav{
  display:flex;
  gap:40px;
}

nav a{
  color:#d1d5db;
  text-decoration:none;
  transition:.3s;
  font-size:1rem;
}

nav a:hover{
  color:var(--green);
}

.btn{
  background:var(--green);
  color:black;

  padding:16px 30px;

  border-radius:14px;

  text-decoration:none;

  font-weight:700;

  transition:.3s;
}

.btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 0 25px rgba(0,255,136,.35);
}

/* HERO SLIDER */

.hero-slider{
  position:relative;

  width:100vw;
  height:100vh;

  overflow:hidden;

  margin:0;
  padding:0;
}

.slides{
  width:100%;
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  opacity:0;

  transition:opacity 1s ease-in-out;

  background:#000;
}

.slide.active{
  opacity:1;
  z-index:1;
}

.slide img{
  width:100%;
  height:100%;

  object-fit:contain;
  object-position:center;

  display:block;

  filter:brightness(.95);
}

.hero-slider::after{
  content:'';

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.25),
    rgba(0,0,0,.15),
    rgba(0,0,0,.45)
  );

  z-index:2;
}

/* =========================================
   PROJETOS
========================================= */

.projects-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(340px,1fr));

  gap:28px;
}

.project-card{
  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.015)
  );

  border:
  1px solid rgba(255,255,255,.06);

  border-radius:28px;

  overflow:hidden;

  position:relative;

  transition:
  transform .4s ease,
  border-color .4s ease,
  box-shadow .4s ease;
}

.project-card:hover{
  transform:
  translateY(-12px);

  border-color:
  rgba(0,255,136,.3);

  box-shadow:
  0 0 35px rgba(0,255,136,.12);
}

.project-card img{
  width:100%;
  height:240px;

  object-fit:cover;

  transition:.5s;
}

.project-card:hover img{
  transform:scale(1.05);
}

.project-content{
  padding:28px;
}

.project-content h3{
  font-size:1.3rem;

  margin-bottom:14px;
}

.project-content p{
  color:#a5a5a5;

  line-height:1.8;

  margin-bottom:24px;
}

.project-btn{
  display:inline-flex;

  align-items:center;
  gap:10px;

  padding:14px 22px;

  background:
  rgba(0,255,136,.08);

  border:
  1px solid rgba(0,255,136,.15);

  border-radius:14px;

  color:var(--green);

  text-decoration:none;

  font-weight:600;

  transition:.3s;
}

.project-btn:hover{
  background:var(--green);

  color:#000;

  transform:translateY(-3px);

  box-shadow:
  0 0 20px rgba(0,255,136,.25);
}

/* BOLINHAS */

.slider-dots{
  position:absolute;

  bottom:35px;
  left:50%;

  transform:translateX(-50%);

  display:flex;
  gap:14px;

  z-index:20;
}

.dot{
  width:14px;
  height:14px;

  border-radius:50%;

  border:0;
  padding:0;

  background:rgba(255,255,255,.35);

  cursor:pointer;

  transition:.3s;
}

.dot.active{
  background:var(--green);

  box-shadow:
  0 0 12px rgba(0,255,136,.8);
}

/* SECTION */

section:not(.hero-slider){
  padding:110px 8%;
}

.section-title{
  margin-bottom:70px;
}

.section-title span{
  color:var(--green);

  letter-spacing:2px;

  font-size:.85rem;

  display:block;

  margin-bottom:18px;
}

.section-title h2{
  font-size:3rem;
  margin-bottom:15px;
}

.section-title p{
  color:#9f9f9f;

  max-width:700px;

  line-height:1.8;
}

/* GRID */

.grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));

  gap:24px;
}

/* CARDS */

.feature-card{
  background:
  linear-gradient(
  180deg,
  rgba(255,255,255,.015),
  rgba(255,255,255,.01)
  );

  border:
  1px solid rgba(255,255,255,.05);

  border-radius:22px;

  padding:35px;

  transition:.4s;
  position:relative;
  overflow:hidden;
}

.feature-card::before{
  content:'';

  position:absolute;

  width:180px;
  height:180px;

  background:
  radial-gradient(circle,
  rgba(0,255,136,.12),
  transparent 70%);

  top:-90px;
  right:-90px;

  transition:.5s;
}

.feature-card:hover::before{
  transform:scale(1.4);
}

.feature-card:hover{
  border-color:
  rgba(0,255,136,.22);

  transform:
  translateY(-10px);

  box-shadow:
  0 0 30px rgba(0,255,136,.08);
}

.icon{
  width:60px;
  height:60px;

  border-radius:16px;

  background:
  rgba(0,255,136,.08);

  color:var(--green);

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:22px;
}

.icon i{
  font-size:1.3rem;
}

.feature-card h3{
  margin-bottom:14px;
  font-size:1.3rem;
}

.feature-card p{
  color:#a0a0a0;
  line-height:1.8;
}

/* STATS */

.stats{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(240px,1fr));

  gap:28px;
}

.stat-card{
  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
  );

  border:
  1px solid rgba(255,255,255,.06);

  border-radius:28px;

  padding:45px 35px;

  transition:
  transform .4s ease,
  border-color .4s ease,
  box-shadow .4s ease;
}

.stat-card::before{
  content:'';

  position:absolute;

  width:220px;
  height:220px;

  background:
  radial-gradient(
    circle,
    rgba(0,255,136,.16),
    transparent 70%
  );

  top:-120px;
  right:-120px;

  transition:.5s;
}

.stat-card:hover::before{
  transform:scale(1.5);
}

.stat-card:hover{
  transform:
  translateY(-12px)
  scale(1.02);

  border-color:
  rgba(0,255,136,.28);

  box-shadow:
  0 0 35px rgba(0,255,136,.12);
}

.stat-card h2{
  position:relative;

  color:var(--green);

  font-size:3.5rem;

  margin-bottom:14px;

  z-index:2;
}

.stat-card p{
  position:relative;

  color:#b5b5b5;

  z-index:2;

  font-size:1rem;
}

/* PROJETOS */

.projects-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:28px;
}

.project-card{
  background:rgba(255,255,255,.02);

  border:
  1px solid rgba(255,255,255,.05);

  border-radius:24px;

  overflow:hidden;

  transition:.4s;

  position:relative;
}

.project-card:hover{
  transform:
  translateY(-10px);

  border-color:
  rgba(0,255,136,.25);

  box-shadow:
  0 0 30px rgba(0,255,136,.08);
}

.project-card img{
  width:100%;
  height:240px;

  object-fit:cover;

  transition:.4s;
}

.project-card:hover img{
  transform:scale(1.05);
}

.project-content{
  padding:28px;
}

.project-content h3{
  margin-bottom:12px;
}

.project-content p{
  color:#a0a0a0;
  line-height:1.7;
}

/* FEEDBACKS */

.feedback-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:24px;
}

.feedback-card{
  background:
  linear-gradient(
  180deg,
  rgba(255,255,255,.015),
  rgba(255,255,255,.01)
  );

  border:
  1px solid rgba(255,255,255,.05);

  border-radius:24px;

  padding:35px;

  transition:.4s;

  position:relative;
  overflow:hidden;
}

.feedback-card::before{
  content:'';

  position:absolute;

  width:180px;
  height:180px;

  background:
  radial-gradient(circle,
  rgba(0,255,136,.12),
  transparent 70%);

  top:-90px;
  left:-90px;

  transition:.5s;
}

.feedback-card:hover::before{
  transform:scale(1.4);
}

.feedback-card:hover{
  transform:translateY(-10px);

  border-color:
  rgba(0,255,136,.22);
}

.feedback-top{
  display:flex;
  align-items:center;

  gap:18px;

  margin-bottom:22px;
}

.feedback-top img{
  width:70px;
  height:70px;

  border-radius:50%;

  object-fit:cover;

  border:
  2px solid rgba(0,255,136,.35);
}

.feedback-top span{
  color:#8d8d8d;
  font-size:.9rem;
}

.feedback-card p{
  color:#b5b5b5;
  line-height:1.8;
}

/* EQUIPE */

.team-grid{
  display:flex;

  justify-content:center;
  align-items:stretch;

  gap:18px;

  flex-wrap:wrap;
}

.team-card{
  width:220px;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.015)
  );

  border:
  1px solid rgba(255,255,255,.06);

  border-radius:28px;

  padding:28px 22px;

  text-align:center;

  position:relative;

  overflow:hidden;

  transition:
  transform .4s ease,
  border-color .4s ease,
  box-shadow .4s ease;
}

.team-card::before{
  content:'';

  position:absolute;

  width:180px;
  height:180px;

  background:
  radial-gradient(
    circle,
    rgba(0,255,136,.18),
    transparent 70%
  );

  top:-90px;
  left:-90px;

  transition:.5s;
}

.team-card:hover::before{
  transform:scale(1.4);
}

.team-card:hover{
  transform:
  translateY(-12px)
  scale(1.03);

  border-color:
  rgba(0,255,136,.35);

  box-shadow:
  0 0 35px rgba(0,255,136,.12);
}

.team-card img{
  width:120px;
  height:120px;

  border-radius:50%;

  object-fit:cover;

  margin-bottom:20px;

  border:
  3px solid rgba(0,255,136,.35);

  transition:.4s;
}

.team-card:hover img{
  transform:scale(1.07);

  box-shadow:
  0 0 25px rgba(0,255,136,.25);
}

.team-card h3{
  font-size:1.1rem;

  margin-bottom:10px;
}

.team-card span{
  color:#a5a5a5;

  font-size:.9rem;

  line-height:1.6;

  display:block;
}

/* CTA */

.cta-box{
  background:
  linear-gradient(
  135deg,
  rgba(0,255,136,.14),
  rgba(0,255,136,.04)
  );

  border:
  1px solid rgba(0,255,136,.15);

  border-radius:30px;

  padding:70px;

  text-align:center;
}

.cta-box h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta-box p{
  color:#c2c2c2;

  line-height:1.8;

  max-width:700px;

  margin:auto auto 35px;
}

/* FOOTER */

footer{
  padding:40px;

  border-top:
  1px solid rgba(255,255,255,.05);

  color:#777;

  text-align:center;
}

/* RESPONSIVO */

@media(max-width:980px){

  nav{
    display:none;
  }

  .logo img{
    height:90px;
  }

  .btn{
    padding:14px 22px;
  }

  .section-title h2{
    font-size:2.2rem;
  }

  .cta-box{
    padding:40px;
  }

}

/* =========================================
   ANIMAÇÕES MODERNAS
========================================= */

/* FADE IN GERAL */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

section{
  animation:fadeUp .9s ease;
}

/* =========================================
   SOBRE
========================================= */

.about-section{
  position:relative;
  overflow:hidden;
}

.about-container{
  position:relative;

  max-width:1200px;

  margin:auto;
}

.about-image{
  position:absolute;

  left:-120px;
  top:50%;

  transform:translateY(-50%);

  opacity:.12;

  pointer-events:none;

  z-index:0;
}

.about-glow{
  position:absolute;

  width:220px;
  height:220px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(0,255,136,.22),
    transparent 70%
  );

  filter:blur(20px);

  animation:pulseGlow 5s ease-in-out infinite;
}

.about-image img{
  width:420px;

  filter:
  drop-shadow(0 0 40px rgba(0,255,136,.25));

  animation:floatLogo 6s ease-in-out infinite;

  position:relative;
  z-index:2;

  filter:
  drop-shadow(0 0 25px rgba(0,255,136,.2));

  animation:floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes pulseGlow{

  0%{
    transform:scale(1);
    opacity:.7;
  }

  50%{
    transform:scale(1.08);
    opacity:1;
  }

  100%{
    transform:scale(1);
    opacity:.7;
  }

}

.about-content{
  position:relative;
  z-index:2;
}

.about-content span{
  color:var(--green);

  font-size:.9rem;

  letter-spacing:2px;

  display:block;

  margin-bottom:20px;
}

.about-content h2{
  font-size:3rem;

  line-height:1.2;

  margin-bottom:28px;
}

.about-content p{
  color:#b5b5b5;

  line-height:1.9;

  margin-bottom:22px;

  font-size:1rem;
}

.about-cards{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));

  gap:20px;

  margin-top:40px;
}

.about-card{
  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.015)
  );

  border:
  1px solid rgba(255,255,255,.06);

  border-radius:24px;

  padding:28px;

  transition:.4s;

  position:relative;

  overflow:hidden;
}

.about-card:hover{
  transform:
  translateY(-10px);

  border-color:
  rgba(0,255,136,.28);

  box-shadow:
  0 0 30px rgba(0,255,136,.12);
}

.about-card i{
  font-size:1.5rem;

  color:var(--green);

  margin-bottom:18px;
}

.about-card h3{
  margin-bottom:12px;

  font-size:1.1rem;
}

.about-card p{
  margin:0;

  color:#9f9f9f;

  line-height:1.7;

  font-size:.95rem;
}

/* RESPONSIVO */

@media(max-width:980px){

    .about-image{
    display:none;
  }
  
  .about-container{
    grid-template-columns:1fr;

    gap:50px;
  }

  .about-content h2{
    font-size:2.3rem;
  }

  .about-image img{
    max-width:260px;
  }

}


/* HEADER FLOAT */

header{
  animation:headerDown .8s ease;
}

@keyframes headerDown{
  from{
    opacity:0;
    transform:translateY(-100%);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* BOTÃO PREMIUM */

.btn{
  position:relative;
  overflow:hidden;
}

.btn::before{
  content:'';

  position:absolute;
  top:0;
  left:-120%;

  width:100%;
  height:100%;

  background:
  linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.45),
    transparent
  );

  transition:.7s;
}

.btn:hover::before{
  left:120%;
}

/* LINKS */

nav a{
  position:relative;
}

nav a::after{
  content:'';

  position:absolute;
  left:0;
  bottom:-6px;

  width:0%;
  height:2px;

  background:var(--green);

  transition:.4s;
}

nav a:hover::after{
  width:100%;
}

/* CARDS MAIS FLUIDOS */

.feature-card,
.stat-card,
.project-card,
.feedback-card,
.team-card{
  will-change:transform;
  transform-style:preserve-3d;
}

/* EFEITO GLASS MAIS BONITO */

.feature-card,
.stat-card,
.feedback-card,
.team-card,
.project-card{
  backdrop-filter:blur(14px);
}

/* BRILHO ANIMADO */

@keyframes glowPulse{

  0%{
    box-shadow:
    0 0 0 rgba(0,255,136,0);
  }

  50%{
    box-shadow:
    0 0 35px rgba(0,255,136,.12);
  }

  100%{
    box-shadow:
    0 0 0 rgba(0,255,136,0);
  }

}

.feature-card:hover,
.stat-card:hover,
.project-card:hover,
.feedback-card:hover,
.team-card:hover{
  animation:glowPulse 2s infinite;
}

/* TITULOS */

.section-title h2{
  position:relative;
  display:inline-block;
}

.section-title h2::after{
  content:'';

  position:absolute;
  left:0;
  bottom:-10px;

  width:70px;
  height:4px;

  border-radius:999px;

  background:var(--green);

  box-shadow:
  0 0 15px rgba(0,255,136,.5);
}

/* ICONES */

.icon{
  transition:
  transform .4s ease,
  box-shadow .4s ease;
}

.feature-card:hover .icon{
  transform:
  rotate(6deg)
  scale(1.08);

  box-shadow:
  0 0 25px rgba(0,255,136,.18);
}

/* TEAM IMAGE FLOAT */

.team-card img{
  animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* DOTS */

.dot{
  transition:
  transform .3s ease,
  background .3s ease;
}

.dot:hover{
  transform:scale(1.2);
}

/* FOOTER */

footer{
  position:relative;
  overflow:hidden;
}

footer::before{
  content:'';

  position:absolute;
  top:0;
  left:-100%;

  width:100%;
  height:1px;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(0,255,136,.6),
    transparent
  );

  animation:footerLine 4s linear infinite;
}

@keyframes footerLine{
  to{
    left:100%;
  }
}

/* SCROLLBAR */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#050505;
}

::-webkit-scrollbar-thumb{
  background:
  linear-gradient(
    180deg,
    var(--green),
    #00b85c
  );

  border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
  background:#39ff88;
}

/* BACKGROUND ANIMADO */

body::after{
  animation:bgMove 8s ease-in-out infinite alternate;
}

@keyframes bgMove{

  from{
    transform:translateY(0px);
  }

  to{
    transform:translateY(40px);
  }

}

/* =========================================
   FUNDO ANIMADO MODERNO
========================================= */

body{
  position:relative;
}

/* GRID ANIMADA */

body::before{
  animation:gridMove 18s linear infinite;
}

@keyframes gridMove{

  from{
    transform:translateY(0px);
  }

  to{
    transform:translateY(70px);
  }

}

/* GLOW PRINCIPAL */

body::after{
  animation:blobMove 12s ease-in-out infinite alternate;
  filter:blur(10px);
}

@keyframes blobMove{

  0%{
    transform:
    translate(0px,0px)
    scale(1);
  }

  50%{
    transform:
    translate(-40px,40px)
    scale(1.08);
  }

  100%{
    transform:
    translate(30px,-20px)
    scale(.95);
  }

}

/* PARTÍCULAS */

.bg-particles{
  position:fixed;
  inset:0;

  overflow:hidden;

  z-index:-3;

  pointer-events:none;
}

.bg-particles span{
  position:absolute;
  display:block;

  width:4px;
  height:4px;

  border-radius:50%;

  background:rgba(57,255,136,.35);

  box-shadow:
  0 0 10px rgba(57,255,136,.4);

  animation:particles 20s linear infinite;
}

.bg-particles span:nth-child(1){
  left:10%;
  animation-duration:18s;
  animation-delay:-2s;
}

.bg-particles span:nth-child(2){
  left:20%;
  animation-duration:25s;
  animation-delay:-5s;
}

.bg-particles span:nth-child(3){
  left:35%;
  animation-duration:16s;
}

.bg-particles span:nth-child(4){
  left:50%;
  animation-duration:22s;
}

.bg-particles span:nth-child(5){
  left:65%;
  animation-duration:28s;
}

.bg-particles span:nth-child(6){
  left:80%;
  animation-duration:19s;
}

.bg-particles span:nth-child(7){
  left:90%;
  animation-duration:24s;
}

@keyframes particles{

  from{
    transform:
    translateY(110vh)
    scale(0);

    opacity:0;
  }

  20%{
    opacity:1;
  }

  80%{
    opacity:1;
  }

  to{
    transform:
    translateY(-10vh)
    scale(1.8);

    opacity:0;
  }

}

/* =========================================
   MODAL DA EQUIPE E RESPONSIVIDADE FINAL
========================================= */

body.modal-open{
  overflow:hidden;
}

#sobre,
#servicos,
#resultados,
#projetos,
#equipe,
#contato{
  scroll-margin-top:110px;
}

.team-card{
  cursor:pointer;
  user-select:none;
}

.team-card:focus-visible{
  outline:2px solid var(--green);
  outline-offset:6px;
}

.team-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.3s ease;
  z-index:2000;
}

.team-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.team-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(10px);
}

.team-modal__content{
  position:relative;
  width:min(620px,100%);
  max-height:calc(100vh - 48px);
  overflow-y:auto;
  scrollbar-width:none;
  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,.045),
    rgba(255,255,255,.018)
  );
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:34px;
  box-shadow:0 0 45px rgba(0,255,136,.14);
  transform:translateY(18px) scale(.98);
  transition:.3s ease;
}

.team-modal__content::-webkit-scrollbar{
  display:none;
}

.team-modal.is-open .team-modal__content{
  transform:translateY(0) scale(1);
}

.team-modal__content::before{
  content:'';
  position:absolute;
  width:220px;
  height:220px;
  top:-120px;
  right:-100px;
  background:radial-gradient(circle, rgba(0,255,136,.18), transparent 70%);
  pointer-events:none;
}

.team-modal__close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  color:#fff;
  cursor:pointer;
  transition:.3s;
  z-index:2;
}

.team-modal__close:hover,
.team-modal__close:focus-visible{
  background:var(--green);
  color:#000;
  box-shadow:0 0 20px rgba(0,255,136,.25);
}

.team-modal__profile{
  position:relative;
  display:flex;
  align-items:center;
  gap:24px;
  padding-right:42px;
  z-index:1;
}

.team-modal__photo{
  width:132px;
  height:132px;
  flex:0 0 132px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid rgba(0,255,136,.35);
  box-shadow:0 0 28px rgba(0,255,136,.18);
}

.team-modal__eyebrow{
  display:block;
  margin-bottom:12px;
  color:var(--green);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

.team-modal__content h3{
  margin-bottom:8px;
  font-size:2rem;
  line-height:1.1;
}

.team-modal__role{
  display:block;
  color:#a5a5a5;
  font-size:.98rem;
  line-height:1.5;
}

.team-modal__bio{
  position:relative;
  margin:28px 0;
  color:#c8c8c8;
  line-height:1.9;
  z-index:1;
}

.team-modal__socials{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  z-index:1;
}

.team-modal__socials:empty,
.team-modal__socials[hidden]{
  display:none;
}

.team-modal__social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 18px;
  border:1px solid rgba(0,255,136,.16);
  border-radius:14px;
  background:rgba(0,255,136,.08);
  color:var(--green);
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.team-modal__social:hover{
  transform:translateY(-3px);
  background:var(--green);
  color:#000;
  box-shadow:0 0 22px rgba(0,255,136,.26);
}

.team-modal__social--instagram{
  border-color:rgba(255,255,255,.1);
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color:#fff;
}

.team-modal__social--instagram:hover{
  color:#fff;
  box-shadow:0 0 24px rgba(253,29,29,.28);
}

.team-modal__social--whatsapp{
  background:rgba(37,211,102,.12);
  border-color:rgba(37,211,102,.28);
  color:#25d366;
}

.team-modal__social--whatsapp:hover{
  background:#25d366;
  color:#000;
  box-shadow:0 0 24px rgba(37,211,102,.28);
}

.contact-modal__content{
  width:min(500px,100%);
  padding:30px;
}

.contact-modal__content::before{
  width:260px;
  height:260px;
  top:-150px;
  right:-120px;
}

.contact-modal__header{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
  padding-right:44px;
  z-index:1;
}

.contact-modal__header img{
  width:76px;
  height:76px;
  flex:0 0 76px;
  object-fit:contain;
  filter:drop-shadow(0 0 18px rgba(0,255,136,.24));
}

.contact-modal__header h3{
  font-size:2.1rem;
}

.contact-modal__header .team-modal__eyebrow{
  margin-bottom:8px;
}

.contact-modal__text{
  margin:18px 0 26px;
  max-width:390px;
}

.contact-modal__links{
  flex-direction:column;
}

.contact-modal__link{
  width:100%;
  min-height:74px;
  justify-content:flex-start;
  padding:16px;
  text-align:left;
}

.contact-modal__link > span:not(.contact-modal__icon){
  display:flex;
  min-width:0;
  flex:1;
  flex-direction:column;
  gap:4px;
}

.contact-modal__link strong{
  color:inherit;
  font-size:1rem;
}

.contact-modal__link small{
  color:rgba(255,255,255,.68);
  font-size:.82rem;
  font-weight:500;
  line-height:1.4;
}

.contact-modal__icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 42px;
  border-radius:13px;
  background:rgba(0,0,0,.22);
}

.contact-modal__arrow{
  margin-left:auto;
  color:rgba(255,255,255,.55);
  font-size:.86rem;
  transition:.3s;
}

.contact-modal__link:hover .contact-modal__arrow,
.contact-modal__link:hover small{
  color:currentColor;
}

@media(max-width:1180px){
  header{
    padding:0 5%;
  }

  nav{
    gap:24px;
  }

  section:not(.hero-slider){
    padding:90px 5%;
  }

  .projects-grid{
    grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr));
  }
}

@media(max-width:980px){
  header{
    height:82px;
    padding:0 5%;
  }

  .hero-slider{
    height:min(100vh,760px);
    min-height:560px;
  }

  .slide img{
    object-fit:cover;
  }

  section:not(.hero-slider){
    padding:78px 5%;
  }

  .section-title{
    margin-bottom:46px;
  }

  .about-content h2,
  .section-title h2,
  .cta-box h2{
    font-size:clamp(2rem,6vw,2.35rem);
  }

  .grid,
  .stats,
  .about-cards,
  .projects-grid,
  .feedback-grid{
    grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));
  }

  .team-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }

  .team-card{
    width:100%;
  }
}

@media(max-width:720px){
  header{
    height:auto;
    min-height:74px;
    gap:14px;
    padding:10px 18px;
  }

  .logo img{
    height:72px;
  }

  header .btn{
    padding:12px 16px;
    border-radius:12px;
    font-size:.9rem;
    white-space:nowrap;
  }

  .hero-slider{
    min-height:520px;
  }

  .slider-dots{
    bottom:22px;
  }

  section:not(.hero-slider){
    padding:68px 20px;
  }

  .section-title span,
  .about-content span{
    font-size:.78rem;
  }

  .about-content p,
  .project-content p,
  .feature-card p,
  .stat-card p{
    line-height:1.75;
  }

  .feature-card,
  .stat-card,
  .about-card,
  .project-content{
    padding:24px;
  }

  .project-card img{
    height:210px;
  }

  .team-modal{
    padding:16px;
  }

  .team-modal__content{
    border-radius:24px;
    padding:28px 22px 24px;
  }

  .team-modal__profile{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    padding-right:44px;
  }

  .team-modal__photo{
    width:112px;
    height:112px;
    flex-basis:112px;
  }

  .team-modal__content h3{
    font-size:1.65rem;
  }
}

@media(max-width:520px){
  body::after{
    width:420px;
    height:420px;
    top:-180px;
    right:-210px;
  }

  header{
    align-items:center;
  }

  .logo img{
    height:62px;
  }

  header .btn{
    padding:10px 13px;
    font-size:.82rem;
  }

  .hero-slider{
    min-height:470px;
  }

  .dot{
    width:11px;
    height:11px;
  }

  .section-title h2,
  .about-content h2{
    font-size:1.85rem;
  }

  .section-title p{
    line-height:1.7;
  }

  .team-grid{
    grid-template-columns:1fr;
  }

  .team-card{
    padding:24px 18px;
  }

  .team-card img{
    width:108px;
    height:108px;
  }

  .team-modal__socials{
    flex-direction:column;
  }

  .team-modal__social{
    width:100%;
  }

  footer{
    padding:32px 20px;
    font-size:.9rem;
    line-height:1.6;
  }
}

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