/* =========================
   BANNER COMPLETO
========================= */

.post-hero-vix {
    width: 100%;
    padding: 80px 20px 0;
    display: flex;
    justify-content: center;
}

.post-hero-vix-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

/* LOGO */
.post-hero-vix-logo img {
    max-width: 180px;
    margin-bottom: 40px;
}

/* TEXTO PRINCIPAL */
.post-hero-vix-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    font-size: 3rem !important;

}

/* IMAGEM DE BAIXO */
.post-hero-vix-image img {
    width: 100vw;          
    max-width: 100vw;      
    height: auto;
    display: block;
    margin-left: 50%;
    transform: translateX(-50%) translateY(40px);
    border-radius: 0;      
}

.vix-divider:last-of-type {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .post-hero-vix {
        padding: 60px 16px 0;
    }

}


/* ------ carrossel de comentarios-------*/

/* =========================
   SEÇÃO
========================= */
.comentarios-section {
  background: #6f3cff;
  padding: 90px 0;
  overflow: hidden;
}

.comentarios-title {
  text-align: center;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 60px;
}

/* =========================
   CARROSSEL
========================= */
.comentarios-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.comentarios-track {
  display: flex;
  gap: 40px;
  animation: scrollInfinito 40s linear infinite;
  align-items: center;
}


.comentarios-carousel:hover .comentarios-track {
  animation-play-state: paused;
}

/* =========================
   CARD
========================= */
.comentario-card {
  min-width: 360px;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  transition: all 0.5s ease;
}

/* CARD CENTRAL (DESTAQUE) */
.comentario-card.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* =========================
   TEXTO (caso não seja imagem)
========================= */
.comentario-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

.comentarios-carousel::before,
.comentarios-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}


.comentarios-carousel::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(111, 60, 255, 0.85),
    rgba(111, 60, 255, 0.4),
    transparent
  );
}


.comentarios-carousel::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(111, 60, 255, 0.85),
    rgba(111, 60, 255, 0.4),
    transparent
  );
}

/* =========================
   ANIMAÇÃO
========================= */
@keyframes scrollInfinito {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .comentario-card {
    min-width: 280px;
    padding: 20px;
  }

  .comentarios-title {
    font-size: 32px;
  }
}



/* Principais resultados */
.vix-results-section {
    background-color: #6f3cff;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.vix-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Título */
.vix-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #ffffff !important;
}

/* Texto dos parágrafos */
.vix-content p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    /* padding-bottom: 20px; */
    padding-top: 30px;
}


.vix-divider {
    position: relative;
    height: 60px;
    margin: 30px 0;
    background-size: 28px;
    opacity: 0.9;
}

.vix-divider img{
    margin: 0 auto;

}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .vix-title { font-size: 32px; }
    .vix-content p { font-size: 16px; }
}

/* <!-- Veja mais histórias de sucesso --> */

.success-stories.is-single {
    background: #6b3df5;
    padding: 100px 0 120px;
    background: #ff000000 !important;
    /* top: 75px; */
    position: relative;
}

/* TÍTULO */
.success-stories.is-single .success-title {
    color: #6f3cff;
    text-align: center;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 64px;
    /* display: none; */
    text-decoration: underline;
    cursor: pointer;
    font-size: 2.25rem !important;
    line-height: 2.5rem;
}

/* GRID */
.success-stories.is-single .success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px!important;
}

/* CARD */
.success-stories.is-single .success-card {
    background: #f5f5f500;
    border-radius: 22px;
    padding: 14px;
    transition: transform .3s ease, box-shadow .3s ease;
    z-index: 999;
}

.success-stories.is-single .success-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgb(0 0 0 / 0%);
}

/* IMAGEM */
.success-stories.is-single .success-image img {
    width: 100%;
    height: auto;
    max-width: 541px;
}

/* LOGO */
.success-stories.is-single .success-brand-logo img {
    max-width: 84px;
    margin-top: 0px;
    margin-left: 24px;
}

.success-stories.is-single .success-logos-container {
    height: 359px;
    background: linear-gradient(to top, #000 30%, transparent 0);
    border-radius: 30px;
}

/* TEXTO */
.success-stories.is-single .success-content p {
    color: #111;
    /* font-size: 1.05rem; */
    /* font-weight: 700; */
    /* line-height: 1.45; */
    margin-bottom: 22px;
    font-weight: 700;
    font-size: 1.375rem !important;
    line-height: 2.25rem;
    max-width: 620px;
}

/* LINK */
.success-stories.is-single .success-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    font-weight: 600;
    color: #5b3df5;
    text-decoration: none;
}

.success-stories.is-single .success-link img,
.success-stories.is-single .success-link .arrow {
    transition: transform .3s ease;
}

.success-stories.is-single .success-link:hover img,
.success-stories.is-single .success-link:hover .arrow {
    transform: translateX(6px);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .success-stories.is-single .success-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .success-stories.is-single {
        padding: 70px 0 90px;
    }

    .success-stories.is-single .success-title {
        font-size: 2.4rem;
        margin-bottom: 48px;
    }

    .success-stories.is-single .success-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .success-stories.is-single .success-image img {
        height: 200px;
    }

    .success-stories.is-single .success-card{
        padding: 0;
    }
}

/* =========================================
   IMAGEM SUPERIOR DO CARD (SINGLE)
========================================= */

.success-stories.is-single .success-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.success-stories.is-single .success-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

/* DEGRADÊ ESCURO */
.success-stories.is-single .success-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 35%,
        rgba(0, 0, 0, 0) 65%
    );
    pointer-events: none;
}

/* LOGO SOBRE A IMAGEM */
.success-stories.is-single .success-brand-logo {
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.success-stories.is-single .success-brand-logo img {
    max-width: 90px;
    height: auto;
    display: block;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .success-stories.is-single .success-image img {
        height: 360px;
    }
}

@media (max-width: 640px) {
    .success-stories.is-single .success-image img {
        height: 280px;
        border-radius: 22px;
    }
}
  



/* CTA Final */
.bottom-cta { margin-top: 60px; }
.bottom-cta p { color: #6A32FF; font-weight: 700; font-size: 18px; margin-bottom: 15px; }
.btn-talk {
    background-color: #6A32FF;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}
