/**
 * Estilos específicos para a página inicial moderna
 * Instituto Bioma - Layout baseado em design moderno verde
 */

/* Hero Section Moderno */
.hero-modern {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-green) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.85) 0%, rgba(85, 139, 47, 0.75) 100%);
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
}

.hero-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--dark-green);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

/* Highlight Section */
.highlight-section {
    padding: 5rem 0;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 3rem;
}

.highlight-content h2 {
    margin-bottom: 1.5rem;
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.highlight-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* Division Cards */
.division-card {
    text-align: center;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.division-card:hover {
    transform: translateY(-10px);
}

.division-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.division-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.division-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.division-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Project Cards Modern */
.project-card-modern {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card-modern .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card-modern .card-title {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.project-card-modern p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* News Cards Modern */
.news-card-modern {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-modern .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: inline-block;
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card-modern .card-title {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-card-modern p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    color: var(--dark-green);
}

/* CTA Final */
.cta-final {
    padding: 6rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-modern {
        min-height: 500px;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .highlight-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .highlight-image img {
        min-height: 300px;
    }
    
    .division-icon {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .division-card {
        padding: 2rem 1.5rem;
    }
}
