/* Mentorias Page Specific Styles */

/* Hero Adjustments */
.course-hero {
    background: linear-gradient(135deg, rgba(195, 221, 245, 0.78) 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    color: var(--text-primary);
    overflow: hidden;
    margin-bottom: 2rem;
}

.course-hero .hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}

.course-hero .hero-text {
    max-width: 650px;
}

.course-hero .hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-blue-dark);
    font-family: var(--font-heading);
}

.course-hero .hero-text .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-promise {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta-group {
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    align-items: center;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.trust-badges span i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Slider Styles */
.hero-slider {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(5, 10, 48, 0.15);
    border: 4px solid white;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

/* Animations */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Badge Style */
.hero-badge {
    background: rgba(56, 182, 255, 0.15);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Mentorias Grid */
.mentorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Card Styles */
.mentoria-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(5, 10, 48, 0.08);
    border: 1px solid rgba(56, 182, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.mentoria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(5, 10, 48, 0.12);
    border-color: var(--secondary-blue);
}

/* Card Badge */
.card-badge {
    background: var(--primary-blue-dark);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mentoria-school .card-badge {
    background: linear-gradient(135deg, #050A30 0%, #1a2555 100%);
}

.mentoria-pro .card-badge {
    background: linear-gradient(135deg, #1487ff 0%, #38B6FF 100%);
}

/* Card Content */
.card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mentoria-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.card-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    min-height: 3rem; /* Align titles */
}

/* Meta Tags */
.card-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-meta-tags span {
    background: #f5f9ff;
    color: var(--primary-blue-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-meta-tags i {
    color: var(--secondary-blue);
}

/* Benefits List */
.mentoria-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mentoria-benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mentoria-benefits-list .icon-box {
    width: 28px;
    height: 28px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.mentoria-benefits-list .icon-box i {
    color: #25D366; /* WhatsApp Green for success/check */
    font-size: 0.8rem;
}

.mentoria-benefits-list .text-box {
    flex: 1;
}

.mentoria-benefits-list strong {
    display: block;
    color: var(--primary-blue-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.mentoria-benefits-list p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Footer / Button */
.card-footer {
    padding: 0 2.5rem 2.5rem;
    margin-top: auto;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
}

/* How It Works (Simplified) */
.info-grid-simple {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.how-it-works {
    background: var(--bg-gray);
    padding: 60px 0;
}

.process-steps {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-steps li {
    display: flex;
    gap: 1.5rem;
}

.step-count {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(20, 135, 255, 0.3);
}

.process-steps strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue-dark);
    margin-bottom: 0.25rem;
}

/* CTA Box in How It Works */
.info-cta-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(5, 10, 48, 0.08);
    border-top: 5px solid var(--secondary-blue);
}

.info-cta-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.benefits-list-simple {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list-simple li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.benefits-list-simple li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Reusing existing section styles if needed */
.section-padding {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .course-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .course-hero .hero-text {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-slider {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-promise {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-cta-group {
        display: flex;
        justify-content: center;
    }

    .info-grid-simple {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .info-cta-box {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Force grid column to break earlier */
    .mentorias-grid {
        grid-template-columns: 1fr; 
        max-width: 600px; /* Constrain width for better reading */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .course-hero {
        padding: 40px 0 48px;
    }
    
    .course-hero .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-slider {
        max-width: 280px;
    }

    .mentorias-grid {
        gap: 2rem;
        max-width: 100%; /* Allow full width on mobile */
    }

    .card-content {
        padding: 2rem 1.5rem; /* Slightly tighter padding */
    }
    
    .card-footer {
        padding: 0 1.5rem 2rem;
    }
    
    .card-tagline {
        min-height: auto;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .step-count {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .process-steps li {
        gap: 1rem;
    }

    .info-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .mentoria-card h3 {
        font-size: 1.3rem;
    }
}
