/*--------------------------------------------------------------
# Course Packs Section
--------------------------------------------------------------*/

/* Main Container */
.course-packs-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.course-packs-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Course Header */
.course-header {
    text-align: center;
    margin-bottom: 50px;
}

.course-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-family: var(--thm-font-2);
}

.course-header .course-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Packs Grid */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Single Pack Card */
.pack-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Pack Image Container */
.pack-image {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a2e 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-image img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

/* Badge Exclusivo Web */
.pack-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Nota: El badge "exclusivo web" se mantiene naranja para destacar */

.pack-badge span {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

/* Pack Content */
.pack-content {
    padding: 25px 20px;
    text-align: center;
}

.pack-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pack Price */
.pack-price {
    font-size: 28px;
    font-weight: 700;
    color: #04bf61;
    margin-bottom: 20px;
}

.pack-price .currency {
    font-size: 18px;
}

.pack-price .old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

/* Pack Button */
.pack-btn {
    display: inline-block;
    background: linear-gradient(135deg, #04bf61 0%, #02a050 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: none;
}

.pack-btn:hover {
    background: linear-gradient(135deg, #03a855 0%, #028a45 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 191, 97, 0.35);
}

/* Category Tabs */
.course-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 25px;
    background: #f0f0f0;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: linear-gradient(135deg, #04bf61 0%, #02a050 100%);
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .packs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .course-packs-container {
        padding: 40px 30px;
    }
    
    .course-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .packs-grid {
        grid-template-columns: 1fr;
    }
    
    .course-packs-container {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .course-header h1 {
        font-size: 26px;
    }
    
    .course-header .course-description {
        font-size: 16px;
    }
}

/* Additional Info Section */
.course-info-section {
    padding: 60px 0;
    background: #fff;
}

.course-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #04bf61 0%, #02a050 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card .icon i {
    font-size: 28px;
    color: #fff;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .course-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .course-info-cards {
        grid-template-columns: 1fr;
    }
}

/* Requirements Section */
.course-requirements {
    padding: 60px 0;
    background: #f5f5f5;
}

.requirements-box {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.requirements-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li i {
    color: #04bf61;
    font-size: 18px;
    margin-right: 15px;
}

.requirements-list li span {
    font-size: 16px;
    color: #555;
}

/* CTA Section */
.course-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 60px 0;
    text-align: center;
}

.course-cta h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.course-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

.course-cta .btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #04bf61 0%, #02a050 100%);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(4, 191, 97, 0.4);
    color: #fff;
}

.course-cta .phone-number {
    display: block;
    color: #04bf61;
    font-size: 28px;
    font-weight: 700;
    margin-top: 25px;
}

.course-cta .phone-number i {
    margin-right: 10px;
}

