/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.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 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

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

.hero-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-badges .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

/* Aplicações Cards */
.aplicacao-card {
    transition: var(--transition);
}

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

.aplicacao-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

/* Status badges */
.aplicacao-status.completed {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.aplicacao-status.development {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.aplicacao-categoria {
    font-size: 0.8rem;
    font-weight: 600;
}

.aplicacao-titulo {
    font-size: 1.1rem;
    font-weight: 600;
}

.aplicacao-descricao {
    color: var(--secondary-color);
    line-height: 1.4;
}

/* Tech Tags */
.tech-tag {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Admin Controls */
.admin-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.admin-controls .btn {
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0.8rem;
}

/* Sobre Section */
.sobre-lista {
    margin-top: 2rem;
}

.sobre-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

/* Hub Illustration */
.hub-visual-simples {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hub-central-simples {
    background: var(--primary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 2rem;
}

.hub-apps-simples {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hub-app-simples {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
    border: 2px solid #e9ecef;
    transition: var(--transition);
}

.hub-app-simples:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Status Section */
.status-info {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.completed {
    background: #10b981;
}

.status-indicator.development {
    background: #f59e0b;
}

/* Empty State */
.empty-state {
    padding: 3rem 1rem;
    text-align: center;
}

.empty-state i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Contact Section */
.contato-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contato-buttons .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

/* Modal Styles */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Animações */
.aplicacao-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-card {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .contato-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .admin-controls {
        justify-content: center;
    }
}

.aplicacao-status.cm {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.aplicacao-status.ds {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}