/*
 * ===============================================
 * VITRINE DE AULAS - DESIGN MODERNO
 * Inspirado em cards verticais com bordas arredondadas
 * ===============================================
 */

/* Container do grid de aulas */
.aulas-grid-vitrine {
    /* display: flex; */
    /* gap: 20px; */
    overflow-x: auto;
    /* overflow-y: hidden; */
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Esconder scrollbar nativa (opcional) */
.aulas-grid-vitrine::-webkit-scrollbar {
    height: 0;
    display: none;
}

/* Card da aula */
.aula-card-vitrine {
    flex: 0 0 280px;
    width: 280px;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
    /* background: #fff; */
}

.aula-card-vitrine:hover {
    transform: translateY(-5px);
}

.aula-card-vitrine a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Container da thumbnail */
.aula-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 20px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Imagem da aula */
.aula-thumbnail img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.aula-card-vitrine:hover .aula-thumbnail img {
    transform: scale(1.05);
}

/* Placeholder quando não há imagem */
.no-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Título abaixo da thumbnail */
.aula-titulo {
    margin: 0;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-align: left;
}

/*
 * ===============================================
 * AULAS BLOQUEADAS (Pro/Sem acesso)
 * ===============================================
 */

/* Filtro P&B apenas (sem escurecer) */
.aula-card-vitrine.lesson-locked img {
    filter: grayscale(100%) brightness(1);
    -webkit-filter: grayscale(100%) brightness(1);
}

/* Overlay de bloqueio */
.aula-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* Ícone do cadeado */
.lock-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.lock-icon svg {
    width: 24px;
    height: 24px;
    color: #333;
}

/*
 * ===============================================
 * SCROLLBAR CUSTOMIZADA (parte inferior)
 * ===============================================
 */

.custom-scroll-wrapper {
    position: relative;
    width: 100%;
}

.scrollbar-custom {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.scrollbar-custom-bar {
    height: 100%;
    position: relative;
}

.scrollbar-custom-bar > div {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.scrollbar-custom-bar > div:hover {
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
}

/*
 * ===============================================
 * RESPONSIVIDADE
 * ===============================================
 */

@media (max-width: 768px) {
    .aula-card-vitrine {
        flex: 0 0 220px;
        width: 220px;
    }

    .aula-titulo {
        font-size: 14px;
        padding: 12px;
    }

    .lock-icon {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .lock-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .aula-card-vitrine {
        flex: 0 0 180px;
        width: 180px;
    }

    .aula-titulo {
        font-size: 13px;
        padding: 10px;
    }
}
.sopro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.sopro-video-section {
  padding: 30px 20px;
  text-align: center;
}

.sopro-video-placeholder {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 245, 230, 0.1);
  border-radius: 20px;
  padding: 100px 40px;
  border: 3px dashed #FFD99D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.sopro-video-icon {
  font-size: 80px;
  color: #FFD99D;
  margin-bottom: 20px;
  opacity: 0.7;
}

.sopro-video-text {
  color: #FFF5E6;
  font-size: 20px;
  font-weight: 600;
}

.sopro-video-frame {
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(255, 138, 0, 0.3);
  border: 3px solid #FFD99D;
  background: #000;
  display: inline-block;
  position: relative;
    width: 100%;
    height: 600px;
    z-index: 0;
}

.sopro-video-frame iframe {
  position: absolute;
    top: 70%;
    left: 50%;
    width: 177.7vh;
    /* 100vh * 16/9 -> Garante que a largura seja suficiente para a altura */
    height: 100vw;
    /* 100vw * 9/16 -> Garante que a altura seja suficiente para a largura */
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.sopro-transformation-section {
  background: #FFF5E6;
  padding: 80px 20px;
}

.sopro-main-title {
  color: #4C4A47;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sopro-main-subtitle {
  color: #4C4A47;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  opacity: 0.9;
}
/* Grid dos 3 Pilares */
.sopro-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.sopro-pillar-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(76, 74, 71, 0.08);
  border: 2px solid #EAC8A6;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.sopro-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FF8A00 0%, #FFD99D 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.sopro-pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 138, 0, 0.15);
  border-color: #FF8A00;
}
.sopro-pillar-card:hover::before {
  transform: scaleX(1);
}
.sopro-pillar-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 138, 0, 0.2));
}
.sopro-pillar-title {
  color: #FF8A00;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.sopro-pillar-description {
  color: #4C4A47;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}
/* === SECTION 3: BENEFÍCIOS === */
.sopro-benefits-section {
  background: linear-gradient(135deg, #FF8A00 0%, #FFD99D 100%);
  padding: 80px 20px;
  border-radius: 20px;
  /* width: 1500px; */
}
.sopro-benefits-main-title {
  color: #FFF5E6;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
}
.sopro-highlight {
  color: #FF8A00;
  position: relative;
}
.sopro-benefits-subtitle {
  color: #FFF5E6;
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  opacity: 0.9;
}
/* Layout Benefícios + Card */
.sopro-benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
/* Lista de Benefícios */
.sopro-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  width: 100%;
}
.sopro-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #FFF5E6 0%, #EAC8A6 100%);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #FF8A00;
  border: 2px solid rgba(255, 138, 0, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 138, 0, 0.1);
}
.sopro-benefit-item:hover {
  background: linear-gradient(135deg, #FFD99D 0%, #FF8A00 100%);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 138, 0, 0.2);
  border-color: #FF8A00;
}
.sopro-benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 138, 0, 0.4));
}
.sopro-benefit-content {
  color: #4C4A47;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}
.sopro-benefit-content strong {
  color: #FF8A00;
  font-weight: 700;
}
/* === CARD DE PREÇO === */
.sopro-price-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 3px solid #EAC8A6;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.sopro-card-badge {
  position: absolute;
  top: -15px;
  right: 25px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  transform: rotate(2deg);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}
.sopro-card-title {
  color: #4C4A47;
  font-size: 28px;
  font-weight: 800;
  margin: 25px 0 8px;
  text-align: center;
}
.sopro-card-subtitle {
  color: #4C4A47;
  opacity: 0.7;
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}
.sopro-price {
  text-align: center;
  margin: 25px 0 8px;
}
.sopro-currency {
  color: #4C4A47;
  font-size: 28px;
  font-weight: 700;
  vertical-align: top;
  margin-right: 5px;
}
.sopro-amount {
  color: #FF8A00;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
.sopro-cents {
  color: #4C4A47;
  font-size: 36px;
  font-weight: 700;
  vertical-align: top;
}
.sopro-installment {
  text-align: center;
  color: #4C4A47;
  opacity: 0.7;
  font-size: 15px;
  margin-bottom: 30px;
}
/* Features do Card */
.sopro-card-features {
  margin: 30px 0;
  padding: 0 5px;
}
.sopro-feature-item {
  display: flex;
  align-items: center;
  padding: 14px 10px;
  border-bottom: 1px solid #EAC8A6;
  color: #4C4A47;
  font-size: 15px;
  transition: all 0.3s ease;
}
.sopro-feature-item:last-child {
  border-bottom: none;
}
.sopro-feature-item:hover {
  background: #FFF5E6;
  padding-left: 15px;
}
.sopro-feature-icon {
  color: #FF8A00;
  font-weight: bold;
  margin-right: 12px;
  font-size: 18px;
}
.sopro-guarantee {
  text-align: center;
  color: #4C4A47;
  opacity: 0.6;
  font-size: 13px;
  margin: 20px 0 0;
  font-style: italic;
}
/* === BOTÕES === */
.sopro-cta-center {
  text-align: center;
  margin: 40px 0;
}
/* Botão Primário */
.sopro-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #FF8A00 0%, #FFD99D 100%);
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 138, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sopro-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}
.sopro-btn-primary:hover::before {
  left: 100%;
}
.sopro-btn-primary:hover {
  background: linear-gradient(135deg, #C7652B 0%, #FF8A00 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(199, 101, 43, 0.5);
  color: #FFFFFF;
  text-decoration: none;
}
.sopro-btn-primary:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.4);
}
/* Animação de Pulso */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 138, 0, 0.6), 0 0 30px rgba(255, 138, 0, 0.3);
  }
}
.sopro-btn-primary {
  animation: pulse-glow 2.5s infinite;
}
/* Botão do Card */
.sopro-btn-card {
  display: block;
  
  background: linear-gradient(135deg, #FF8A00 0%, #FFD99D 100%);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 138, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 30px 0 20px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sopro-btn-card::after {
  content: '→';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}
.sopro-btn-card:hover::after {
  opacity: 1;
  right: 25px;
}
.sopro-btn-card:hover {
  background: linear-gradient(135deg, #C7652B 0%, #FF8A00 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(199, 101, 43, 0.45);
  color: #FFFFFF;
  text-decoration: none;
  padding-right: 50px;
}
.sopro-btn-card:active {
  transform: translateY(-1px);
}
/* === RESPONSIVIDADE === */
@media (max-width: 992px) {
  .sopro-benefits-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sopro-price-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .sopro-pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sopro-main-title,
  .sopro-benefits-main-title {
    font-size: 32px;
  }

  .sopro-main-subtitle,
  .sopro-benefits-subtitle {
    font-size: 16px;
  }

  .sopro-amount {
    font-size: 64px;
  }

  .sopro-btn-primary {
    font-size: 18px;
    padding: 18px 40px;
  }

  .sopro-video-placeholder {
    padding: 60px 20px;
    min-height: 300px;
  }

  .sopro-video-icon {
    font-size: 60px;
  }

  .sopro-video-frame {
    max-width: 100%;
    margin: 0 auto;
  }

  .sopro-video-frame iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 750/422;
  }

  .sopro-transformation-section,
  .sopro-benefits-section {

    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .sopro-main-title,
  .sopro-benefits-main-title {
    font-size: 26px;
  }

  .sopro-pillar-card {
    padding: 30px 20px;
  }

  .sopro-price-card {
    padding: 30px 25px;
  }

  .sopro-benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .sopro-btn-primary {
    font-size: 16px;
    padding: 16px 35px;
  }
}

/* === ANIMAÇÕES EXTRAS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sopro-pillar-card,
.sopro-benefit-item,
.sopro-price-card {
  animation: fadeInUp 0.8s ease-out;
}

/* Delay para animação em cascata */
.sopro-pillar-card:nth-child(1) { animation-delay: 0.1s; }
.sopro-pillar-card:nth-child(2) { animation-delay: 0.2s; }
.sopro-pillar-card:nth-child(3) { animation-delay: 0.3s; }

.sopro-benefit-item:nth-child(1) { animation-delay: 0.1s; }
.sopro-benefit-item:nth-child(2) { animation-delay: 0.2s; }
.sopro-benefit-item:nth-child(3) { animation-delay: 0.3s; }
.sopro-benefit-item:nth-child(4) { animation-delay: 0.4s; }

.sopro-access-section {
  padding: 60px 20px;
  text-align: center;
}

.sopro-access-title {
  color: #FF8A00;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sopro-access-subtitle {
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}
