/* ============================================
   CTA FINAL + FOOTER — LJR Digital Studio
============================================ */

/* ==============================
   CTA FINAL BANNER
============================== */

/* ==============================
   CTA FINAL BANNER (FULL-BLEED 100%)
============================== */

.cta-final {
  width: 100%;
  background: linear-gradient(135deg, #030712 0%, #091638 50%, #04091A 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

/* Glow azul no fundo do personagem */
.cta-final__glow {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0.08) 55%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

/* Linhas decorativas sutis */
.cta-final__lines {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.cta-final__lines svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Grid Principal de 3 Colunas: Headline (~32%), Action (~26%), Ilustração (~42%) */
.cta-final__grid {
  display: grid;
  grid-template-columns: 32% 26% 42%;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ——— Coluna 1: Headline — Centralizada Verticalmente ——— */
.cta-final__col-headline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  margin: 0;
  padding: 0;
  padding-bottom: 60px;
}

.cta-final__headline {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  margin: 0;
}

.cta-final__headline--blue {
  color: var(--blue);
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ——— Coluna 2: Descrição + CTA — Centralizada Verticalmente ——— */
.cta-final__col-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
  justify-content: center;
  padding-left: clamp(20px, 3.5vw, 48px);
  align-self: center;
  margin: 0;
  padding-top: 0;
  padding-bottom: 60px;
}

.cta-final__desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 330px;
  margin: 0;
  font-weight: 400;
  text-align: left;
}

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: var(--btn-height);
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5), 0 0 20px rgba(37, 99, 235, 0.3);
  transition: all var(--trans-base);
  text-decoration: none;
  cursor: pointer;
}

.cta-final__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.7), 0 0 30px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: var(--white);
}

.cta-final__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ——— Coluna 3: Ilustração em PNG Transparente — Harmoniosa e Sem Cortes ——— */
.cta-final__col-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: flex-end;
  width: 100%;
  min-height: 380px;
  z-index: 2;
}

.cta-final__illustration-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}

/* 1. Glow Azul (#2563EB) extremamente suave */
.cta-final__glow-primary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.3) 0%, rgba(37, 99, 235, 0.08) 55%, transparent 75%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

/* 2. Segundo Glow Azul Escuro bem difuso */
.cta-final__glow-secondary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 135%;
  height: 135%;
  background: radial-gradient(ellipse at center, rgba(9, 22, 56, 0.85) 0%, rgba(4, 9, 26, 0.5) 60%, transparent 80%);
  filter: blur(75px);
  pointer-events: none;
  z-index: 0;
}

/* Partículas Azuis Flutuantes Discretas */
.cta-final__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-particle {
  position: absolute;
  border-radius: 50%;
  background: #60A5FA;
  box-shadow: 0 0 10px #3B82F6, 0 0 20px #2563EB;
  opacity: 0.65;
  animation: particleFloat 7s ease-in-out infinite alternate;
}

.cta-particle.p1 {
  width: 5px;
  height: 5px;
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}

.cta-particle.p2 {
  width: 3px;
  height: 3px;
  top: 72%;
  left: 22%;
  animation-delay: 1.8s;
}

.cta-particle.p3 {
  width: 4px;
  height: 4px;
  top: 25%;
  right: 18%;
  animation-delay: 3.5s;
}

.cta-particle.p4 {
  width: 5px;
  height: 5px;
  bottom: 22%;
  right: 12%;
  animation-delay: 4.8s;
}

.cta-particle.p5 {
  width: 3px;
  height: 3px;
  top: 12%;
  right: 38%;
  animation-delay: 2.2s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) scale(0.9);
    opacity: 0.35;
  }

  100% {
    transform: translateY(-14px) scale(1.25);
    opacity: 0.85;
  }
}

/* Bloom sutil na tela do notebook */
.cta-final__bloom-laptop {
  position: absolute;
  top: 40%;
  left: 54%;
  width: 190px;
  height: 130px;
  background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.35) 0%, rgba(37, 99, 235, 0.12) 50%, transparent 80%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 1;
  animation: bloomPulse 4s ease-in-out infinite alternate;
}

@keyframes bloomPulse {
  0% {
    opacity: 0.55;
    transform: scale(0.95);
  }

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

/* Imagem Principal (Ilustração em PNG Transparente - TOTALMENTE ESTÁTICA E HARMONIOSA) */
.cta-final__illustration-img {
  width: 100%;
  max-width: 480px;
  max-height: 410px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  display: block;
  margin-right: -3%;
  margin-bottom: 0;
  align-self: flex-end;
  transform: none !important;
  animation: none !important;
  transition: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 25px rgba(37, 99, 235, 0.22));
}

.cta-final__illustration-img:hover {
  transform: none !important;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 25px rgba(37, 99, 235, 0.22));
}

@keyframes ctaFloat {

  0%,
  100% {
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(0px);
  }

  50% {
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(-6px);
  }
}

/* ==============================
   FOOTER
============================== */

.footer {
  background: var(--black);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ——— Brand ——— */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__logo-link {
  display: inline-block;
  align-self: flex-start;
  transition: opacity var(--trans-base);
}

.footer__logo-link:hover {
  opacity: 0.85;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__copy-mini {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

/* ——— Colunas de Links ——— */
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--trans-base);
  line-height: 1;
}

.footer__link:hover {
  color: var(--white);
}

/* ——— Contato ——— */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--blue);
}

.footer__location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  cursor: default;
}

/* ——— Bottom Bar ——— */
.footer__bottom {
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}