:root{
  --lgpd-text: rgba(255,255,255,.78);
  --lgpd-muted: rgba(255,255,255,.62);
  --lgpd-title: rgba(255,255,255,.95);
  --lgpd-panel: rgba(255,255,255,.06);
  --lgpd-border: rgba(255,255,255,.10);
  --lgpd-radius: 18px;
}

/* HERO */
.lgpd-hero{
  position: relative;
  padding: 92px 0 50px;
  overflow: hidden;
}

.lgpd-hero__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(43,123,255,.18), transparent 60%),
    radial-gradient(900px 480px at 80% 40%, rgba(100,220,255,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
}

.lgpd-hero__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.lgpd-hero__title{
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lgpd-title);
}

.lgpd-hero__subtitle{
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 16px;
  color: var(--lgpd-muted);
}

/* CONTEÚDO */
.lgpd{
  padding: 30px 0 90px;
}

.lgpd__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.lgpd__text{
  background: var(--lgpd-panel);
  border: 1px solid var(--lgpd-border);
  border-radius: var(--lgpd-radius);
  padding: clamp(22px, 4vw, 36px);
}

.lgpd__heading{
  margin-bottom: 16px;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: .04em;
  color: var(--lgpd-title);
}

.lgpd__text p{
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--lgpd-text);
}

/* RESPONSIVO */
@media (max-width: 640px){
  .lgpd-hero{ padding: 78px 0 42px; }
  .lgpd__text{ padding: 22px; }
  .lgpd__heading{ font-size: 22px; }
}

/* ===============================
   Entregáveis 
   =============================== */

   /* HERO */
.deliverables-hero{
  padding: 90px 20px 50px;
  text-align: center;
}

.deliverables-hero h1{
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.deliverables-hero p{
  margin-top: 14px;
  color: rgba(255,255,255,.65);
  max-width: 700px;
  margin-inline: auto;
}

/* CARROSSEL (alinhamento estável) */
.deliverables-carousel{
  position: relative;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 14px;
}

.carousel-viewport{
  overflow: hidden;               /* trava o conteúdo */
  border-radius: 20px;            /* acompanha o card */
}

.carousel-track{
  display: flex;
  width: 100%;
  transform: translate3d(0,0,0);
  transition: transform .45s cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

.carousel-card{
  flex: 0 0 100%;                 /* 1 card por tela, perfeito */
  width: 100%;

  /* visual (mantém futurista) */
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);

  position: relative;
  overflow: hidden;
}

/* glow e shine (sem bug / sem flicker) */
.carousel-card::before{
  content:"";
  position:absolute;
  top:-70px;
  right:-80px;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(100,220,255,.22), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(43,123,255,.18), transparent 62%);
  filter: blur(14px);
  opacity: .75;
  pointer-events: none;
}

.carousel-card::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-70%;
  width: 60%;
  height: 180%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.10), transparent);
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

.carousel-card:hover::after{
  opacity: 1;
  animation: deliverablesShine .9s ease forwards;
}

@keyframes deliverablesShine{
  from{ transform: translateX(-20%) rotate(18deg); }
  to{ transform: translateX(140%) rotate(18deg); }
}

/* ===============================
   AJUSTE SIMPLES – TEXTO ENTREGÁVEIS
   =============================== */

/* título do card */
.carousel-card h2{
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.2;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

/* texto do card */
.carousel-card p{
  font-size: clamp(13.5px, 2.4vw, 15.5px);
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}

/* mobile específico */
@media (max-width: 600px){
  .carousel-card{
    padding: 22px; /* só um respiro melhor */
  }

  .carousel-card h2{
    font-size: 18px;
  }

  .carousel-card p{
    font-size: 13.5px;
    text-align: justify;
    hyphens: auto;
  }
}

/* BOTÕES */
.carousel-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.carousel-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
}
