: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;
  padding-top: 40px !important;
}

.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;
  }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.faq-item[open] {
  border-color: rgba(0, 255, 136, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  color: #00ff88;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 28px 24px 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-answer strong {
  color: #00ff88;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 4%;
  }

  .faq-item summary {
    padding: 18px 20px;
  }

  .faq-item summary h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 0.92rem;
  }
}

/* CONTACT SERVICE SELECTOR BUTTONS */
.contact-service-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e5e7eb;
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.contact-service-btn:hover {
  background: rgba(0, 255, 136, 0.15);
  border-color: rgba(0, 255, 136, 0.4);
  color: #00ff88;
  transform: translateY(-1px);
}

.contact-service-btn.active {
  background: #00ff88;
  border-color: #00ff88;
  color: #050505;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.35);
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   INFLUENCER STORIES / VÍDEOS DE STATUS SECTION
   ========================================================================== */

.influencer-stories-section {
  padding: 5px 8% 0 8%;
  margin-top: -35px;
  position: relative;
  z-index: 10;
}

/* Animação em cascata (staggered reveal) ao rolar a página até a seção de vídeos */
.influencer-stories-section.reveal-on-scroll {
  opacity: 0;
  transform: translateY(45px) scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.influencer-stories-section.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.influencer-stories-section .stories-title-group,
.influencer-stories-section .stories-scroll-controls {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.influencer-stories-section.is-revealed .stories-title-group,
.influencer-stories-section.is-revealed .stories-scroll-controls {
  opacity: 1;
  transform: translateY(0);
}

@keyframes storyItemPop {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.88);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.influencer-stories-section.is-revealed .story-item {
  animation: storyItemPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.influencer-stories-section.is-revealed .story-item:nth-child(1) { animation-delay: 0.1s; }
.influencer-stories-section.is-revealed .story-item:nth-child(2) { animation-delay: 0.2s; }
.influencer-stories-section.is-revealed .story-item:nth-child(3) { animation-delay: 0.3s; }
.influencer-stories-section.is-revealed .story-item:nth-child(4) { animation-delay: 0.4s; }
.influencer-stories-section.is-revealed .story-item:nth-child(5) { animation-delay: 0.5s; }
.influencer-stories-section.is-revealed .story-item:nth-child(6) { animation-delay: 0.6s; }

.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
}

.stories-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--green);
  text-transform: uppercase;
  background: rgba(0, 255, 136, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.25);
  margin-bottom: 8px;
}

.stories-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stories-scroll-controls {
  display: flex;
  gap: 10px;
}

.stories-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stories-nav-btn:hover {
  background: var(--green);
  color: #050505;
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
}

.stories-track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
}

.stories-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 22px 8px 16px 8px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.stories-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* STORY ITEM (BUBBLE CARD) */
.story-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 105px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  outline: none;
}

.story-item:hover {
  transform: translateY(-6px);
}

.story-item:hover .story-avatar-ring {
  box-shadow: 0 0 22px rgba(0, 255, 136, 0.45);
}

.story-avatar-wrapper {
  position: relative;
  width: 82px;
  height: 82px;
  margin-bottom: 10px;
}

.story-avatar-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--green), #00d2ff, #9000ff);
  background-size: 200% 200%;
  animation: storyGlow 4s ease infinite;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.25);
  transition: all 0.3s ease;
}

.story-item.is-viewed .story-avatar-ring {
  background: rgba(255, 255, 255, 0.2);
  animation: none;
  box-shadow: none;
}

.story-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #050505;
  background: #111;
}

@keyframes storyGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.story-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-new {
  background: linear-gradient(135deg, #00ff88, #00c853);
  color: #050505;
}

.badge-live {
  background: linear-gradient(135deg, #ff0055, #ff3366);
  color: #ffffff;
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
}

.badge-review {
  background: linear-gradient(135deg, #00d2ff, #0072ff);
  color: #ffffff;
}

.badge-depoimento {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #ffffff;
}

.badge-case {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #050505;
}

.story-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.story-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.story-views {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.story-views i {
  font-size: 0.6rem;
  color: var(--green);
}

/* ==========================================================================
   MODAL PLAYER DE VÍDEO VERTICAL (STORIES / REELS)
   ========================================================================== */

.stories-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stories-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.stories-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
}

.stories-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: 90vh;
  max-height: 760px;
  background: #09090b;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 255, 136, 0.15);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stories-modal.is-open .stories-modal-container {
  transform: scale(1);
}

/* BARRAS DE PROGRESSO */
.stories-modal-progress {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  gap: 6px;
  padding: 4px 0;
}

.story-progress-item {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.story-progress-item:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: scaleY(1.4);
}

.story-progress-fill {
  height: 100%;
  width: 0%;
  background: #ffffff;
  border-radius: 4px;
  transition: width 0.08s linear;
}

.stories-modal-counter {
  font-size: 0.7rem;
  font-weight: 800;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.15);
  padding: 1px 7px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  letter-spacing: 0.3px;
  display: inline-block;
  vertical-align: middle;
}

/* CABEÇALHO DO INFLUENCER */
.stories-modal-header {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding-bottom: 25px;
}

.stories-modal-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stories-modal-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.stories-modal-user-info {
  display: flex;
  flex-direction: column;
}

.stories-modal-user-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.stories-modal-user-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 5px;
}

.stories-modal-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stories-modal-ctrl-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.stories-modal-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

/* ÁREAS DE TOQUE / CLIQUE LATERAL */
.stories-touch-zone {
  position: absolute;
  top: 70px;
  bottom: 110px;
  width: 35%;
  z-index: 8;
  cursor: pointer;
}

.stories-touch-prev {
  left: 0;
}

.stories-touch-next {
  right: 0;
}

/* ÁREA DE CONTEÚDO E MÍDIA */
.stories-modal-media-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-media-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stories-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stories-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 20%, transparent 65%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* FOOTER OVERLAY */
.stories-modal-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

.stories-modal-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.stories-modal-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  background: var(--green);
  color: #050505;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transition: all 0.3s ease;
  text-align: center;
}

.stories-modal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
  background: #32ed7d;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .influencer-stories-section {
    padding: 10px 5% 5px 5%;
  }

  .stories-heading {
    font-size: 1.4rem;
  }

  .stories-nav-btn {
    display: none;
  }

  .story-item {
    width: 90px;
  }

  .story-avatar-wrapper {
    width: 72px;
    height: 72px;
  }

  .stories-modal-container {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }
}

/* ==========================================================================
   VÍDEO HTML5 & BARRA DE REDES SOCIAIS (YOUTUBE, INSTAGRAM, TIKTOK)
   ========================================================================== */

.stories-media-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

.stories-media-bg-blur {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  object-fit: cover;
  filter: blur(30px) brightness(0.45);
  transform: scale(1.15);
  pointer-events: none;
  z-index: 1;
}

.stories-media-video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}

.stories-media-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* FLOATING SOCIAL CORNER BUTTONS */
.stories-social-corner {
  position: absolute;
  right: 14px;
  top: 85px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.social-corner-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-corner-btn .social-tooltip {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(5, 5, 5, 0.92);
  color: #ffffff;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.3px;
}

.social-corner-btn:hover {
  transform: scale(1.15) translateX(-2px);
}

.social-corner-btn:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* INSTAGRAM HOVER */
.social-corner-btn.social-insta:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #cc2366;
  box-shadow: 0 0 16px rgba(220, 39, 67, 0.6);
  color: #ffffff;
}

/* YOUTUBE HOVER */
.social-corner-btn.social-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.6);
  color: #ffffff;
}

/* TIKTOK HOVER */
.social-corner-btn.social-tiktok:hover {
  background: #000000;
  border-color: #00f2fe;
  box-shadow: 0 0 16px rgba(0, 242, 254, 0.6), 0 0 8px rgba(254, 44, 85, 0.6);
  color: #00f2fe;
}



