/* ================= RESET ================= */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}


/* ================= HERO ================= */

.lpic1-container {
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(180deg,#0b1320,#020617);
  color: #ffffff;
}

.lpic1-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;

  align-items: start;
  overflow: visible;
}

/* LEFT HERO */

.lpic1-hero-left {
  width: 100%;
}

/* Breadcrumb */

.lpic1-breadcrumb {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
}

/* Badges */

.lpic1-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.lpic1-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.lpic1-badge-orange {
  background: #ff7a00;
}

.lpic1-badge-dark {
  background: #1f2937;
}

.lpic1-badge-green {
  background: #22c55e;
}

/* Titles */

.lpic1-title {
  font-size: 38px;
  margin: 10px 0;
}

.lpic1-subtitle {
  color: #cbd5e1;
  margin-bottom: 12px;
}

/* Meta */

.lpic1-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #facc15;
}

.lpic1-meta small {
  color: #9ca3af;
}


/* ================= VIDEO ================= */

/* VIDEO THUMB */

.lpic1-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.lpic1-play-button {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lpic1-play-button::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 5px;
}

.lpic1-video-thumb {
  cursor: pointer;
}

.lpic1-video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Button Overlay */

.lpic1-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 64px;
  color: white;

  background: linear-gradient(
    rgba(0,0,0,.2),
    rgba(0,0,0,.6)
  );

  transition: .2s ease;
}

.lpic1-video-thumb:hover .lpic1-video-overlay {
  background: linear-gradient(
    rgba(0,0,0,.1),
    rgba(0,0,0,.5)
  );
  transform: scale(1.03);
}


/* ================= ASIDE STICKY ================= */

.lpic1-aside {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  height: max-content;
  z-index: 10;
}


/* ================= BUY CARD ================= */

.lpic1-buy-card {
  background: #ffffff;
  color: #000000;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

/* Price header */

.lpic1-price-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lpic1-old-price {
  color: #6b7280;
  text-decoration: line-through;
}

.lpic1-discount-badge {
  background: #ef4444;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.lpic1-main-price {
  font-size: 42px;
  font-weight: 800;
  color: #ff6a00;
  margin: 10px 0;
}

.lpic1-installment {
  font-size: 15px;
  color: #475569;
}

/* CTA */

.lpic1-buy-button {
  width: 100%;
  margin: 18px 0;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg,#ff7a00,#e11d48);
  box-shadow: 0 8px 20px rgba(255,122,0,.4);
  transition: .2s ease;
}

.lpic1-buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255,122,0,.5);
}


/* Mini guarantee */

.lpic1-mini-guarantee {
  background: #ecfdf5;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.lpic1-mini-guarantee strong {
  color: #065f46;
  display: block;
}

.lpic1-mini-guarantee span {
  font-size: 14px;
  color: #047857;
}

/* Divider */

.lpic1-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 22px 0;
}

/* Includes */

.lpic1-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lpic1-includes-list li {
  padding: 1px 0;
  font-size: 15px;
}

/* Payment */

.lpic1-payment ul {
  padding-left: 18px;
}

.lpic1-payment li {
  font-size: 14px;
  margin-bottom: 6px;
}


/* ================= CONTENT ================= */

.lpic1-content {
  padding: 80px 0;
}

.lpic1-content-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;

  align-items: start;
  overflow: visible;
}

.lpic1-list li {
  margin-bottom: 8px;
}


/* ================= ACCORDION ================= */

/* ===== ACCORDION ===== */

.lpic1-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lpic1-accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

/* HEADER */

.lpic1-accordion-header {
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

/* ICON */

.lpic1-accordion-icon {
  transition: transform 0.3s ease;
}

/* BODY */

.lpic1-accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}

/* ACTIVE STATE */

.lpic1-accordion-item.active .lpic1-accordion-body {
 max-height: 2000px; /* valor alto pra nunca cortar */
  padding: 12px 20px;
}

.lpic1-accordion-item.active .lpic1-accordion-icon {
  transform: rotate(180deg);
}


/* ================= INSTRUCTOR ================= */

.lpic1-instructor-container {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.lpic1-instructor-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.lpic1-instructor-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.lpic1-instructor-top {
  display: flex;
  gap: 24px;
  align-items: center;
}

.lpic1-instructor-avatar img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 5px solid #ffe3cf;
  object-fit: cover;
}

.lpic1-instructor-info h3 {
  margin: 0;
  font-size: 22px;
}

.lpic1-instructor-role {
  display: block;
  color: #ff7a00;
  margin: 6px 0;
  font-weight: 600;
}

.lpic1-instructor-info p {
  color: #475569;
  max-width: 650px;
}

.lpic1-instructor-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: center;
  margin: 30px 0;
}

.lpic1-instructor-stats strong {
  font-size: 22px;
}

.lpic1-instructor-stats span {
  display: block;
  font-size: 14px;
  color: #64748b;
}

/* Credentials */

.lpic1-cred-title {
  margin-top: 24px;
}

.lpic1-cred-list {
  list-style: none;
  padding: 0;
}

.lpic1-cred-list li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
}

.lpic1-cred-list li::before {
  content: "🏅";
  position: absolute;
  left: 0;
}


/* ================= REVIEW ================= */

.lpic1-reviews-container {
  width: 100%;
  padding: 10px 0;
  background: #f8fafc;
}

.lpic1-reviews-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  gap: 20px;
}

.lpic1-review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

.lpic1-review-stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 10px;
}

.lpic1-review-text {
  color: #334155;
  line-height: 1.6;
}

.lpic1-review-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 13px;
  font-weight: 600;
}

.lpic1-review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.lpic1-review-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.lpic1-review-user span {
  display: block;
  font-size: 14px;
  color: #64748b;
}

.lpic1-review-user small {
  color: #ff7a00;
  font-weight: 600;
}


/* ===== Divider ===== */

.lpic1-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin: 24px 0;
}

/* ================= FINAL GUARANTEE ================= */

.lpic1-final-guarantee {
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #0b1320, #111827);
  color: #ffffff;
}

.lpic1-final-guarantee-inner {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.lpic1-guarantee-box {
  background: rgba(255,255,255,0.06);
  padding: 50px 40px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.lpic1-guarantee-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lpic1-guarantee-box h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.lpic1-guarantee-box p {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 16px;
}


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

.lpic1-faq {
  padding: 80px 20px;
  max-width: 700px;
  margin: auto;
}

.lpic1-faq details {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
}

.lpic1-faq summary {
  padding: 16px;
  cursor: pointer;
  font-weight: bold;
}

.lpic1-faq p {
  padding: 12px 16px;
  background: #fafafa;
}


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

.lpic1-footer {
  background: #020617;
  color: white;
  padding: 30px;
  text-align: center;
}


/* ================= SPACER (TESTE SCROLL) ================= */

.lpic1-spacer {
  height: 70px;
}

/* ===== LEARN SECTION ===== */

.lpic1-learn-container {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

.lpic1-learn-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}

/* ===== TITLES ===== */

.lpic1-section-main-title {
  font-size: 28px;
  margin-bottom: 24px;
  color: #0f172a;
}

.lpic1-margin-top {
  margin-top: 60px;
}

/* ===== CHECKLIST ===== */

.lpic1-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.lpic1-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lpic1-checklist li {
  padding-left: 34px;
  margin-bottom: 14px;
  position: relative;
  font-size: 15px;
  color: #334155;
}

.lpic1-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== COURSE SUMMARY ===== */

.lpic1-course-summary {
  margin-bottom: 24px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

  .lpic1-inner,
  .lpic1-content-inner {
    grid-template-columns: 1fr;
  }

  .lpic1-aside {
    position: relative;
  }

}

.lesson-time {
  font-size: 11px;        /* pequeno e elegante */
  color: #2b73f0;        /* cinza moderno */
  font-weight: 500;
  margin-left: auto;     /* empurra pra direita */
  opacity: 0.85;
}