/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Section Spacing */
.section-padding {
    padding: 48px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title-separator {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 120px 0;
    background-color: var(--secondary-color);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color) !important;
    font-size: 3rem;
}

.feature-icon.fa-microscope {
    color: var(--primary-color) !important;
}

.feature-icon-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.highlight-title {
    font-size: 1.25rem !important;
    font-weight: 700;
    margin-bottom: 1rem;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .highlight-title {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 991px) {
    .highlight-title {
        white-space: normal;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 120px 0;
    background: white;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 120px 0;
    background-color: var(--secondary-color);
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-count {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 40px 0 50px;
    }

    .section-padding {
        padding: 36px 0;
    }

    .hero-title-separator {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image {
        margin-top: 2rem;
        max-width: 90%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0 40px;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-title-separator {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        margin-top: 1.5rem;
        max-width: 85%;
    }

    .section-padding {
        padding: 28px 0;
    }

    .feature-card,
    .category-card {
        margin-bottom: 1.5rem;
    }
}

/* Hero Image */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Hero Fallback */
.hero-fallback {
    padding: 2rem;
    text-align: center;
}

.hero-fallback .hero-icon {
    font-size: 8rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-fallback p {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Hero Icon (fallback) */
.hero-icon {
    font-size: 15rem;
    opacity: 0.3;
    color: rgba(255, 255, 255, 0.8);
}


/* Info Icons */
.info-icon {
    font-size: 1.5rem;
}

/* Countdown Styles */
.countdown-container {
    padding: 1rem 0;
}

.countdown-item {
    padding: 1rem;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
}

.team-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Hero Logos Styling */
.logo-hero-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 450px;
    margin: 0 auto;
}

.logo-hero-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

.logo-hero-item {
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-hero-item:hover {
    transform: scale(1.05);
}

.logo-separator {
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

@media (max-width: 991px) {
    .logo-hero-container {
        margin-top: 3rem;
        max-width: 350px;
    }

    .logo-hero-item {
        max-height: 180px;
    }
}