/* Hero Section Styles */
.hero-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F3C736 0%, #e5b82e 100%);
    opacity: 0.05;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
}

.hero-section .row {
    position: relative;
}

.hero-title {
    color: #2c3e50;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
}

.hero-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
}

.hero-text.lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Botões de Categoria */
.btn-category {
    display: block;
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, #F3C736 0%, #e5b82e 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(243, 199, 54, 0.2);
    max-width: 450px;
    width: 100%;
    text-align: left;
    text-decoration: none;
}

.btn-category:hover {
    background: linear-gradient(135deg, #e5b82e 0%, #F3C736 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(243, 199, 54, 0.3);
    color: white;
    text-decoration: none;
}

.btn-category i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

/* Cards de Cursos */
.course-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.course-card:hover .card-img-container img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(243, 199, 54, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
}

.card-title {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.no-style-link {
    text-decoration: none;
    color: inherit;
}

.card-meta {
    color: #F3C736;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-warning {
    background-color: #F3C736;
    border-color: #F3C736;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-warning:hover {
    background-color: #e5b82e;
    border-color: #e5b82e;
    transform: translateY(-2px);
}

/* Títulos de Categoria */
.category-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #F3C736;
    border-radius: 2px;
}

/* Testimonials */
.testimonials {
    padding-bottom: 4rem;
}
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #F3C736;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-category {
        padding: 0.6rem 1.2rem;
    }
    
    .course-card {
        margin-bottom: 1.5rem;
    }
} 