/**
 * ============================================
 * EFCOL ACADEMY - LANDING PAGE CURSOS (LOJA)
 * Estilos da página de vendas dos cursos
 * ============================================
 */

/* ===== RESET & BASE ===== */
.lp-wrapper *,
.lp-wrapper *::before,
.lp-wrapper *::after {
    box-sizing: border-box;
}

/* ===== PAGE WRAPPER ===== */
.lp-wrapper {
    background: #fdf8f3;
    color: #1e293b;
    font-family: 'Inter', 'Open Sans', system-ui, sans-serif;
    line-height: 1.6;
    padding-bottom: 100px;
}

/* ===== HERO SECTION ===== */
.lp-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a0806 0%, #2c100a 45%, #1c0d04 100%);
    display: flex;
    align-items: center;
}

.lp-hero-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: blur(2px);
    transform: scale(1.05);
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(152, 27, 36, 0.92) 0%,
        rgba(178, 31, 42, 0.78) 28%,
        rgba(120, 74, 6,  0.74) 58%,
        rgba(68,  44, 2,  0.90) 100%
    );
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    padding: 64px 64px 64px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.lp-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 190, 100, 0.62);
    font-size: 13px;
}

.lp-hero-breadcrumb a {
    color: rgba(255, 190, 100, 0.62);
    text-decoration: none;
    transition: color 0.2s;
}

.lp-hero-breadcrumb a:hover {
    color: #ffe8b8;
}

.lp-hero-breadcrumb i {
    font-size: 12px;
    color: rgba(255, 170, 60, 0.45);
}

.lp-hero-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-badge-nivel {
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fcd34d;
}

.lp-badge-destaque {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fde68a;
}

.lp-badge-certificado {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #86efac;
}

.lp-hero-title {
    color: #fffbf0;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(100, 20, 0, 0.35);
}

.lp-hero-description {
    color: rgba(255, 220, 165, 0.80);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
}

.lp-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.lp-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 225, 170, 0.85);
    font-size: 14px;
}

.lp-hero-stat i {
    font-size: 18px;
    color: #fbbf24;
}

.lp-hero-stat strong {
    color: #fff8ee;
    font-weight: 700;
}

.lp-hero-instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 190, 80, 0.20);
    margin-top: 4px;
}

.lp-hero-instructor-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #fff;
}

.lp-hero-instructor-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-hero-instructor-label {
    color: rgba(255, 170, 60, 0.60);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.lp-hero-instructor-name {
    color: #ffe8b8;
    font-size: 14px;
    font-weight: 600;
}

/* ===== PRICE CARD (hero) ===== */
.lp-price-card-wrapper {
    position: relative;
    z-index: 3;
    padding: 32px 48px 32px 0;
    display: flex;
    align-items: flex-start;
}

.lp-price-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    padding: 32px;
    width: 340px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.lp-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b21f2a, #dc2626, #b21f2a);
}

.lp-price-cover {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-price-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-price-cover-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 13px;
}

.lp-price-cover-placeholder i {
    font-size: 36px;
}

.lp-price-promo-banner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.lp-price-promo-banner.active {
    display: flex;
}

.lp-price-promo-banner i {
    font-size: 14px;
}

.lp-price-main {
    text-align: center;
    margin-bottom: 20px;
}

.lp-price-original {
    text-decoration: line-through;
    color: #a8a29e;
    font-size: 16px;
    margin-bottom: 4px;
}

.lp-price-value {
    font-size: 42px;
    font-weight: 800;
    color: #1c1917;
    line-height: 1;
    letter-spacing: -0.02em;
}

.lp-price-value.promo {
    color: #b21f2a;
}

.lp-price-label {
    color: #78716c;
    font-size: 12px;
    margin-top: 4px;
}

.lp-price-installment {
    color: #57534e;
    font-size: 13px;
    margin-top: 6px;
}

.lp-price-cta {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #b21f2a, #dc2626);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.lp-price-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(178, 31, 42, 0.4);
    color: #fff;
    text-decoration: none;
}

.lp-price-cta i {
    font-size: 18px;
}

.lp-price-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #78716c;
    font-size: 12px;
    margin-bottom: 20px;
}

.lp-price-guarantee i {
    color: #16a34a;
    font-size: 14px;
}

.lp-price-divider {
    height: 1px;
    background: #f0e0c0;
    margin: 16px 0;
}

.lp-price-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.lp-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: #fdf8f0;
    border: 1px solid #e8d8b8;
    color: #57534e;
    font-size: 12px;
    font-weight: 600;
}

.lp-payment-badge i {
    font-size: 14px;
    color: #d97706;
}

.lp-price-includes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-price-includes-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #57534e;
}

.lp-price-includes-item i {
    font-size: 15px;
    color: #16a34a;
    flex-shrink: 0;
}

/* ===== MAIN CONTENT AREA ===== */
.lp-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.lp-content-col {
    min-width: 0;
}

.lp-sidebar-col {
    position: sticky;
    top: 100px;
}

/* ===== SECTION TITLES ===== */
.lp-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(120, 60, 0, 0.05), 0 4px 16px rgba(120, 60, 0, 0.04);
    border: 1px solid #f5e8d8;
}

.lp-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5e8d0;
}

.lp-section-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.lp-section-icon-red    { background: linear-gradient(135deg, #b21f2a, #dc2626); color: #fff; }
.lp-section-icon-blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; }
.lp-section-icon-green  { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }
.lp-section-icon-amber  { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.lp-section-icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: #fff; }

.lp-section-title-wrap { flex: 1; }

.lp-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.lp-section-subtitle {
    font-size: 13px;
    color: #78716c;
    margin: 0;
}

/* ===== MODULE ACCORDION ===== */
.lp-modules-summary {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: #fdf8f0;
    border-radius: 10px;
    border: 1px solid #edd9a8;
}

.lp-modules-summary-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.lp-modules-summary-stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #1c1917;
    line-height: 1;
}

.lp-modules-summary-stat span {
    font-size: 11px;
    color: #78716c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.lp-modules-summary-divider {
    width: 1px;
    height: 36px;
    background: #e8c88a;
}

.lp-modules-expand {
    background: none;
    border: 1px solid #e0d0b0;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #78716c;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    margin: 20px auto;
}

.lp-modules-expand:hover {
    background: #fdf8f0;
    border-color: #d97706;
    color: #d97706;
}

.lp-module-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-module-item {
    border: 1px solid #eddcba;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.lp-module-item:hover {
    box-shadow: 0 4px 16px rgba(120, 60, 0, 0.10);
}

.lp-module-header {
    padding: 16px 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.15s;
    user-select: none;
}

.lp-module-header:hover { background: #fdf6e8; }

.lp-module-num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #b21f2a, #dc2626);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.lp-module-info { flex: 1; min-width: 0; }

.lp-module-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-module-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #78716c;
}

.lp-module-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-module-toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fdf3e0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.lp-module-toggle i {
    font-size: 18px;
    color: #78716c;
    transition: transform 0.3s;
}

.lp-module-item.open .lp-module-toggle i {
    transform: rotate(180deg);
}

.lp-module-lessons {
    display: none;
    border-top: 1px solid #f0dcb4;
    background: #fdf9f2;
}

.lp-module-item.open .lp-module-lessons {
    display: block;
}

.lp-lesson-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid #f0dcb4;
    font-size: 13px;
    color: #57534e;
}

.lp-lesson-item:last-child { border-bottom: none; }
.lp-lesson-item:hover { background: #fdf0d8; }

.lp-lesson-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    background: #e2e8f0;
    color: #64748b;
}

.lp-lesson-icon.video  { background: rgba(59,130,246,0.1); color: #3b82f6; }
.lp-lesson-icon.texto  { background: rgba(245,158,11,0.1); color: #d97706; }
.lp-lesson-icon.quiz   { background: rgba(139,92,246,0.1); color: #7c3aed; }

.lp-lesson-title  { flex: 1; font-weight: 500; color: #44403c; }
.lp-lesson-duration { color: #a8a29e; font-size: 12px; white-space: nowrap; }

/* ===== MATERIALS SUMMARY ===== */
.lp-materials-summary-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #fdf8f0 0%, #fef3c7 100%);
    border: 1px solid #edd9a8;
    border-radius: 14px;
}

.lp-materials-summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.lp-materials-summary-info {
    flex: 1;
}

.lp-materials-summary-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 4px;
}

.lp-materials-summary-info p {
    font-size: 13px;
    color: #78716c;
    margin: 0;
    line-height: 1.5;
}

.lp-materials-summary-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(139, 92, 246, 0.10);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #7c3aed;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-materials-summary-badge i {
    font-size: 14px;
}

/* ===== INSTRUCTOR ===== */
.lp-instructor-profile {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.lp-instructor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.30);
}

.lp-instructor-details { flex: 1; }

.lp-instructor-name  { font-size: 22px; font-weight: 700; color: #1c1917; margin: 0 0 6px; }
.lp-instructor-role  { font-size: 13px; color: #d97706; font-weight: 600; margin: 0 0 12px; }
.lp-instructor-bio   { font-size: 14px; color: #57534e; line-height: 1.7; margin: 0; }

/* ===== COURSE DETAILS ===== */
.lp-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.lp-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fdf8f0;
    border: 1px solid #f0e0c0;
}

.lp-detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #a8a29e;
}

.lp-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #1c1917;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-detail-value i { font-size: 16px; color: #d97706; }

/* ===== CERTIFICATE ===== */
.lp-certificate-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: 14px;
}

.lp-certificate-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(245,158,11,0.3);
}

.lp-certificate-content { flex: 1; }
.lp-certificate-title { font-size: 18px; font-weight: 700; color: #92400e; margin: 0 0 6px; }
.lp-certificate-text  { font-size: 14px; color: #78350f; margin: 0; line-height: 1.5; }

/* ===== SIDEBAR PRICE CARD ===== */
.lp-sidebar-price-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(120, 60, 0, 0.10);
    padding: 28px;
    border: 1px solid #f5e8d8;
    overflow: hidden;
    position: relative;
}

.lp-sidebar-price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b21f2a, #dc2626);
}

/* ===== PROMO DATES ===== */
.lp-promo-dates {
    font-size: 11px;
    color: #78716c;
    text-align: center;
    margin-top: 4px;
    display: none;
}
.lp-promo-dates.active { display: block; }

/* ===== STICKY CTA (mobile) ===== */
.lp-sticky-cta {
    display: none;
    position: fixed;
    bottom: 62px; left: 0; right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}

.lp-sticky-container {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1280px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin: 0 auto;
    gap: 16px;
}

.lp-sticky-cta-price { display: flex; flex-direction: column; }

.lp-sticky-cta-value {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.lp-sticky-cta-label { font-size: 11px; color: #78716c; }

.lp-sticky-cta-btn {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #b21f2a, #dc2626);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.lp-sticky-cta-btn:hover {
    background: linear-gradient(135deg, #991b1b, #b91c1c);
    color: #fff;
    text-decoration: none;
    transform: scale(1.02);
}

/* ===== VIDEO EMBED ===== */
.lp-video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.lp-video-embed-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== PROMO COUNTDOWN ===== */
.lp-promo-countdown {
    margin-top: 12px;
    padding: 12px 14px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 10px;
}

.lp-promo-countdown-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.lp-promo-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4px;
}

.lp-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
    background: rgba(239,68,68,0.12);
    border-radius: 6px;
    padding: 6px 4px 4px;
}

.lp-countdown-value {
    font-size: 22px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
}

.lp-countdown-label {
    font-size: 9px;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.lp-countdown-sep {
    font-size: 18px;
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
    margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .lp-price-card-wrapper { display: none; }

    .lp-hero-content { padding: 40px 24px; }

    .lp-main { grid-template-columns: 1fr; }

    .lp-sidebar-col { position: static; }
}

@media (max-width: 768px) {
    .lp-hero-container { grid-template-columns: 1fr; }

    .lp-sticky-cta { display: flex; }

    .lp-hero-title,
    .lp-hero-description { text-align: center; }

    .lp-hero-content { padding: 32px 20px; }

    .lp-main { padding: 20px 16px 80px; }

    .lp-section { padding: 20px; }

    .lp-details-grid { grid-template-columns: 1fr; }

    .lp-instructor-profile {
        flex-direction: column;
        gap: 16px;
    }

    .lp-materials-summary-box {
        flex-wrap: wrap;
    }

    .lp-materials-summary-badge {
        width: 100%;
        justify-content: center;
    }

    /* ===== COURSE CARDS (vitrine home) ===== */
    .cursos-vitrine-grid { grid-template-columns: 1fr; }
}

/* ===== CURSOS VITRINE (home section) ===== */
.cursos-vitrine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.curso-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.curso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.curso-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1e293b, #334155);
    overflow: hidden;
}

.curso-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.curso-card:hover .curso-card-image img {
    transform: scale(1.04);
}

.curso-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 40px;
}

.curso-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #b21f2a, #dc2626);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.curso-card-badge.destaque {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.curso-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.curso-card-nivel {
    font-size: 11px;
    font-weight: 700;
    color: #b21f2a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.curso-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.curso-card-title a {
    color: inherit;
    text-decoration: none;
}

.curso-card-title a:hover {
    color: #b21f2a;
}

.curso-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: #64748b;
}

.curso-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.curso-card-meta i {
    font-size: 13px;
    color: #94a3b8;
}

.curso-card-price {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.curso-card-price-value {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
}

.curso-card-price-value.promo { color: #b21f2a; }
.curso-card-price-value.gratis { color: #16a34a; font-size: 18px; }

.curso-card-price-old {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.curso-card-price-installment {
    font-size: 12px;
    color: #64748b;
}

.curso-card-footer {
    padding: 0 20px 20px;
}

.curso-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #b21f2a, #dc2626);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.curso-card-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(178,31,42,0.35);
    color: #fff;
    text-decoration: none;
}
