* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.main-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

.section {
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-link {
    display: flex;
    align-items: center;
    background: #FD782E;
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: #ff8c42;
}

.app-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.app-link:hover::before {
    left: 100%;
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
}

.whatsapp-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
}

.whatsapp-link:hover {
    border-color: #34E877;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.aura-link {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-color: #FF6B35;
}

.aura-link:hover {
    border-color: #FF8C42;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .main-logo {
        width: 120px;
        height: 120px;
    }
    
    .app-link {
        padding: 12px 15px;
    }
    
    .app-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .app-text {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 5px;
    }
    
    .main-logo {
        width: 100px;
        height: 100px;
    }
    
    .app-link {
        padding: 10px 12px;
        margin-bottom: 12px;
    }
    
    .app-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .app-text {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-link {
    animation: fadeInUp 0.6s ease forwards;
}

.app-link:nth-child(1) { animation-delay: 0.1s; }
.app-link:nth-child(2) { animation-delay: 0.2s; }
.app-link:nth-child(3) { animation-delay: 0.3s; }
.app-link:nth-child(4) { animation-delay: 0.4s; }
.app-link:nth-child(5) { animation-delay: 0.5s; }

/* Efeito de brilho no logo */
.main-logo {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    }
}

