/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    color: #1f2937;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    font-size: 2rem;
}

/* ===== CARROSSEL DE DESTAQUES ===== */
.highlight-section {
    margin: 2rem 0 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 2px;
}

.carousel-container {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    width: 300px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-item:hover {
    transform: translateY(-8px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.carousel-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.carousel-item:hover .carousel-image {
    border-color: #10b981;
}

.carousel-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.5rem;
}

.carousel-category {
    color: #059669;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;
}

.carousel-description {
    color: #6b7280;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.carousel-contacts {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-link {
    color: #6b7280;
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: #059669;
}

.highlight-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem auto;
}

/* ===== FILTROS ===== */
.filters-section {
    margin: 3rem 0;
}

.filters-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #e5e7eb;
    color: #4b5563;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

/* ===== GRADE DE EMPREENDEDORES ===== */
.entrepreneurs-section {
    margin: 3rem 0;
}

.entrepreneurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.entrepreneur-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.entrepreneur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.entrepreneur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.entrepreneur-card:hover::before {
    opacity: 1;
}

.entrepreneur-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.entrepreneur-card:hover .entrepreneur-image {
    border-color: #10b981;
}

.entrepreneur-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.5rem;
}

.entrepreneur-category {
    color: #059669;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.8rem;
}

.entrepreneur-description {
    color: #6b7280;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.entrepreneur-contacts {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slideIn {
    animation: slideIn 0.6s ease-out;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .carousel-item {
        width: 280px;
    }
    
    .entrepreneurs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filters-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        width: 250px;
        padding: 1rem;
    }
    
    .entrepreneur-card {
        padding: 1.2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ===== SCROLL SMOOTH ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== NO EMPTY STATES ===== */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}