/* home.css - Estilos para a seção Home */

/* Container principal da Home */
.home-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Título e descrição da Home */
.home-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.home-description {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container dos widgets */
.home-embeds {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2rem;
}

/* Card do YouTube */
.youtube-card-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

/* Card do Bluesky */
.bluesky-card-container {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

/* Container de widgets lado a lado */
.widgets-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

/* Botões de ação na Home */
.home-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.home-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.home-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.4);
}

.home-action-btn.secondary {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.home-action-btn.secondary:hover {
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

/* Estatísticas da Home */
.home-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid #333;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: #ff4444;
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #aaa;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 900px) {
    .home-embeds {
        flex-direction: column;
        align-items: center;
    }
    
    .youtube-card-container,
    .bluesky-card-container {
        width: 100%;
        max-width: 500px;
    }
    
    .widgets-row {
        flex-direction: column;
        align-items: center;
    }
    
    .home-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-title {
        font-size: 2.2rem;
    }
    
    .home-description {
        font-size: 1.1rem;
    }
    
    .home-stats {
        grid-template-columns: 1fr;
    }
    
    .home-action-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}